File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ PHP NEWS
2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 8.4.0RC1
4
4
5
+ - Debugging:
6
+ . Fixed bug GH-15923 (GDB: Python Exception <class 'TypeError'>:
7
+ exceptions must derive from BaseException). (nielsdos)
8
+
5
9
- DOM:
6
10
. Fix XML serializer errata: xmlns="" serialization should be allowed.
7
11
(nielsdos)
Original file line number Diff line number Diff line change 971
971
".ascii \"\\n\"\n"
972
972
".ascii \" (symbol,_) = gdb.lookup_symbol(\\\"zend_gc_refcount\\\")\\n\"\n"
973
973
".ascii \" if symbol == None:\\n\"\n"
974
- ".ascii \" raise \\\"Could not find zend_types.h: symbol zend_gc_refcount not found\\\"\\n\"\n"
974
+ ".ascii \" raise Exception( \\\"Could not find zend_types.h: symbol zend_gc_refcount not found\\\") \\n\"\n"
975
975
".ascii \" filename = symbol.symtab.fullname()\\n\"\n"
976
976
".ascii \"\\n\"\n"
977
977
".ascii \" bits = {}\\n\"\n"
Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ def load_type_bits():
301
301
302
302
(symbol ,_ ) = gdb .lookup_symbol ("zend_gc_refcount" )
303
303
if symbol == None :
304
- raise "Could not find zend_types.h: symbol zend_gc_refcount not found"
304
+ raise Exception ( "Could not find zend_types.h: symbol zend_gc_refcount not found" )
305
305
filename = symbol .symtab .fullname ()
306
306
307
307
bits = {}
You can’t perform that action at this time.
0 commit comments