Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
b2372b58
Commit
b2372b58
authored
May 06, 2016
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a pyexpat issue
We were double-registering its exception type as a static constant.
parent
a0f0cb72
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
17 deletions
+6
-17
from_cpython/Lib/test/test_docxmlrpc.py
from_cpython/Lib/test/test_docxmlrpc.py
+0
-2
from_cpython/Lib/test/test_multiprocessing.py
from_cpython/Lib/test/test_multiprocessing.py
+2
-1
from_cpython/Lib/test/test_plistlib.py
from_cpython/Lib/test/test_plistlib.py
+0
-2
from_cpython/Lib/test/test_unpack.py
from_cpython/Lib/test/test_unpack.py
+0
-2
from_cpython/Modules/pyexpat.c
from_cpython/Modules/pyexpat.c
+4
-10
No files found.
from_cpython/Lib/test/test_docxmlrpc.py
View file @
b2372b58
# expected: reffail
# - negative ref
from
DocXMLRPCServer
import
DocXMLRPCServer
import
httplib
import
sys
...
...
from_cpython/Lib/test/test_multiprocessing.py
View file @
b2372b58
# expected: fail
# skip-if: True
# - This test hangs and the tester fails to clean it up.
#
# Unit tests for the multiprocessing package
#
...
...
from_cpython/Lib/test/test_plistlib.py
View file @
b2372b58
# expected: reffail
# - negative ref
# Copyright (C) 2003 Python Software Foundation
import
unittest
...
...
from_cpython/Lib/test/test_unpack.py
View file @
b2372b58
# expected: reffail
# - unknown segfault
doctests
=
"""
Unpack tuple
...
...
from_cpython/Modules/pyexpat.c
View file @
b2372b58
...
...
@@ -1143,9 +1143,7 @@ xmlparse_ExternalEntityParserCreate(xmlparseobject *self, PyObject *args)
for
(
i
=
0
;
handler_info
[
i
].
name
!=
NULL
;
i
++
)
/* do nothing */
;
// Pyston change: use GC alloc routine because those contain Python objects
// new_parser->handlers = malloc(sizeof(PyObject *) * i);
new_parser
->
handlers
=
PyMem_Malloc
(
sizeof
(
PyObject
*
)
*
i
);
new_parser
->
handlers
=
malloc
(
sizeof
(
PyObject
*
)
*
i
);
if
(
!
new_parser
->
handlers
)
{
Py_DECREF
(
new_parser
);
return
PyErr_NoMemory
();
...
...
@@ -1364,9 +1362,7 @@ newxmlparseobject(char *encoding, char *namespace_separator, PyObject *intern)
for
(
i
=
0
;
handler_info
[
i
].
name
!=
NULL
;
i
++
)
/* do nothing */
;
// Pyston change: use GC alloc routine because those contain Python objects
// self->handlers = malloc(sizeof(PyObject *) * i);
self
->
handlers
=
PyMem_Malloc
(
sizeof
(
PyObject
*
)
*
i
);
self
->
handlers
=
malloc
(
sizeof
(
PyObject
*
)
*
i
);
if
(
!
self
->
handlers
)
{
Py_DECREF
(
self
);
return
PyErr_NoMemory
();
...
...
@@ -1397,8 +1393,7 @@ xmlparse_dealloc(xmlparseobject *self)
self
->
handlers
[
i
]
=
NULL
;
Py_XDECREF
(
temp
);
}
// Pyston change: object are allocated using the GC not malloc
// free(self->handlers);
free
(
self
->
handlers
);
self
->
handlers
=
NULL
;
}
if
(
self
->
buffer
!=
NULL
)
{
...
...
@@ -1891,8 +1886,7 @@ MODULE_INITFUNC(void)
/* Add some symbolic constants to the module */
if
(
ErrorObject
==
NULL
)
{
ErrorObject
=
PyGC_RegisterStaticConstant
(
PyErr_NewException
(
"xml.parsers.expat.ExpatError"
,
NULL
,
NULL
));
ErrorObject
=
PyErr_NewException
(
"xml.parsers.expat.ExpatError"
,
NULL
,
NULL
);
if
(
ErrorObject
==
NULL
)
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment