Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge rev 42963 from the trunk. | Tim Peters | 2006-03-13 | 1 | -0/+2 | |
| | | | | | | | When the new -w option (yay! great idea) reruns a failed test, first display the name of the test (else it's not always clear from the output which test is getting run). | |||||
* | Merge rev 41859 from the trunk. | Tim Peters | 2006-03-13 | 1 | -0/+9 | |
| | | | | | | | | | | | test_main(): Restore the original root logger level after running the tests. This stops the confusing/annoying: No handlers could be found for logger "cookielib" message we got whenever some test running after test_logging happened to use cookielib.py (when not using regrtest's -r, this happened during test_urllib2; when using -r, it varied). | |||||
* | Merge rev 42984 from trunk. | Tim Peters | 2006-03-13 | 1 | -1/+1 | |
| | | | | | | | | | Adding the /useenv means that one's PATH actually gets through. This is important for the _ssl.vproj build. It calls build_ssl.py which tries to find a Perl to use. Without "/useenv" Visual Studio is getting a PATH from somewhere else (presumably from its internal environment configuration). The result is that build_ssl.py fallsback to its "well-known" locations for a Perl install. | |||||
* | Move buildbot scripts to Tools/buildbot. | Martin v. Löwis | 2006-03-12 | 3 | -0/+0 | |
| | ||||||
* | Add a do-nothing "clean" operation to the _ssl project, | Tim Peters | 2006-03-12 | 1 | -0/+3 | |
| | | | | | so the buildbot's "clean" step doesn't fail due to _ssl whining that it can't spawn an empty string. | |||||
* | Copied from the trunk for buildbot use. | Tim Peters | 2006-03-12 | 1 | -0/+3 | |
| | ||||||
* | Copy from the trunk, for the buildbot. | Tim Peters | 2006-03-12 | 1 | -0/+3 | |
| | ||||||
* | Copy from the trunk, for the buildbot. | Tim Peters | 2006-03-12 | 1 | -0/+3 | |
| | ||||||
* | Merge rev 42904 from the trunk. | Tim Peters | 2006-03-11 | 2 | -2/+7 | |
| | | | | | | | | | | | | | | | | | _hotshot hotshot_profiler(): If write_header() returned an error code, this let `self` leak. This is a disaster on Windows, since `self` already points to a newly-opened file object, and it was impossible for Python code to close the thing since the only reference to it was in a blob of leaked C memory. test_hotshot test_bad_sys_path(): This new test provoked the C bug above. This test passed, but left an open "@test" file behind, which caused a massive cascade of bogus test failures in later, unrelated tests on Windows. Changed the test code to remove the @test file it leaves behind, which relies on the change above to close that file first. | |||||
* | Backport of 42551 (EXTRATESTOPTS). | Martin v. Löwis | 2006-03-10 | 1 | -1/+1 | |
| | ||||||
* | Backport of 42960, to support the options buildbot uses. | Martin v. Löwis | 2006-03-10 | 2 | -3/+22 | |
| | ||||||
* | Bug #1445901: os.path.realpath() is available on Win/Mac too. | Georg Brandl | 2006-03-08 | 1 | -2/+2 | |
| | | | | (backport from rev. 42923) | |||||
* | Fix pydoc.synopsis() so that it doesn't error out with an unreadable | Georg Brandl | 2006-03-08 | 1 | -1/+5 | |
| | | | | | module. (backport from rev. 42912) | |||||
* | Backport fixes reported by Coverity. | Neal Norwitz | 2006-03-08 | 1 | -4/+4 | |
| | ||||||
* | Typo fix | Andrew M. Kuchling | 2006-03-07 | 1 | -1/+1 | |
| | ||||||
* | Backport r42894: SF #1444030 Fix several potential defects found | Hye-Shik Chang | 2006-03-07 | 10 | -17/+51 | |
| | | | | by Coverity. | |||||
* | Backport trunk's r42890 (thomas.wouters): | Thomas Wouters | 2006-03-07 | 1 | -7/+7 | |
| | | | | | | | | Coverity found bug: test result of PyTuple_New() against NULL before use. and r42891 (thomas.wouters): Fix gcc 4.0.x warning about use of uninitialized value. | |||||
* | Backport trunk's r42888 (thomas.wouters): | Thomas Wouters | 2006-03-07 | 1 | -2/+5 | |
| | | | | Coverity found refleak: need to free 'v' after calling Tkinter_Error(). | |||||
* | Backport trunk's r42885 (thomas.wouters): | Thomas Wouters | 2006-03-07 | 1 | -2/+4 | |
| | | | | | Coverity-found bug: don't use temp->next *before* checking it for NULL. Also return rather than use it again. | |||||
* | Backport trunk's r42878 (neal.norwitz): | Thomas Wouters | 2006-03-07 | 5 | -3/+23 | |
| | | | | | | | | Thanks to Coverity, these were all reported by their Prevent tool. and r42881 (thomas.wouters): Don't DECREF a borrowed reference. | |||||
* | Backport revision 42872: | Walter Dörwald | 2006-03-06 | 2 | -6/+13 | |
| | | | | | If size is specified, try to read at least size characters. This is a alternative version of patch #1379332. | |||||
* | Skip codecs tests on Python 2.3. | Barry Warsaw | 2006-03-06 | 1 | -0/+7 | |
| | ||||||
* | Backport: SF #1442767, docs for os.statvfs miss f_bsize parameter. | Neal Norwitz | 2006-03-03 | 1 | -0/+1 | |
| | ||||||
* | Backport of memory leak fixes. | Martin v. Löwis | 2006-03-01 | 1 | -1/+5 | |
| | ||||||
* | Return value off PyErr_Warn() for raising string exceptions was not being | Brett Cannon | 2006-02-27 | 2 | -3/+9 | |
| | | | | | checked. Problem when 'warnings' was set to "error" and thus would re-raise a new exception. | |||||
* | do_mkvalue(): Squash compiler warnings about mixing | Tim Peters | 2006-02-27 | 1 | -2/+2 | |
| | | | | signed and unsigned types in comparison. | |||||
* | Merge rev 42607 from the trunk. | Tim Peters | 2006-02-27 | 2 | -0/+10 | |
| | | | | | | | | | Patch 1413181, by Gabriel Becedillas. PyThreadState_Delete(): if the auto-GIL-state machinery knows about the thread state, forget it (since the thread state is being deleted, continuing to remember it can't help, but can hurt if another thread happens to get created with the same thread id). | |||||
* | Trimmed trailing whitespace. | Tim Peters | 2006-02-27 | 1 | -8/+8 | |
| | ||||||
* | backport | Skip Montanaro | 2006-02-25 | 1 | -1/+1 | |
| | ||||||
* | Backport 41753: | Neal Norwitz | 2006-02-21 | 2 | -0/+8 | |
| | | | | | Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. Also bug #1435487 (dup). | |||||
* | Bug #947571: By default, urllib.urlopen() does not raise IOErrors | Georg Brandl | 2006-02-20 | 1 | -1/+8 | |
| | | | | on server error codes. Make this clear. | |||||
* | Bug #1210377: close bsddb cursor correctly after NotFoundError. | Georg Brandl | 2006-02-20 | 1 | -2/+8 | |
| | ||||||
* | Patch #931938: prevent setting sys.prefix to "" | Georg Brandl | 2006-02-20 | 1 | -0/+6 | |
| | ||||||
* | Bug #1102649: add a note to pickle docs that pickle files should be | Georg Brandl | 2006-02-20 | 1 | -1/+10 | |
| | | | | opened in binary mode. | |||||
* | Bug #1323369: document possible values of sys.getwindowsversion() | Georg Brandl | 2006-02-20 | 1 | -4/+4 | |
| | | | | platform field | |||||
* | Bug #1101233: fix test_fcntl on netbsd2 platform. | Georg Brandl | 2006-02-20 | 1 | -1/+1 | |
| | ||||||
* | Backported from r41842. | Armin Rigo | 2006-02-20 | 4 | -22/+172 | |
| | ||||||
* | Bug #854823: socketmodule now builds on Sun platforms even when | Georg Brandl | 2006-02-20 | 2 | -2/+5 | |
| | | | | INET_ADDRSTRLEN is not defined. | |||||
* | Make clear that patch #1336582 wasn't a new feature. | Georg Brandl | 2006-02-19 | 1 | -1/+1 | |
| | ||||||
* | Patch #1337756: fileinput now accepts Unicode filenames. | Georg Brandl | 2006-02-19 | 3 | -1/+13 | |
| | ||||||
* | Patch #1352711: make zipimport raise a complete IOError | Georg Brandl | 2006-02-19 | 1 | -2/+1 | |
| | ||||||
* | Bug #801349: document that start/stop/step slice arguments can be None | Georg Brandl | 2006-02-19 | 2 | -6/+7 | |
| | ||||||
* | Patch #1415507: clarify docs on reference stealing | Georg Brandl | 2006-02-18 | 1 | -3/+13 | |
| | ||||||
* | Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, ↵ | Georg Brandl | 2006-02-18 | 1 | -42/+33 | |
| | | | | offset>=0. | |||||
* | Backport: This should get test_timeout to pass when running on any ↵ | Neal Norwitz | 2006-02-18 | 1 | -0/+5 | |
| | | | | python.org host. | |||||
* | Patch #1373643: The chunk module can now read chunks larger than | Georg Brandl | 2006-02-18 | 2 | -1/+4 | |
| | | | | two gigabytes. | |||||
* | Remove soundex from "undocumented modules". | Georg Brandl | 2006-02-17 | 1 | -5/+0 | |
| | ||||||
* | Bug #1430298: It is now possible to send a mail with an empty | Georg Brandl | 2006-02-17 | 2 | -1/+7 | |
| | | | | return address using smtplib. | |||||
* | Bug #1432260: better handle lambda functions' names in pydoc | Georg Brandl | 2006-02-17 | 2 | -1/+4 | |
| | ||||||
* | Patch #1432345: Make python compile on DragonFly. | Martin v. Löwis | 2006-02-17 | 3 | -9/+13 | |
| |