summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Some edits; add empty sectionsAndrew M. Kuchling2006-03-071-35/+68
|
* Add note about PEP 357.Guido van Rossum2006-03-071-0/+5
|
* Checking in the code for PEP 357.Guido van Rossum2006-03-0719-150/+269
| | | | | | This was mostly written by Travis Oliphant. I've inspected it all; Neal Norwitz and MvL have also looked at it (in an earlier incarnation).
* Address an coverity issue. Coverity was complaining about a line that's fine,Guido van Rossum2006-03-071-1/+2
| | | | but an earlier line checked for v != NULL unnecessarily.
* Typo fixAndrew M. Kuchling2006-03-071-1/+1
|
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-0711-17/+53
| | | | (reviewed by Neal Norwitz)
* Add additional missing checks for return vals of PyTuple_New().Georg Brandl2006-03-071-66/+65
| | | | Normalize coding style.
* 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
| | | | Will backport.
* Coverity found refleak: need to free 'v' after calling Tkinter_Error().Thomas Wouters2006-03-071-2/+5
| | | | Will backport to release24.
* Bug #1440831: fix csv UnicodeWriter exampleGeorg Brandl2006-03-071-2/+2
|
* Coverity-found bug: don't use temp->next *before* checking it for NULL. AlsoThomas Wouters2006-03-071-2/+4
| | | | return rather than use it again.
* Bug #1432525: os.listdir now releases the GIL while callingGeorg Brandl2006-03-071-3/+15
| | | | readdir().
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-0711-32/+57
| | | | | Add (int) casts to silence compiler warnings. Raise Python exceptions for overflows.
* 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-074-9/+69
| | | | | | added to gc.collect(). Updated docs, unit test, and NEWS entry. (Also, fixed a typo in NEWS.)
* Add a note about the bug fixesNeal Norwitz2006-03-071-0/+2
|
* Thanks to Coverity, these were all reported by their Prevent tool.Neal Norwitz2006-03-076-2/+25
| | | | | All of these (except _lsprof.c) should be backported. Particularly the hotshot change which validates sys.path. Can someone backport?
* Fix warnings on x86 (32-bit) and support Win64.Neal Norwitz2006-03-061-2/+15
|
* Fix warnings on x86 (32-bit).Neal Norwitz2006-03-061-1/+2
|
* Try to cleanup the error handling a bit so there aren't false positivesNeal Norwitz2006-03-061-8/+12
| | | | | from static analysis. v was already checked for NULL above, so we don't need a second check.
* Ignore leaks from the socket test too. Sigh, this list is getting long. :-(Neal Norwitz2006-03-061-1/+1
|
* If size is specified, try to read at least size characters.Walter Dörwald2006-03-062-6/+13
| | | | This is a alternative version of patch #1379332.
* lower-case time_t.Martin v. Löwis2006-03-061-1/+1
|
* Patch #1437769: notice that time_t is a 64-bit type in VS2005Martin v. Löwis2006-03-061-1/+6
|
* Check NULL if Py_InitModule fails.Hye-Shik Chang2006-03-061-1/+2
|
* Use devenv.com to better obtain output.Martin v. Löwis2006-03-052-6/+2
|
* Add buildbot support scripts.Martin v. Löwis2006-03-052-0/+10
|
* Add _msi.pyd.Martin v. Löwis2006-03-051-0/+6
| | | | Add warning on Win9x.
* Open dll file in binary.Martin v. Löwis2006-03-051-3/+3
|
* Update copyright notice.Martin v. Löwis2006-03-051-1/+1
|
* Import bdist_msiMartin v. Löwis2006-03-059-0/+4909
|
* Use %Id for size_t-ish things on Win64.Martin v. Löwis2006-03-051-1/+1
|
* Backout the last hack and add in this new one.Neal Norwitz2006-03-051-14/+8
| | | | | | | | | | | | | | | The failure definitely seems timing related. This change *seems* to work. Since the failure isn't doesn't occur consistently, it's hard to tell. Running these tests on Solaris in this order: test_urllibnet test_operator test_cgi \ test_isinstance test_future test_ast test_logging generally caused a failure (about 50% of the time) before the sleep. I couldn't provoke the failure with the sleep. This should really be cleaned up by using threading.Events or something so it is not timing dependent and doesn't hang forever on failure.
* Oops, urllib may or may not already be loaded.Neal Norwitz2006-03-041-1/+4
|
* Fix SF #1442937, Bad Coroutine linkNeal Norwitz2006-03-041-1/+1
|
* Fix spurious test failure of test_socket_ssl when run in this order:Neal Norwitz2006-03-041-0/+4
| | | | | | | test_codecmaps_tw test_importhooks test_socket_ssl I don't completely understand the cause, but there's a lot of import magic going on and this is the smallest change which fixes the problem.
* Make PyGC_Collect() use Py_ssize_t.Neal Norwitz2006-03-042-12/+12
|
* Oops, forgot to include this in the last checkin.Neal Norwitz2006-03-041-1/+1
| | | | Actually define Py_RefTotal as a Py_ssize_t.
* Use Py_ssize_t for _Py_RefTotal.Neal Norwitz2006-03-043-8/+14
| | | | I tried to handle Win64 properly, but please review.
* TabifyNeal Norwitz2006-03-041-34/+34
|
* Get rid of run_err_mod(). It was only used in two places.Neal Norwitz2006-03-041-14/+4
| | | | | One place it wasn't necessary since mod was already checked. Inline the check that mod != NULL for the other use.
* Change some sequnce APIs to use Py_ssize_t.Neal Norwitz2006-03-042-9/+13
|
* Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions.Neal Norwitz2006-03-042-2/+2
|
* Remove test for timing (already not built since commented out in setup.py).Neal Norwitz2006-03-042-21/+3
| | | | Add note to NEWS.
* - Modernize code to use Py_ssize_t more intensively.Hye-Shik Chang2006-03-0418-168/+131
| | | | - Do some minor code clean-ups.
* Actually this file should have svn:eol-style CRLF since it's specificallyBarry Warsaw2006-03-041-45/+45
| | | | testing line ending compatibility.
* Set eol-style to native -- doesn't appear to be any reasonTim Peters2006-03-041-45/+45
| | | | for it to claim it has mime-type application/octet-stream.
* Whitespace normalization.Tim Peters2006-03-041-3/+3
|
* SF #1442767, docs for os.statvfs miss f_bsize parameter. Will backport.Neal Norwitz2006-03-031-0/+1
|