summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Note side benefit of socket.create_connection()Andrew M. Kuchling2009-10-051-3/+7
|
* Document 'skip' parameter to constructorAndrew M. Kuchling2009-10-051-2/+10
|
* Fix narkupAndrew M. Kuchling2009-10-051-1/+1
|
* Wording fixAndrew M. Kuchling2009-10-051-1/+1
|
* Fix compilation warning on Windows, where size_t is 32bit but file offsets ↵Amaury Forgeot d'Arc2009-10-051-6/+7
| | | | are 64bit.
* Issue #7058: Added save/restore for argv and os.environ to runtest_innerR. David Murray2009-10-052-0/+18
| | | | in regrtest, with warnings if the called test modifies them.
* Issue #7042: Fix test_signal failure on OS X 10.6 64-bit buildsMark Dickinson2009-10-042-0/+4
| | | | | (and also, with luck, on the x86 FreeBSD buildbot), by making sure that some user time is used in test_itimer_virtual.
* test loggingBenjamin Peterson2009-10-041-0/+1
|
* #7050 fix a SystemError when using tuple unpacking and augmented assignmentBenjamin Peterson2009-10-033-0/+19
|
* now uses the right exception typeTarek Ziadé2009-10-031-2/+2
|
* Issue #7028: Add note to hex() builtin docs pointing to float.hex().Mark Dickinson2009-10-031-0/+5
|
* removing the last remaning apply() callsTarek Ziadé2009-10-033-3/+3
|
* #6516 added owner/group support for tarfiles in DistutilsTarek Ziadé2009-10-029-20/+234
|
* Add NEWS entry for r75180.Georg Brandl2009-10-011-0/+2
|
* #7031: Add TestCase.assertIsInstance and negated method.Georg Brandl2009-10-013-0/+41
|
* Fix some weird whitespace and two other overlong lines.Georg Brandl2009-10-011-4/+7
|
* Sync the 2.x `io` docs with py3k, with a small note as to the distinctionAntoine Pitrou2009-10-011-158/+267
| | | | between bytes streams and text streams.
* That's self.env.unset(k) and not env.unset(k) I was heading back to the problem.Senthil Kumaran2009-10-011-1/+1
|
* using dict.unset(k) instead of del dict[k]. consistent with release26-maintSenthil Kumaran2009-10-011-1/+1
|
* Fix for issue7026 test_urllib: unsetting missing 'env' variable.Senthil Kumaran2009-10-011-1/+1
|
* Fix buggy accuracy testMark Dickinson2009-09-301-1/+1
|
* Mention issue6972 in extractall docs about overwriting things outside ofGregory P. Smith2009-09-291-0/+7
| | | | the supplied path.
* Fix for issue6957: ensure that the OSX installerRonald Oussoren2009-09-291-13/+35
| | | | | installs a version of Python that can build extensions on OSX 10.6.
* #5329: fix os.popen* regression from 2.5: don't execute commands as a sequencePhilip Jenvey2009-09-295-42/+109
| | | | | | 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 unnormalizedMark Dickinson2009-09-293-3/+21
| | | | PyLongs. Raise ValueError instead.
* Issue 7008: Better document str.title and show how to work around the ↵Raymond Hettinger2009-09-291-2/+22
| | | | apostrophe problem.
* Issue #6790: Make it possible again to pass an `array.array` toAntoine Pitrou2009-09-294-2/+22
| | | | `httplib.HTTPConnection.send`. Patch by Kirk McDonald.
* * Update the Mac/README file. Add the list of OSX-specific configure optionsRonald Oussoren2009-09-293-18/+97
| | | | | | | | | to that README file with some explanation. * Be more strict in the configure script: complain loudly when the user has specified invalid combinations of OSX-specific configure arguments. The error message refers to the Mac/README file for more information.
* Issue #7014: logging: Improved IronPython 2.6 compatibility.Vinay Sajip2009-09-291-6/+14
|
* #6990: clear threading.local's key only after its thread state is removed:Philip Jenvey2009-09-293-1/+42
| | | | | 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 Dickinson2009-09-285-35/+571
| | | | (lgamma, erf and erfc to follow).
* Applying patches backported from 3.1, by Gregor Lingl.R. David Murray2009-09-282-4/+10
|
* Prevent test_bad_address failure when a domain in the dns searchR. David Murray2009-09-281-8/+18
| | | | | | path implements a '*' default rule. Also update comment with a more complete explanation of the difficulties inherent in the test.
* Style/consistency/nano-optimization nit: replace occurrences ofMark Dickinson2009-09-281-6/+6
| | | | | | | | | | (high_bits << PyLong_SHIFT) + low_bits with (high_bits << PyLong_SHIFT) | low_bits in Objects/longobject.c. Motivation: - shouldn't unnecessarily mix bit ops with arithmetic ops (style) - this pattern should be spelt the same way thoughout (consistency) - it's very very very slightly faster: no need to worry about carries to the high digit (nano-optimization).
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-281-1/+1
| | | | A missing 'const' wasn't detected by Visual Studio.
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-283-20/+97
| | | | The debug memory api now keeps track of which external API (PyMem_* or PyObject_*) was used to allocate each block and treats any API violation as an error. Added separate _PyMem_DebugMalloc functions for the Py_Mem API instead of having it use the _PyObject_DebugMalloc functions.
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-281-3/+11
| | | | A memory block allocated with one API was being handed over to an object that used another API to release it.
* Patch from Thomas Barr so that csv.Sniffer will set doublequote property.Skip Montanaro2009-09-282-6/+25
| | | | Closes issue 6606.
* Documentation improvement for load_tests protocol in unittest. Issue 6515.Michael Foord2009-09-271-0/+5
|
* Test creation moved from TestProgram.parseArgs to TestProgram.createTests ↵Michael Foord2009-09-271-5/+8
| | | | exclusively. Issue 6956.
* Eliminate unnecessary get_wrapped_(u)long defines in struct module.Mark Dickinson2009-09-271-9/+6
|
* Issue #6713: Improve decimal int -> string conversions. Thanks GawainMark Dickinson2009-09-272-11/+30
| | | | Bolton for the suggestion and original patches.
* Tidied up name of parameter in StreamHandlerVinay Sajip2009-09-262-7/+7
|
* #7000: document "sep" in capwords. Add a few testsEzio Melotti2009-09-263-10/+17
|
* comment out ugly xxxBenjamin Peterson2009-09-261-2/+2
|
* #6243: fix segfault when keyname() returns a NULL pointer.Andrew M. Kuchling2009-09-252-4/+12
| | | | Bug noted by Trundle, patched by Trundle and Jerry Chen.
* #6994: fix typo in enumerate docstringEzio Melotti2009-09-251-1/+1
|
* http://bugs.python.org/issue6971Kristján Valur Jónsson2009-09-252-15/+43
| | | | Adding the SIO_KEEPALIVE_VALS command to socket.ioctl on windows
* Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target.Mark Dickinson2009-09-241-1/+2
| | | | Thanks egreen.
* improved phrasing, markup and exampleEzio Melotti2009-09-231-8/+9
|