diff options
| author | Christian Heimes <christian@cheimes.de> | 2007-12-02 22:43:00 +0000 |
|---|---|---|
| committer | Christian Heimes <christian@cheimes.de> | 2007-12-02 22:43:00 +0000 |
| commit | 2b1c592d22c16f3cb810625168ed1ce0c806d004 (patch) | |
| tree | bdaf8c2cfec5e413241b06f3d25eb8e1403f2409 /Parser/asdl_c.py | |
| parent | a09ca3850f0c9169bb391bc6b1ee958c7cab89c2 (diff) | |
| download | cpython-git-2b1c592d22c16f3cb810625168ed1ce0c806d004.tar.gz | |
Fixed a problem found by Bill Janssen on Mac OS X
There was one occurence of PyInt_FromLong left in Parser/asdl_c.py. The files creates some C code.
Diffstat (limited to 'Parser/asdl_c.py')
| -rwxr-xr-x | Parser/asdl_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index 24b732c23b..15a752fcdb 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -469,7 +469,7 @@ static PyObject* ast2obj_object(void *o) static PyObject* ast2obj_int(long b) { - return PyInt_FromLong(b); + return PyLong_FromLong(b); } """, 0, reflow=False) |
