Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Enhanced Issue 7058 patch, which will not be backported. Refactors the | R. David Murray | 2009-10-14 | 1 | -37/+128 |
| | | | | | | code, adds checks for stdin/out/err, cwd, and sys.path, and adds a new section in the summary for tests that modify the environment (thanks to Ezio Melotti for that suggestion). | ||||
* | Fixed Issue6894, urllib2 doesn't respect "no_proxy" environment | Senthil Kumaran | 2009-10-11 | 2 | -1/+23 |
| | |||||
* | Issue #7055: test___all__ now greedily detects all modules which have an | Antoine Pitrou | 2009-10-10 | 1 | -145/+80 |
| | | | | __all__ attribute, rather than using a hardcoded and incomplete list. | ||||
* | Issue #7086: Added TCP support to SysLogHandler and tidied up some ↵ | Vinay Sajip | 2009-10-10 | 3 | -71/+75 |
| | | | | anachronisms in the code. | ||||
* | replace has_key with 'in' operator | Benjamin Peterson | 2009-10-09 | 29 | -71/+71 |
| | |||||
* | replace callable() | Benjamin Peterson | 2009-10-09 | 7 | -18/+18 |
| | |||||
* | Issue #7082: When falling back to the MIME 'name' parameter, the | R. David Murray | 2009-10-09 | 2 | -5/+3 |
| | | | | | | correct place to look for it is the Content-Type header. Patch by Darren Worrall. | ||||
* | death to old CVS keyword | Benjamin Peterson | 2009-10-09 | 1 | -6/+0 |
| | |||||
* | Update decimal test data to the most recent set from Mike Cowlishaw. | Mark Dickinson | 2009-10-08 | 143 | -148/+211 |
| | |||||
* | Issue #7078: _struct.__doc__ was being ignored. Import it into struct. | Mark Dickinson | 2009-10-08 | 1 | -0/+1 |
| | | | | | Also add description of '?' struct format character. Thanks Gabriel Genellina for the patch. | ||||
* | Issue #7048: logb should round its result when that result doesn't fit | Mark Dickinson | 2009-10-07 | 1 | -1/+2 |
| | | | | | | into the available precision. (Tests for this change are included in the most recent set of testcases from the Decimal Specification site; those testcases will be updated shortly.) | ||||
* | #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, | Amaury Forgeot d'Arc | 2009-10-06 | 1 | -2/+3 |
| | | | | | | _PyUnicode_IsLinebreak and _PyUnicode_IsWhitespace. It now also parses the Unihan.txt for numeric values. | ||||
* | Use standard comma punctuation; reword some sentences in the docs | Andrew M. Kuchling | 2009-10-05 | 1 | -1/+1 |
| | |||||
* | Issue #7058: Added save/restore for argv and os.environ to runtest_inner | R. David Murray | 2009-10-05 | 1 | -0/+15 |
| | | | | in regrtest, with warnings if the called test modifies them. | ||||
* | Issue #7042: Fix test_signal failure on OS X 10.6 64-bit builds | Mark Dickinson | 2009-10-04 | 1 | -0/+2 |
| | | | | | (and also, with luck, on the x86 FreeBSD buildbot), by making sure that some user time is used in test_itimer_virtual. | ||||
* | test logging | Benjamin Peterson | 2009-10-04 | 1 | -0/+1 |
| | |||||
* | #7050 fix a SystemError when using tuple unpacking and augmented assignment | Benjamin Peterson | 2009-10-03 | 1 | -0/+3 |
| | |||||
* | now uses the right exception type | Tarek Ziadé | 2009-10-03 | 1 | -2/+2 |
| | |||||
* | removing the last remaning apply() calls | Tarek Ziadé | 2009-10-03 | 3 | -3/+3 |
| | |||||
* | #6516 added owner/group support for tarfiles in Distutils | Tarek Ziadé | 2009-10-02 | 7 | -15/+218 |
| | |||||
* | #7031: Add TestCase.assertIsInstance and negated method. | Georg Brandl | 2009-10-01 | 2 | -0/+25 |
| | |||||
* | Fix some weird whitespace and two other overlong lines. | Georg Brandl | 2009-10-01 | 1 | -4/+7 |
| | |||||
* | That's self.env.unset(k) and not env.unset(k) I was heading back to the problem. | Senthil Kumaran | 2009-10-01 | 1 | -1/+1 |
| | |||||
* | using dict.unset(k) instead of del dict[k]. consistent with release26-maint | Senthil Kumaran | 2009-10-01 | 1 | -1/+1 |
| | |||||
* | Fix for issue7026 test_urllib: unsetting missing 'env' variable. | Senthil Kumaran | 2009-10-01 | 1 | -1/+1 |
| | |||||
* | Fix buggy accuracy test | Mark Dickinson | 2009-09-30 | 1 | -1/+1 |
| | |||||
* | #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence | Philip Jenvey | 2009-09-29 | 3 | -22/+75 |
| | | | | | | through the shell. also document the correct subprocess replacement for this case patch from Jean-Paul Calderone and Jani Hakala | ||||
* | Issue #7019: Unmarshalling of bad long data could produce unnormalized | Mark Dickinson | 2009-09-29 | 1 | -0/+5 |
| | | | | PyLongs. Raise ValueError instead. | ||||
* | Issue #6790: Make it possible again to pass an `array.array` to | Antoine Pitrou | 2009-09-29 | 2 | -2/+18 |
| | | | | `httplib.HTTPConnection.send`. Patch by Kirk McDonald. | ||||
* | Issue #7014: logging: Improved IronPython 2.6 compatibility. | Vinay Sajip | 2009-09-29 | 1 | -6/+14 |
| | |||||
* | #6990: clear threading.local's key only after its thread state is removed: | Philip Jenvey | 2009-09-29 | 1 | -0/+38 |
| | | | | | fixes local subclasses leaving old state around after a ref cycle GC which could be recycled by new locals | ||||
* | Issue #3366: Add gamma function to math module. | Mark Dickinson | 2009-09-28 | 2 | -0/+234 |
| | | | | (lgamma, erf and erfc to follow). | ||||
* | Applying patches backported from 3.1, by Gregor Lingl. | R. David Murray | 2009-09-28 | 1 | -4/+9 |
| | |||||
* | Prevent test_bad_address failure when a domain in the dns search | R. David Murray | 2009-09-28 | 1 | -8/+18 |
| | | | | | | path implements a '*' default rule. Also update comment with a more complete explanation of the difficulties inherent in the test. | ||||
* | Patch from Thomas Barr so that csv.Sniffer will set doublequote property. | Skip Montanaro | 2009-09-28 | 2 | -6/+25 |
| | | | | Closes issue 6606. | ||||
* | Test creation moved from TestProgram.parseArgs to TestProgram.createTests ↵ | Michael Foord | 2009-09-27 | 1 | -5/+8 |
| | | | | exclusively. Issue 6956. | ||||
* | Tidied up name of parameter in StreamHandler | Vinay Sajip | 2009-09-26 | 1 | -5/+5 |
| | |||||
* | #7000: document "sep" in capwords. Add a few tests | Ezio Melotti | 2009-09-26 | 2 | -4/+9 |
| | |||||
* | #6243: fix segfault when keyname() returns a NULL pointer. | Andrew M. Kuchling | 2009-09-25 | 1 | -0/+5 |
| | | | | Bug noted by Trundle, patched by Trundle and Jerry Chen. | ||||
* | http://bugs.python.org/issue6971 | Kristján Valur Jónsson | 2009-09-25 | 1 | -0/+4 |
| | | | | Adding the SIO_KEEPALIVE_VALS command to socket.ioctl on windows | ||||
* | Half of the fix for issue 6957: ensure that distutils | Ronald Oussoren | 2009-09-22 | 1 | -0/+23 |
| | | | | | | | | | ignores the '-isysroot' option on OSX when the corresponding SDK is not installed. This ensures that the user can compile extensions on OSX 10.6 using the Python.org installer and a default installation of Xcode. | ||||
* | When range checking was added to time.strftime() a check was placed on tm_isdst | Brett Cannon | 2009-09-22 | 1 | -5/+0 |
| | | | | | | | | | | | to make sure it fell within [-1, 1] just in case someone implementing strftime() in libc was stupid enough to assume this. Turns out, though, some OSs (e.g. zOS) are stupid enough to use values outside of this range for time structs created by the system itself. So instead of throwing a ValueError, tm_isdst is now normalized before being passed to strftime(). Fixes issue #6823. Thanks Robert Shapiro for diagnosing the problem and contributing an initial patch. | ||||
* | forgot to commit a file in previous commit (r74994, issue #6954) | Tarek Ziadé | 2009-09-21 | 1 | -0/+3 |
| | |||||
* | #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils. | Tarek Ziadé | 2009-09-21 | 3 | -1/+11 |
| | |||||
* | improving distutils coverage | Tarek Ziadé | 2009-09-21 | 1 | -0/+22 |
| | |||||
* | improved distutils test coverage: now the DEBUG mode is covered too (will ↵ | Tarek Ziadé | 2009-09-21 | 5 | -2/+93 |
| | | | | help fix the issue #6954 in py3k branch) | ||||
* | Issue 6877: this patch makes it possible to link the readline extension | Ronald Oussoren | 2009-09-20 | 1 | -0/+42 |
| | | | | | | | | to the libedit emulation of the readline API on OSX 10.5 or later. This also adds a minimal testsuite for readline to check that the history manipuation functions have the same interface with both C libraries. | ||||
* | Followup for r74962 | Ronald Oussoren | 2009-09-20 | 1 | -2/+1 |
| | |||||
* | Fix for issue 6851: urllib.urlopen crashes in a thread on OSX 10.6 | Ronald Oussoren | 2009-09-20 | 1 | -183/+23 |
| | |||||
* | Update bug tracker reference. | Georg Brandl | 2009-09-19 | 1 | -1/+1 |
| |