Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Coverity-found bug: don't use temp->next *before* checking it for NULL. Also | Thomas Wouters | 2006-03-07 | 1 | -2/+4 |
| | | | | return rather than use it again. | ||||
* | Bug #1432525: os.listdir now releases the GIL while calling | Georg Brandl | 2006-03-07 | 1 | -3/+15 |
| | | | | readdir(). | ||||
* | Change int to Py_ssize_t in several places. | Martin v. Löwis | 2006-03-07 | 11 | -32/+57 |
| | | | | | Add (int) casts to silence compiler warnings. Raise Python exceptions for overflows. | ||||
* | Don't DECREF a borrowed reference. | Thomas Wouters | 2006-03-07 | 1 | -1/+0 |
| | |||||
* | SF patch #1443865; gc.get_count() added and optional argument 'generation' | Barry Warsaw | 2006-03-07 | 4 | -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 fixes | Neal Norwitz | 2006-03-07 | 1 | -0/+2 |
| | |||||
* | Thanks to Coverity, these were all reported by their Prevent tool. | Neal Norwitz | 2006-03-07 | 6 | -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 Norwitz | 2006-03-06 | 1 | -2/+15 |
| | |||||
* | Fix warnings on x86 (32-bit). | Neal Norwitz | 2006-03-06 | 1 | -1/+2 |
| | |||||
* | Try to cleanup the error handling a bit so there aren't false positives | Neal Norwitz | 2006-03-06 | 1 | -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 Norwitz | 2006-03-06 | 1 | -1/+1 |
| | |||||
* | If size is specified, try to read at least size characters. | Walter Dörwald | 2006-03-06 | 2 | -6/+13 |
| | | | | This is a alternative version of patch #1379332. | ||||
* | lower-case time_t. | Martin v. Löwis | 2006-03-06 | 1 | -1/+1 |
| | |||||
* | Patch #1437769: notice that time_t is a 64-bit type in VS2005 | Martin v. Löwis | 2006-03-06 | 1 | -1/+6 |
| | |||||
* | Check NULL if Py_InitModule fails. | Hye-Shik Chang | 2006-03-06 | 1 | -1/+2 |
| | |||||
* | Use devenv.com to better obtain output. | Martin v. Löwis | 2006-03-05 | 2 | -6/+2 |
| | |||||
* | Add buildbot support scripts. | Martin v. Löwis | 2006-03-05 | 2 | -0/+10 |
| | |||||
* | Add _msi.pyd. | Martin v. Löwis | 2006-03-05 | 1 | -0/+6 |
| | | | | Add warning on Win9x. | ||||
* | Open dll file in binary. | Martin v. Löwis | 2006-03-05 | 1 | -3/+3 |
| | |||||
* | Update copyright notice. | Martin v. Löwis | 2006-03-05 | 1 | -1/+1 |
| | |||||
* | Import bdist_msi | Martin v. Löwis | 2006-03-05 | 9 | -0/+4909 |
| | |||||
* | Use %Id for size_t-ish things on Win64. | Martin v. Löwis | 2006-03-05 | 1 | -1/+1 |
| | |||||
* | Backout the last hack and add in this new one. | Neal Norwitz | 2006-03-05 | 1 | -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 Norwitz | 2006-03-04 | 1 | -1/+4 |
| | |||||
* | Fix SF #1442937, Bad Coroutine link | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
| | |||||
* | Fix spurious test failure of test_socket_ssl when run in this order: | Neal Norwitz | 2006-03-04 | 1 | -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 Norwitz | 2006-03-04 | 2 | -12/+12 |
| | |||||
* | Oops, forgot to include this in the last checkin. | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
| | | | | Actually define Py_RefTotal as a Py_ssize_t. | ||||
* | Use Py_ssize_t for _Py_RefTotal. | Neal Norwitz | 2006-03-04 | 3 | -8/+14 |
| | | | | I tried to handle Win64 properly, but please review. | ||||
* | Tabify | Neal Norwitz | 2006-03-04 | 1 | -34/+34 |
| | |||||
* | Get rid of run_err_mod(). It was only used in two places. | Neal Norwitz | 2006-03-04 | 1 | -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 Norwitz | 2006-03-04 | 2 | -9/+13 |
| | |||||
* | Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. | Neal Norwitz | 2006-03-04 | 2 | -2/+2 |
| | |||||
* | Remove test for timing (already not built since commented out in setup.py). | Neal Norwitz | 2006-03-04 | 2 | -21/+3 |
| | | | | Add note to NEWS. | ||||
* | - Modernize code to use Py_ssize_t more intensively. | Hye-Shik Chang | 2006-03-04 | 18 | -168/+131 |
| | | | | - Do some minor code clean-ups. | ||||
* | Actually this file should have svn:eol-style CRLF since it's specifically | Barry Warsaw | 2006-03-04 | 1 | -45/+45 |
| | | | | testing line ending compatibility. | ||||
* | Set eol-style to native -- doesn't appear to be any reason | Tim Peters | 2006-03-04 | 1 | -45/+45 |
| | | | | for it to claim it has mime-type application/octet-stream. | ||||
* | Whitespace normalization. | Tim Peters | 2006-03-04 | 1 | -3/+3 |
| | |||||
* | SF #1442767, docs for os.statvfs miss f_bsize parameter. Will backport. | Neal Norwitz | 2006-03-03 | 1 | -0/+1 |
| | |||||
* | I think the test_logging failure on Solaris is timing related. We don't | Neal Norwitz | 2006-03-03 | 1 | -5/+14 |
| | | | | | | | want to wait forever if we don't receive the last message. But we also don't want the test to fail if we shutdown too quickly. I can't reliably reproduce this failure, so I'm kinda guessing this is the problem. We'll see if this band-aid helps. | ||||
* | SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. | Neal Norwitz | 2006-03-03 | 3 | -24/+24 |
| | | | | Add it back. | ||||
* | Fix compiler breakage related to absolute imports | Neal Norwitz | 2006-03-03 | 1 | -2/+2 |
| | |||||
* | Remove commented code | Neal Norwitz | 2006-03-03 | 1 | -24/+1 |
| | |||||
* | Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can | Neal Norwitz | 2006-03-03 | 2 | -4/+2 |
| | | | | be removed in 2.x. | ||||
* | Add support for absolute/relative imports and if/else expressions: | Thomas Wouters | 2006-03-03 | 5 | -19/+82 |
| | | | | | | | | | - regenerate ast.py - add future flags for absolute-import and with-statement so they (hopefully) properly get set in code-object flags - try out if/else expressions in actual code for the hell of it. Seems to generate the same kind of bytecode as the normal compiler. | ||||
* | Update for absolute/relative imports and ifelse-expressions. | Thomas Wouters | 2006-03-03 | 1 | -1/+2 |
| | |||||
* | Provide checkin access to Ronald and Bob | Neal Norwitz | 2006-03-03 | 1 | -0/+7 |
| | |||||
* | Stop building timing module, it's old and deprecated | Neal Norwitz | 2006-03-03 | 1 | -1/+3 |
| | |||||
* | Add test_quopri to know spurious leakers | Neal Norwitz | 2006-03-03 | 1 | -1/+1 |
| | |||||
* | Text moved to PEP 339. | Brett Cannon | 2006-03-02 | 1 | -507/+0 |
| |