summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Try to be a bit more consistent on all platforms:Neal Norwitz2006-03-091-1/+2
* Copy ctypes-0.9.9.4 sources from external into the trunk.Thomas Heller2006-03-08108-0/+43876
* typoGeorg Brandl2006-03-081-1/+1
* Fix logic error and DECREF reported by Coverity.Neal Norwitz2006-03-081-4/+4
* Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful ofThomas Wouters2006-03-081-65/+73
* Reformulate 42903 using an if statement.Martin v. Löwis2006-03-071-35/+31
* _hotshot hotshot_profiler(): If write_header() returnedTim Peters2006-03-071-1/+3
* Fix bug introduced in rev. 42884.Georg Brandl2006-03-071-3/+5
* Checking in the code for PEP 357.Guido van Rossum2006-03-073-35/+34
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-073-4/+10
* Add additional missing checks for return vals of PyTuple_New().Georg Brandl2006-03-071-66/+65
* Fix gcc 4.0.x warning about use of uninitialized value.Thomas Wouters2006-03-071-1/+1
* Coverity found bug: test result of PyTuple_New() against NULL before use.Thomas Wouters2006-03-071-6/+6
* Coverity found refleak: need to free 'v' after calling Tkinter_Error().Thomas Wouters2006-03-071-2/+5
* Coverity-found bug: don't use temp->next *before* checking it for NULL. AlsoThomas Wouters2006-03-071-2/+4
* Bug #1432525: os.listdir now releases the GIL while callingGeorg Brandl2006-03-071-3/+15
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-4/+4
* Don't DECREF a borrowed reference.Thomas Wouters2006-03-071-1/+0
* SF patch #1443865; gc.get_count() added and optional argument 'generation'Barry Warsaw2006-03-071-5/+34
* Thanks to Coverity, these were all reported by their Prevent tool.Neal Norwitz2006-03-075-2/+12
* Fix warnings on x86 (32-bit) and support Win64.Neal Norwitz2006-03-061-2/+15
* Check NULL if Py_InitModule fails.Hye-Shik Chang2006-03-061-1/+2
* Make PyGC_Collect() use Py_ssize_t.Neal Norwitz2006-03-041-11/+11
* - Modernize code to use Py_ssize_t more intensively.Hye-Shik Chang2006-03-0418-168/+131
* Explain why we use the unsigned int format for a signed int variable.Thomas Wouters2006-03-021-0/+4
* Properly fix Py_SAFE_DOWNCAST-triggerd bugs.Thomas Wouters2006-03-021-7/+10
* Py_SAFE_DOWNCAST isn't quite doing the right thing for going from Py_ssize_tThomas Wouters2006-03-021-7/+4
* Make Py_ssize_t-cleanThomas Wouters2006-03-021-2/+4
* Remove UNLESS.Martin v. Löwis2006-03-011-29/+28
* Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints.Thomas Wouters2006-03-011-2/+2
* Fix gcc (4.0.x) warning about use of uninitialized variable.Thomas Wouters2006-03-011-0/+1
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-1/+1
* Rework channelnumber/samplesize detetion code's output variables a bit toThomas Wouters2006-03-012-14/+12
* Silence gcc (4.0.x) warning about use of uninitialized value.Thomas Wouters2006-03-011-1/+1
* Fix brainfart.Thomas Wouters2006-03-011-1/+1
* Remove gcc (4.0.x) warning about uninitialized value by explicitly settingThomas Wouters2006-03-011-2/+1
* Make Py_ssize_t-clean.Thomas Wouters2006-03-011-8/+13
* Make Py_ssize_t-clean.Thomas Wouters2006-03-011-17/+18
* Change GC refcount to Py_ssize_t.Martin v. Löwis2006-03-011-1/+1
* Repair mangled code in the Windows flavor ofTim Peters2006-03-011-2/+1
* Py_ssize_t-ify.Thomas Wouters2006-03-011-5/+10
* Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct onThomas Wouters2006-03-011-4/+5
* Updates to the with-statement:Guido van Rossum2006-02-281-0/+36
* Another bit of unconstification.Tim Peters2006-02-281-1/+1
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-13/+28
* unconst.Martin v. Löwis2006-02-271-2/+2
* Convert array.array.insert to use Py_ssize_t (like the rest already does.)Thomas Wouters2006-02-271-2/+2
* More unconsting.Martin v. Löwis2006-02-279-62/+56
* unconst.Martin v. Löwis2006-02-271-9/+9
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-2712-30/+30