summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix for issue 4937Ronald Oussoren2009-09-061-1/+0
|
* Issue #6846: bytearray.pop was returning ints in the range [-128, 128)Mark Dickinson2009-09-061-0/+2
| | | | instead of [0, 256). Thanks Hagen Fürstenau for the report and fix.
* Fix build issues on OSX 10.6 (issue 6802)Ronald Oussoren2009-09-065-43/+54
|
* Fixes issue #6838: use a list to accumulate the value instead of repeatedly ↵Chris Withers2009-09-041-12/+9
| | | | concatenating strings.
* #5101: add back tests to test_funcattrs that were lost during unittest ↵Georg Brandl2009-09-041-61/+119
| | | | conversion, and make some PEP8 cleanups.
* Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments ↵Georg Brandl2009-09-041-1/+3
| | | | as documented.
* Issue #2666: Handle BROWSER environment variable properly for unknown ↵Georg Brandl2009-09-041-1/+3
| | | | browser names in the webbrowser module.
* test_platform fails on OS X Snow Leopard because the UNIX command to get theBrett Cannon2009-09-031-1/+7
| | | | | | | | canonical version, sw_vers, leaves off trailing zeros in the version number (e.g. 10.6 instead of 10.6.0). Test now compensates by tacking on extra zeros for the test comparison. Fixes issue #6806.
* Sorry, sorry! Ignore my previous two commits. I mixed up the versionArmin Rigo2009-09-032-21/+0
| | | | | of python with which I tried running the crashers. They don't crash the current HEAD.
* Does not terminate: consume all memory without responding to Ctrl-C.Armin Rigo2009-09-031-0/+10
| | | | I am not too sure why, but you can surely find out by gdb'ing a bit...
* Found the next crasher by thinking about this logic in PyPy.Armin Rigo2009-09-031-0/+11
|
* remove the check that classmethod's argument is a callableBenjamin Peterson2009-09-011-7/+3
|
* #6750: TextIOWrapped could duplicate output when several threads write to it.Amaury Forgeot d'Arc2009-08-291-0/+21
| | | | this affect text files opened with io.open(), and the print() function of py3k
* Issue #6054: Do not normalize stored pathnames.Lars Gustäbel2009-08-282-29/+82
| | | | | | No longer use tarfile.normpath() on pathnames. Store pathnames unchanged, i.e. do not remove "./", "../" and "//" occurrences. However, still convert absolute to relative paths.
* remove more code for restricted executionBenjamin Peterson2009-08-281-9/+4
|
* restricted environments are no moreBenjamin Peterson2009-08-282-10/+2
|
* Issue #6794: Fix handling of NaNs in Decimal.compare_total andMark Dickinson2009-08-282-2/+21
| | | | Decimal.compare_total_mag.
* Issue 6654Kristján Valur Jónsson2009-08-272-5/+118
| | | | Allow the XML-RPC server to use the HTTP request path when dispatching. Added a MultiPathXMLRPCServer class that uses the feature, plus unit tests.
* issue 6275Kristján Valur Jónsson2009-08-272-0/+16
| | | | Add an "exc_value" attribute to the _AssertRaisesContext context manager in the unittest package. This allows further tests on the exception that was raised after the context manager exits.
* issue 6769Kristján Valur Jónsson2009-08-241-1/+1
| | | | fix a mistake in instantiatiating the HTTPSConnection class.
* #6693: New functions in site.py to get user/global site packages paths.Tarek Ziadé2009-08-202-36/+126
|
* comment typo fixGregory P. Smith2009-08-201-1/+1
|
* Revert the changes from r74463, they were causing test_xmlrpc to fail.Gregory P. Smith2009-08-191-9/+1
| | | | | | | | | We do not need to force a close when using socket buffering on a httplib.HTTPRequest as the library does not support streaming requests so there should never been extra data beyond the end of the current request to have left over in the requests socket buffer. see http://bugs.python.org/issue6724
* Added missing static option for OptionMenu. Issue #5961.Guilherme Polo2009-08-181-1/+2
|
* Issue #1356969: Add missing info methods in Tix.HList.Guilherme Polo2009-08-181-0/+10
|
* Fixes for Tix.Grid from issue #1522587.Guilherme Polo2009-08-181-3/+6
|
* Issue #1522587: New constants and methods for the Tix.Grid widget.Guilherme Polo2009-08-181-11/+102
|
* Mark the "radio" option of Tix.CheckList as static.Guilherme Polo2009-08-181-1/+1
|
* Issue #1250469: Fix the return value of Tix.PanedWindow.panes.Guilherme Polo2009-08-181-5/+2
|
* Issue #1119673: Do not override Tkinter.Text methods when creating a ↵Guilherme Polo2009-08-181-1/+4
| | | | ScrolledText.
* fixed typoTarek Ziadé2009-08-181-4/+4
|
* added more test coverage for distutils.filelist to prevent regressions when ↵Tarek Ziadé2009-08-182-5/+45
| | | | fnmatch or re are changed
* module cleanupTarek Ziadé2009-08-171-57/+42
|
* fixed how fnmatch.translate is used (since it has changed in r74475 for ↵Tarek Ziadé2009-08-172-9/+10
| | | | #6665). Now the code is not harcoding the usage of $ anymore
* Clean up the C library import code (based on suggestions in issue6281).Gregory P. Smith2009-08-161-33/+33
|
* Add test of file.write(array) extracted from Jython.Frank Wierzbicki2009-08-161-0/+19
|
* Issue 6665: Fix fnmatch to properly match filenames with newlines in them.Gregory P. Smith2009-08-162-2/+9
|
* better col_offsets for "for" statements with tuple unpacking #6704Benjamin Peterson2009-08-151-1/+8
| | | | Patch from Frank Wierzbicki.
* Force the http connection to close after any request returned whenGregory P. Smith2009-08-151-1/+14
| | | | | | | buffering=True as our buffered data is not known to the HTTPConnection and may contain data needed by a future request if the connection were left open. See http://bugs.python.org/issue2576 and http://bugs.python.org/issue4879.
* #6707 fix a crash with dir() on an uninitialized moduleBenjamin Peterson2009-08-151-0/+1
|
* Clarifying Entry.selection_present's docstring.Guilherme Polo2009-08-141-1/+2
|
* Issue #1135: Add the XView and YView mix-ins to avoid duplicatingGuilherme Polo2009-08-143-131/+51
| | | | the xview* and yview* methods.
* Issue #3926: Fix the usage of the new showwarnings and formatwarning.Guilherme Polo2009-08-142-15/+16
|
* Issue #3344: Replace itertools.count by enumerate.Guilherme Polo2009-08-141-3/+2
|
* Expat could crash if given the wrong kind of input by never stopping itsBrett Cannon2009-08-131-1/+20
| | | | | | tokenizing step. Thanks to Ivan Krstić for the patch.
* Fix issue1628205: Socket file objects returned by socket.socket.makefile() nowGregory P. Smith2009-08-132-13/+128
| | | | | properly handles EINTR within the read, readline, write & flush methods. The socket.sendall() method now properly handles interrupted system calls.
* Issue #6629: Fix a data corruption issue in the new `io` package, which couldAntoine Pitrou2009-08-061-0/+20
| | | | | | | | occur when writing to a BufferedRandom object (e.g. a file opened in "rb+" or "wb+" mode) after having buffered a certain amount of data for reading. This bug was not present in the pure Python implementation. Yes, this is a serious issue.
* Fix issue 4660: spurious task_done errors in multiprocessing, remove doc ↵Jesse Noller2009-08-061-3/+16
| | | | note for from_address
* Typo.Guilherme Polo2009-08-051-1/+1
|
* Easier reference to find (at least while svn continues being used).Guilherme Polo2009-08-051-1/+1
|