summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-136-0/+55
* casting nastiness to make C++ compiler happyAnthony Baxter2006-04-131-2/+10
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-122-4/+3
* avoid C++ name mangling for the _Py.*SizeT functionsAnthony Baxter2006-04-121-0/+6
* Make symtable.c safe for C++ compilers. Changed macros in the same way asAnthony Baxter2006-04-121-11/+13
* per Jeremy's email, remove the _WITH_CAST versions of macros. g++Anthony Baxter2006-04-121-46/+24
* Part two of the fix for SF bug #1466641: Regenerate graminit.c and add testThomas Wouters2006-04-121-2/+2
* Some more changes to make code compile under a C++ compiler.Anthony Baxter2006-04-111-1/+1
* more low-hanging fruit to make code compile under a C++ compiler. NotAnthony Baxter2006-04-114-68/+100
* Convert 0 to their respective enum types. ConvertMartin v. Löwis2006-04-111-11/+11
* Regenerate.Martin v. Löwis2006-04-111-2/+0
* Make _kind types global for C++ compilation.Martin v. Löwis2006-04-111-1/+1
* low-hanging fruit in Python/ - g++ still hates all the enum_kind declarationsAnthony Baxter2006-04-114-22/+24
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-0/+3
* Use PyObject_* allocator since FutureFeatures is smallNeal Norwitz2006-04-102-3/+3
* Fix some warnings on HP-UX when using cc/aCCNeal Norwitz2006-04-101-4/+7
* Regenerate.Martin v. Löwis2006-04-071-1/+1
* Fix refleak in __import__("") (probably the cause of the 2 refleaks inThomas Wouters2006-04-051-0/+2
* Fix __import__("") to raise ValueError rather than return None.Thomas Wouters2006-04-041-1/+10
* Generate line number table entries for except handlers.Jeremy Hylton2006-04-041-0/+2
* Disable .DLL as an extension for extension modules.Martin v. Löwis2006-04-041-0/+6
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-042-31/+66
* Bug #1421664: Set sys.stderr.encodingMartin v. Löwis2006-04-032-0/+15
* Don't abbreviate ABS, use long name ABSOLUTE.Neal Norwitz2006-04-032-4/+4
* * Fix a refleak of *_attributes.Neal Norwitz2006-04-031-144/+146
* Accept keyword arguments for __import__ and doc the addition of the level par...Neal Norwitz2006-04-031-6/+11
* Expand comments on line numbers and blocks.Jeremy Hylton2006-04-011-6/+21
* Patch #1460496: round() now accepts keyword arguments.Georg Brandl2006-03-311-13/+15
* Expand comments.Jeremy Hylton2006-03-311-0/+27
* In format strings slinging Py_ssize_t, unconditionallyTim Peters2006-03-281-9/+6
* answer a question from a commentArmin Rigo2006-03-281-3/+3
* Fix SF bug #1458903 with AST compiler.Neal Norwitz2006-03-271-4/+11
* Years in the making.Tim Peters2006-03-261-1/+1
* Found this in an old email message from Hartmut Goebel.Skip Montanaro2006-03-251-0/+1
* Patch #1396919: Reenable the system scope threads on FreeBSD 5.4Hye-Shik Chang2006-03-231-1/+11
* Fix a ssize_t issueNeal Norwitz2006-03-231-1/+1
* Forward port MvL's fix in 43227:Neal Norwitz2006-03-231-0/+4
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-202-3/+3
* Release codecs variable earlier.Walter Dörwald2006-03-181-4/+2
* Fix some missing checks after PyTuple_New, PyList_New, PyDict_NewGeorg Brandl2006-03-171-1/+3
* Fix bug 1441408 where a double colon didn't trigger extended slice semantics ...Nick Coghlan2006-03-171-8/+12
* Fix wrong argument format in PyCodec_IncrementalEncoder() andWalter Dörwald2006-03-161-96/+57
* Make mktuple consistent with mklist to get rid of Coverity warnings. Also us...Neal Norwitz2006-03-161-10/+10
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-0/+50
* Fix SF bug #1448804 and ad a test to ensure that all subscript operations con...Nick Coghlan2006-03-131-24/+29
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-103-25/+27
* Try to be a bit more consistent on all platforms:Neal Norwitz2006-03-091-1/+4
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-46/+22
* Address an coverity issue. Coverity was complaining about a line that's fine,Guido van Rossum2006-03-071-1/+2
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-073-2/+11