summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Patch #1468808: don't complain if Tkinter is already deleted at the time Font...Georg Brandl2006-04-121-1/+3
* Add PEP 243 sectionAndrew M. Kuchling2006-04-121-1/+26
* Update test_sundry. Many modules have now tests, butGeorg Brandl2006-04-121-36/+12
* Note C API incompatibilitiesAndrew M. Kuchling2006-04-121-0/+32
* Mention access to ASTsAndrew M. Kuchling2006-04-121-1/+14
* Bug #1469163: SimpleXMLRPCServer unconditionally attempted to import fcntl.Anthony Baxter2006-04-122-2/+9
* Off-by-one buffer overflow error.Armin Rigo2006-04-121-1/+1
* Patch #1463288: use a context manager to temporarily switch locales.Walter Dörwald2006-04-122-30/+164
* wrap docstrings so they are less than 80 columns. add spaces after commas.Neal Norwitz2006-04-121-3/+5
* gen_throw(): The caller doesn't own PyArg_ParseTuple()Tim Peters2006-04-121-3/+1
* Update comments and the skip list, maybe some of these tests don'tNeal Norwitz2006-04-121-3/+10
* Add another little test to make sure we roundtrip multiple list comp ifs ok.Neal Norwitz2006-04-121-0/+4
* Update for new grammarNeal Norwitz2006-04-121-4/+4
* put in a reference to PEP 306 in a comment at the topAnthony Baxter2006-04-121-0/+3
* Get rid of some warnings on MacNeal Norwitz2006-04-122-6/+3
* avoid C++ name mangling for the _Py.*SizeT functionsAnthony Baxter2006-04-121-0/+6
* remove forward declarations. No constructors to move for these files. MakesAnthony Baxter2006-04-122-6/+1
* Move constructors, add some casts to make C++ compiler happy. Still a problemAnthony Baxter2006-04-121-202/+201
* remove forward declarations, move constructor functions. makes code C++ safe.Anthony Baxter2006-04-121-43/+42
* 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-122-2/+7
* Fix SF bug #1466641: multiple adjacent 'if's in listcomps and genexps, as inThomas Wouters2006-04-121-2/+2
* Fix int() and long() to repr() their argument when formatting the exception,Thomas Wouters2006-04-112-6/+28
* StreamHandler now checks explicitly for None before using sys.stderr as the s...Vinay Sajip2006-04-111-1/+1
* _Py_PrintReferenceAddresses,_Py_PrintReferences:Tim Peters2006-04-111-7/+3
* Complete the ElementTree sectionAndrew M. Kuchling2006-04-111-5/+32
* Some more changes to make code compile under a C++ compiler.Anthony Baxter2006-04-115-10/+11
* more low-hanging fruit to make code compile under a C++ compiler. NotAnthony Baxter2006-04-115-70/+102
* Patch #1464444: Add --with-system-ffi.Martin v. Löwis2006-04-114-38/+98
* Convert 0 to their respective enum types. ConvertMartin v. Löwis2006-04-111-11/+11
* Correct casts to char*.Martin v. Löwis2006-04-111-4/+4
* Remove "static forward" declaration. Move constructorsMartin v. Löwis2006-04-113-85/+79
* Regenerate.Martin v. Löwis2006-04-111-2/+0
* As discussed on python-dev, really fix the PyMem_*/PyObject_* memory APINeal Norwitz2006-04-113-29/+29
* Make _kind types global for C++ compilation.Martin v. Löwis2006-04-113-20/+26
* Get compiling againNeal Norwitz2006-04-111-1/+1
* low-hanging fruit in Python/ - g++ still hates all the enum_kind declarationsAnthony Baxter2006-04-114-22/+24
* More low-hanging fruit. Still need to re-arrange some code (or find a betterAnthony Baxter2006-04-115-79/+80
* C++ already defines a perfectly good 'bool'. Use that.Anthony Baxter2006-04-111-0/+2
* Adjust whitespace.Neal Norwitz2006-04-112-4/+4
* Add whitespace after commaNeal Norwitz2006-04-111-1/+1
* Correct test whether wchar_t is unsigned. Fixed crashMartin v. Löwis2006-04-112-3/+5
* Clear errno before calling opendir() and readdir().Georg Brandl2006-04-111-0/+1
* More C++-compliance. Note especially listobject.c - to get C++ to accept theAnthony Baxter2006-04-118-136/+147
* Bug #1467952: os.listdir() now correctly raises an error if readdir()Georg Brandl2006-04-112-0/+9
* Typo fix.Georg Brandl2006-04-111-1/+1
* Fix the code in Parser/ to also compile with C++. This was mostly casts forAnthony Baxter2006-04-117-36/+40
* Try to repair what may be the last new test failure on theTim Peters2006-04-111-1/+15
* subclasspropagation(): Squash two more bogus hash(x) == id(x)Tim Peters2006-04-111-2/+2