| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix for issue 4937 | Ronald Oussoren | 2009-09-06 | 1 | -1/+0 |
| | | |||||
| * | Issue #6846: bytearray.pop was returning ints in the range [-128, 128) | Mark Dickinson | 2009-09-06 | 1 | -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 Oussoren | 2009-09-06 | 5 | -43/+54 |
| | | |||||
| * | Fixes issue #6838: use a list to accumulate the value instead of repeatedly ↵ | Chris Withers | 2009-09-04 | 1 | -12/+9 |
| | | | | | concatenating strings. | ||||
| * | #5101: add back tests to test_funcattrs that were lost during unittest ↵ | Georg Brandl | 2009-09-04 | 1 | -61/+119 |
| | | | | | conversion, and make some PEP8 cleanups. | ||||
| * | Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments ↵ | Georg Brandl | 2009-09-04 | 1 | -1/+3 |
| | | | | | as documented. | ||||
| * | Issue #2666: Handle BROWSER environment variable properly for unknown ↵ | Georg Brandl | 2009-09-04 | 1 | -1/+3 |
| | | | | | browser names in the webbrowser module. | ||||
| * | test_platform fails on OS X Snow Leopard because the UNIX command to get the | Brett Cannon | 2009-09-03 | 1 | -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 version | Armin Rigo | 2009-09-03 | 2 | -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 Rigo | 2009-09-03 | 1 | -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 Rigo | 2009-09-03 | 1 | -0/+11 |
| | | |||||
| * | remove the check that classmethod's argument is a callable | Benjamin Peterson | 2009-09-01 | 1 | -7/+3 |
| | | |||||
| * | #6750: TextIOWrapped could duplicate output when several threads write to it. | Amaury Forgeot d'Arc | 2009-08-29 | 1 | -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äbel | 2009-08-28 | 2 | -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 execution | Benjamin Peterson | 2009-08-28 | 1 | -9/+4 |
| | | |||||
| * | restricted environments are no more | Benjamin Peterson | 2009-08-28 | 2 | -10/+2 |
| | | |||||
| * | Issue #6794: Fix handling of NaNs in Decimal.compare_total and | Mark Dickinson | 2009-08-28 | 2 | -2/+21 |
| | | | | | Decimal.compare_total_mag. | ||||
| * | Issue 6654 | Kristján Valur Jónsson | 2009-08-27 | 2 | -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 6275 | Kristján Valur Jónsson | 2009-08-27 | 2 | -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 6769 | Kristján Valur Jónsson | 2009-08-24 | 1 | -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-20 | 2 | -36/+126 |
| | | |||||
| * | comment typo fix | Gregory P. Smith | 2009-08-20 | 1 | -1/+1 |
| | | |||||
| * | Revert the changes from r74463, they were causing test_xmlrpc to fail. | Gregory P. Smith | 2009-08-19 | 1 | -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 Polo | 2009-08-18 | 1 | -1/+2 |
| | | |||||
| * | Issue #1356969: Add missing info methods in Tix.HList. | Guilherme Polo | 2009-08-18 | 1 | -0/+10 |
| | | |||||
| * | Fixes for Tix.Grid from issue #1522587. | Guilherme Polo | 2009-08-18 | 1 | -3/+6 |
| | | |||||
| * | Issue #1522587: New constants and methods for the Tix.Grid widget. | Guilherme Polo | 2009-08-18 | 1 | -11/+102 |
| | | |||||
| * | Mark the "radio" option of Tix.CheckList as static. | Guilherme Polo | 2009-08-18 | 1 | -1/+1 |
| | | |||||
| * | Issue #1250469: Fix the return value of Tix.PanedWindow.panes. | Guilherme Polo | 2009-08-18 | 1 | -5/+2 |
| | | |||||
| * | Issue #1119673: Do not override Tkinter.Text methods when creating a ↵ | Guilherme Polo | 2009-08-18 | 1 | -1/+4 |
| | | | | | ScrolledText. | ||||
| * | fixed typo | Tarek Ziadé | 2009-08-18 | 1 | -4/+4 |
| | | |||||
| * | added more test coverage for distutils.filelist to prevent regressions when ↵ | Tarek Ziadé | 2009-08-18 | 2 | -5/+45 |
| | | | | | fnmatch or re are changed | ||||
| * | module cleanup | Tarek Ziadé | 2009-08-17 | 1 | -57/+42 |
| | | |||||
| * | fixed how fnmatch.translate is used (since it has changed in r74475 for ↵ | Tarek Ziadé | 2009-08-17 | 2 | -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. Smith | 2009-08-16 | 1 | -33/+33 |
| | | |||||
| * | Add test of file.write(array) extracted from Jython. | Frank Wierzbicki | 2009-08-16 | 1 | -0/+19 |
| | | |||||
| * | Issue 6665: Fix fnmatch to properly match filenames with newlines in them. | Gregory P. Smith | 2009-08-16 | 2 | -2/+9 |
| | | |||||
| * | better col_offsets for "for" statements with tuple unpacking #6704 | Benjamin Peterson | 2009-08-15 | 1 | -1/+8 |
| | | | | | Patch from Frank Wierzbicki. | ||||
| * | Force the http connection to close after any request returned when | Gregory P. Smith | 2009-08-15 | 1 | -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 module | Benjamin Peterson | 2009-08-15 | 1 | -0/+1 |
| | | |||||
| * | Clarifying Entry.selection_present's docstring. | Guilherme Polo | 2009-08-14 | 1 | -1/+2 |
| | | |||||
| * | Issue #1135: Add the XView and YView mix-ins to avoid duplicating | Guilherme Polo | 2009-08-14 | 3 | -131/+51 |
| | | | | | the xview* and yview* methods. | ||||
| * | Issue #3926: Fix the usage of the new showwarnings and formatwarning. | Guilherme Polo | 2009-08-14 | 2 | -15/+16 |
| | | |||||
| * | Issue #3344: Replace itertools.count by enumerate. | Guilherme Polo | 2009-08-14 | 1 | -3/+2 |
| | | |||||
| * | Expat could crash if given the wrong kind of input by never stopping its | Brett Cannon | 2009-08-13 | 1 | -1/+20 |
| | | | | | | | tokenizing step. Thanks to Ivan Krstić for the patch. | ||||
| * | Fix issue1628205: Socket file objects returned by socket.socket.makefile() now | Gregory P. Smith | 2009-08-13 | 2 | -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 could | Antoine Pitrou | 2009-08-06 | 1 | -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 Noller | 2009-08-06 | 1 | -3/+16 |
| | | | | | note for from_address | ||||
| * | Typo. | Guilherme Polo | 2009-08-05 | 1 | -1/+1 |
| | | |||||
| * | Easier reference to find (at least while svn continues being used). | Guilherme Polo | 2009-08-05 | 1 | -1/+1 |
| | | |||||
