summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* Fix memory leakNeal Norwitz2006-04-161-1/+5
* err is no longer usedNeal Norwitz2006-04-161-1/+1
* Add missing PyObject_GC_Track call, causing *some* itertools.tee objects toThomas Wouters2006-04-151-0/+1
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-156-74/+38
* Fix for FreeBSD. Fixes http://python.org/sf/1470353.Thomas Heller2006-04-151-2/+2
* Remove partial change (don't edit, commit and think at the same time :P)Thomas Wouters2006-04-151-1/+0
* Re-instate backward compatibility by defining Py_CLEAR if it isn'tThomas Wouters2006-04-151-0/+14
* Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, forThomas Wouters2006-04-154-37/+24
* Patch #1191065: Fix preprocessor problems on systems where recvfromMartin v. Löwis2006-04-151-6/+8
* Coverity-found bug: datetime_strptime() failed to check for NULL return fromThomas Wouters2006-04-141-0/+4
* Patch #1470300: Port _hotshot to QNX4.25 port.Martin v. Löwis2006-04-141-2/+2
* Patch #1324762: Change --with-cxx to --with-cxx-main.Martin v. Löwis2006-04-141-11/+0
* Add a test for Py_ssize_t. Correct typo in getargs.c.Georg Brandl2006-04-131-11/+21
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-1/+1
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-3/+3
* Add PY_SSIZE_T_MIN/MAX to _testcapi.Georg Brandl2006-04-131-0/+2
* C++ compiler changes. casts, rename variables with reserved names.Anthony Baxter2006-04-133-32/+32
* Support NFD of very long strings.Martin v. Löwis2006-04-131-3/+3
* whoops. missed one in an auto-generated file. another extern "C" {} for C++ c...Anthony Baxter2006-04-131-0/+10
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-133-0/+29
* Fix for a bug found by Armin Rigo, plus test.Thomas Heller2006-04-121-1/+1
* Off-by-one buffer overflow error.Armin Rigo2006-04-121-1/+1
* Update for new grammarNeal Norwitz2006-04-121-4/+4
* 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
* Some more changes to make code compile under a C++ compiler.Anthony Baxter2006-04-114-9/+10
* Clear errno before calling opendir() and readdir().Georg Brandl2006-04-111-0/+1
* Bug #1467952: os.listdir() now correctly raises an error if readdir()Georg Brandl2006-04-111-0/+6
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-1/+5
* Fix warning about ptsname not being a prototype on Solaris. Is this prototyp...Neal Norwitz2006-04-101-1/+1
* Get rid of warnings about using chars as subscriptsNeal Norwitz2006-04-102-3/+3
* Fix some warnings on HP-UX when using cc/aCCNeal Norwitz2006-04-103-6/+4
* Fix problem (not checking return result) reported by CoverityNeal Norwitz2006-04-091-1/+4
* Fix bsddb.db.DBError derived exceptions so they can be unpickled.Gregory P. Smith2006-04-081-6/+22
* Patch #1462080: Conditionalize some NETLINK defines.Martin v. Löwis2006-04-061-0/+11
* Expose RTLD_LOCAL and RTLD_GLOBAL always from the _ctypes extension module.Thomas Heller2006-04-061-2/+12
* Replace a few more 'char' types with 'signed char', to fix test failuresThomas Heller2006-04-061-5/+5
* This change shouldn't have any functional effect. Coverity wasNeal Norwitz2006-04-061-1/+1
* Fix unchecked return result from Coverity.Neal Norwitz2006-04-061-0/+2
* Handle ssize_tNeal Norwitz2006-04-061-2/+2
* Handle error conditions from PyString_ConcatAndDel().Neal Norwitz2006-04-061-1/+6
* Handle ssize_tNeal Norwitz2006-04-061-3/+4
* Explicitely use 'signed char', to avoid problems on platforms with unsigned c...Thomas Heller2006-04-051-26/+26
* Explicitely use 'signed char', to avoid problems on platforms with unsigned c...Thomas Heller2006-04-051-2/+2
* upgrade to final version of pysqlite 2.2.0Anthony Baxter2006-04-059-30/+23
* docstring tweakFredrik Lundh2006-04-041-1/+1
* SF Bug #1448488 - make collectionsmodule build on Cygwin, using the sameAnthony Baxter2006-04-041-2/+6
* Fix a couple of memory issuesNeal Norwitz2006-04-041-3/+3
* Update to pysqlite 2.2.0Anthony Baxter2006-04-0412-129/+416