Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial | Ned Deily | 2013-12-11 | 1 | -0/+3 |
| | | | | shell window is present. (Original patch by Terry Reedy) | ||||
* | Issue #19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-10 | 1 | -1/+1 |
| | |||||
* | Issue #19928: Implemented a test for repr() of cell objects. | Serhiy Storchaka | 2013-12-10 | 1 | -0/+2 |
| | |||||
* | Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE | Serhiy Storchaka | 2013-12-10 | 1 | -0/+6 |
| | | | | no more hangs. | ||||
* | Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. | Victor Stinner | 2013-12-10 | 1 | -0/+2 |
| | |||||
* | Issue #19099: The struct module now supports Unicode format strings. | Serhiy Storchaka | 2013-12-08 | 1 | -0/+2 |
| | |||||
* | Closes #19878: Fix segfault in bz2 module. | Nadeem Vawda | 2013-12-08 | 1 | -0/+3 |
| | | | | Initial patch by Vajrasky Kok. | ||||
* | Issue #16373: Prevent infinite recursion for ABC Set class comparisons. | Serhiy Storchaka | 2013-12-06 | 1 | -0/+2 |
| | |||||
* | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵ | Antoine Pitrou | 2013-12-05 | 1 | -0/+3 |
| | | | | pickle module. | ||||
* | Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. | Tim Peters | 2013-12-04 | 1 | -0/+4 |
| | | | | Grafted from c80083ad142d. | ||||
* | Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle. | Alexandre Vassalotti | 2013-12-01 | 1 | -3/+0 |
| | |||||
* | Issue #6477: Added pickling support for singletons and their types. | Alexandre Vassalotti | 2013-12-01 | 1 | -0/+3 |
| | |||||
* | Fix typo in Misc/NEWS. | Alexandre Vassalotti | 2013-11-30 | 1 | -2/+2 |
| | |||||
* | Issue #16231: Allow false values other than None to be used as persistent IDs. | Alexandre Vassalotti | 2013-11-30 | 1 | -0/+5 |
| | |||||
* | Issue #19595: Re-enable a long-disabled test in test_winsound | Zachary Ware | 2013-11-28 | 1 | -0/+2 |
| | |||||
* | Issue #19795: Improved markup of True/False constants. | Serhiy Storchaka | 2013-11-29 | 1 | -0/+5 |
| | |||||
* | Merge heads | Zachary Ware | 2013-11-26 | 2 | -0/+4 |
|\ | |||||
| * | Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with | Serhiy Storchaka | 2013-11-26 | 2 | -0/+4 |
| | | | | | | | | virtual interface. Original patch by Kent Frazier. | ||||
* | | Issue #19588: Fixed tests in test_random that were silently skipped most | Zachary Ware | 2013-11-26 | 2 | -0/+4 |
|/ | | | | of the time. Patch by Julian Gindi. | ||||
* | Issue #11489: JSON decoder now accepts lone surrogates. | Serhiy Storchaka | 2013-11-26 | 1 | -0/+2 |
| | |||||
* | Issue #19638: Raise ValueError instead of crashing when converting billion ↵ | Mark Dickinson | 2013-11-26 | 1 | -0/+3 |
| | | | | character strings to float. | ||||
* | Fix test.test_support.bind_port() to not cause an error when Python was | Gregory P. Smith | 2013-11-25 | 1 | -0/+4 |
| | | | | | compiled on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that new socket option. | ||||
* | Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on | Serhiy Storchaka | 2013-11-21 | 1 | -0/+3 |
| | | | | | | | big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms. | ||||
* | #19449: Handle non-string keys when generating 'fieldnames' error. | R David Murray | 2013-11-19 | 1 | -0/+3 |
| | | | | Backport from 3.3 6e5afeada7ca. | ||||
* | Issue #12853: Correct NameError in distutils upload command. | Jason R. Coombs | 2013-11-16 | 1 | -0/+2 |
| | |||||
* | Issue #19523: Closed FileHandler leak which occurred when delay was set. | Vinay Sajip | 2013-11-15 | 1 | -0/+2 |
| | |||||
* | merge 2.7.6 release branch | Benjamin Peterson | 2013-11-10 | 2 | -2/+2 |
|\ | |||||
| * | 2.7.6 finalv2.7.6 | Benjamin Peterson | 2013-11-10 | 2 | -2/+2 |
| | | |||||
| * | Issue #15663: Revert OS X installer built-in Tcl/Tk support for 2.7.6. | Ned Deily | 2013-11-05 | 1 | -0/+8 |
| | | | | | | | | | | | | | | Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly. | ||||
* | | Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms. | Serhiy Storchaka | 2013-11-09 | 1 | -0/+2 |
| | | |||||
* | | #19480: HTMLParser now accepts all valid start-tag names as defined by the ↵ | Ezio Melotti | 2013-11-07 | 1 | -1/+4 |
| | | | | | | | | HTML5 standard. | ||||
* | | Issue #15663: Revert OS X installer built-in Tcl/Tk support for 2.7.6. | Ned Deily | 2013-11-05 | 1 | -0/+8 |
| | | | | | | | | | | | | | | Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly. | ||||
* | | Remove merge artifact from Misc/NEWS | Nick Coghlan | 2013-11-04 | 1 | -1/+0 |
| | | |||||
* | | Close #17827: Document codecs.encode & codecs.decode | Nick Coghlan | 2013-11-04 | 1 | -0/+4 |
| | | |||||
* | | Issue #17883: Tweak test_tcl testLoadWithUNC to skip the test in the | Zachary Ware | 2013-11-04 | 1 | -0/+4 |
| | | | | | | | | | | event of a permission error on Windows and to properly report other skip conditions. | ||||
* | | Issue #17883: Backport test.test_support._is_gui_available() | Zachary Ware | 2013-11-04 | 1 | -0/+3 |
| | | | | | | | | This should stop the Windows buildbots from hanging on test_ttk_guionly. | ||||
* | | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -0/+2 |
| | | |||||
* | | Issue #6157: Fixed Tkinter.Text.debug(). Original patch by Guilherme Polo. | Serhiy Storchaka | 2013-11-03 | 1 | -0/+2 |
| | | |||||
* | | Issue #6160: The bbox() method of Tkinter.Spinbox now returns a tuple of | Serhiy Storchaka | 2013-11-03 | 1 | -0/+3 |
| | | | | | | | | integers instead of a string. Based on patch by Guilherme Polo. | ||||
* | | Update NEWS | Jason R. Coombs | 2013-11-02 | 1 | -0/+3 |
| | | |||||
* | | Issue #19085: Added basic tests for all tkinter widget options. | Serhiy Storchaka | 2013-11-02 | 1 | -0/+2 |
| | | |||||
* | | merge 2.7.6 release branch | Benjamin Peterson | 2013-11-01 | 1 | -3/+6 |
|\ \ | |/ | |||||
| * | fix xmlcharrefreplace tests on wide build when tests are loaded from .py[co] ↵ | Benjamin Peterson | 2013-11-01 | 1 | -0/+6 |
| | | | | | | | | files. | ||||
* | | Issue #19457: Fixed xmlcharrefreplace tests on wide build when tests are | Serhiy Storchaka | 2013-10-31 | 1 | -0/+6 |
| | | | | | | | | loaded from .py[co] files. | ||||
* | | merge 2.7.6 release branch | Benjamin Peterson | 2013-10-30 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | use the collapsed path in the run_cgi method (closes #19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+5 |
| | | |||||
* | | merge 2.7.6 release branch | Benjamin Peterson | 2013-10-29 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | backport #19426 | Benjamin Peterson | 2013-10-29 | 1 | -0/+11 |
| | | |||||
* | | Issue #19426: Fixed the opening of Python source file with specified encoding. | Serhiy Storchaka | 2013-10-29 | 1 | -0/+5 |
| | | |||||
* | | add 2.7.7 news header | Benjamin Peterson | 2013-10-26 | 1 | -0/+12 |
|/ |