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
a726eee9
Commit
a726eee9
authored
May 06, 2016
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We were missing this define
parent
b2372b58
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
from_cpython/Include/Python.h
from_cpython/Include/Python.h
+8
-0
from_cpython/Lib/test/test_minidom.py
from_cpython/Lib/test/test_minidom.py
+0
-2
from_cpython/Lib/test/test_sax.py
from_cpython/Lib/test/test_sax.py
+0
-2
test/cpython/test_pyexpat.py
test/cpython/test_pyexpat.py
+0
-2
No files found.
from_cpython/Include/Python.h
View file @
a726eee9
...
...
@@ -32,6 +32,14 @@
#include "patchlevel.h"
#include "pyconfig.h"
/* Cyclic gc is always enabled, starting with release 2.3a1. Supply the
* old symbol for the benefit of extension modules written before then
* that may be conditionalizing on it. The core doesn't use it anymore.
*/
#ifndef WITH_CYCLE_GC
#define WITH_CYCLE_GC 1
#endif
#include <limits.h>
#include <stdio.h>
...
...
from_cpython/Lib/test/test_minidom.py
View file @
a726eee9
# expected: reffail
# - "pyexpat.xmlparser needs a tp_traverse"
# test for xml.dom.minidom
import
pickle
...
...
from_cpython/Lib/test/test_sax.py
View file @
a726eee9
# expected: reffail
# - "pyexpat.xmlparser needs a tp_traverse"
# regression test for SAX 2.0 -*- coding: utf-8 -*-
# $Id$
...
...
test/cpython/test_pyexpat.py
View file @
a726eee9
# expected: reffail
# - "pyexpat.xmlparser needs a tp_traverse"
# XXX TypeErrors on calling handlers, or on bad return values from a
# handler, are obscure and unhelpful.
...
...
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