Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Issue #6181: Fixed minor bugs in tkinter.Listbox methods: | Serhiy Storchaka | 2014-06-02 | 4 | -29/+60 | |
| | | | | | | | | bbox(), curselection() and get(). | |||||
| * | Issue #6181: Fixed errors in tkinter.Listbox docstrings. | Serhiy Storchaka | 2014-06-02 | 1 | -4/+4 | |
| | | | | | | | | Based on patch by Guilherme Polo. | |||||
| * | Updated logging HOWTO section on optimization. | Vinay Sajip | 2014-06-01 | 1 | -0/+14 | |
| | | ||||||
| * | Issue #19656: Running Python with the -3 option now also warns about | Serhiy Storchaka | 2014-06-01 | 3 | -5/+25 | |
| | | | | | | | | non-ascii bytes literals. | |||||
| * | Issue #21605: Added tests for Tkinter images. | Serhiy Storchaka | 2014-06-01 | 2 | -0/+341 | |
| | | ||||||
| * | Added missed calls of splitlist(). | Serhiy Storchaka | 2014-06-01 | 3 | -9/+7 | |
| | | ||||||
| * | Issue #21477: Update htest docstring and remove extraneous differences between | Terry Jan Reedy | 2014-06-01 | 1 | -9/+17 | |
| | | | | | | | | 2.7 and 3.4. Original patch by Saimadhav Heblikar. | |||||
| * | post 2.7.7 version bump | Benjamin Peterson | 2014-05-31 | 1 | -1/+1 | |
| | | ||||||
| * | backport hashlib.pbkdf2_hmac per PEP 466 (closes #21304) | Benjamin Peterson | 2014-05-31 | 5 | -2/+403 | |
| | | | | | | | | Backport by Alex Gaynor. | |||||
| * | give the correct fixer name (closes #21604) | Benjamin Peterson | 2014-05-31 | 1 | -1/+1 | |
| | | ||||||
| * | merge 2.7.7 release branch | Benjamin Peterson | 2014-05-31 | 7 | -8/+22 | |
| |\ | ||||||
| | * | Added tag v2.7.7 for changeset f89216059edf | Benjamin Peterson | 2014-05-31 | 1 | -0/+1 | |
| | | | ||||||
| | * | fix news headerv2.7.7 | Benjamin Peterson | 2014-05-31 | 1 | -2/+2 | |
| | | | ||||||
| | * | bump to 2.7.7 final | Benjamin Peterson | 2014-05-31 | 6 | -8/+22 | |
| | | | ||||||
| | * | openssl requires nasm (#21462) | Benjamin Peterson | 2014-05-31 | 1 | -2/+2 | |
| | | | ||||||
| | * | Issue #21462 PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds | Steve Dower | 2014-05-30 | 2 | -2/+4 | |
| | | | ||||||
| * | | openssl requires nasm (#21462) | Benjamin Peterson | 2014-05-31 | 1 | -2/+2 | |
| | | | ||||||
| * | | Issue #21572: Change license command to fallback to generic license URL. | Ned Deily | 2014-05-31 | 1 | -1/+1 | |
| | | | ||||||
| * | | Issue #21593: (from StackOverflow) minor doc clarification for re.search. | Terry Jan Reedy | 2014-05-30 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merged upstream changes. | Vinay Sajip | 2014-05-30 | 2 | -2/+4 | |
| |\ \ | ||||||
| | * | | Issue #21462 PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds | Steve Dower | 2014-05-30 | 2 | -2/+4 | |
| | | | | ||||||
| * | | | Issue #21608: Updated HTTPHandler documentation. | Vinay Sajip | 2014-05-30 | 2 | -4/+18 | |
| |/ / | ||||||
| * | | Fixed possible integer overflow in getint, getdouble and getboolean too ↵ | Serhiy Storchaka | 2014-05-30 | 1 | -0/+3 | |
| | | | | | | | | | | | | (issue #21552). | |||||
| * | | Issue #21552: Fixed possible integer overflow of too long string lengths in | Serhiy Storchaka | 2014-05-30 | 3 | -2/+86 | |
| | | | | | | | | | | | | the Tkinter module on 64-bit platforms. | |||||
| * | | Add tests for getint, getdouble and getboolean methods of the tkapp object. | Serhiy Storchaka | 2014-05-30 | 1 | -0/+47 | |
| | | | ||||||
| * | | Fix issue #14315: The zipfile module now ignores extra fields in the central | Gregory P. Smith | 2014-05-30 | 3 | -1/+21 | |
| | | | | | | | | | | | | | | | | | | directory that are too short to be parsed instead of letting a struct.unpack error bubble up as this "bad data" appears in many real world zip files in the wild and is ignored by other zip tools. | |||||
| * | | Issue #21477: Add htests for GrepDialog, UndoDelegator, and configDialog. | Terry Jan Reedy | 2014-05-29 | 5 | -19/+109 | |
| | | | | | | | | | | | | Put instructions in a fixed size scrollable Text. Patch by Saimadhav Heblikar. | |||||
| * | | Issue #21402: tkinter.ttk now works when default root window is not set. | Serhiy Storchaka | 2014-05-28 | 3 | -36/+56 | |
| | | | ||||||
| * | | Issue #21493: Added test for ntpath.expanduser(). Original patch by | Serhiy Storchaka | 2014-05-28 | 2 | -0/+38 | |
| | | | | | | | | | | | | Claudiu Popa. | |||||
| * | | Issue #10203: sqlite3.Row now truly supports sequence protocol. In particular | Serhiy Storchaka | 2014-05-28 | 4 | -5/+60 | |
| | | | | | | | | | | | | it supports reverse() and negative indices. Original patch by Claudiu Popa. | |||||
| * | | Issue #21477: Add htests for Search and Replace dialogs. | Terry Jan Reedy | 2014-05-27 | 4 | -12/+70 | |
| | | | | | | | | | | | | Patch by Saimadhav Heblikar. | |||||
| * | | Issue #21477: Idle htest: modify run; add more tests. | Terry Jan Reedy | 2014-05-27 | 9 | -97/+159 | |
| | | | | | | | | | | | | Patch by Saimadhav Heblikar. 2.7 backport of 90829, d7eea8f608c2. | |||||
| * | | Issue 21575: Show list.sort() arguments in the tutorial. | Raymond Hettinger | 2014-05-27 | 1 | -2/+3 | |
| | | | ||||||
| * | | remove list of example incompatibilities (closes #21434) | Benjamin Peterson | 2014-05-26 | 1 | -12/+3 | |
| | | | ||||||
| * | | remove tab (closes #21587) | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 | |
| | | | ||||||
| * | | fix typo in variable name (closes #21586) | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 | |
| | | | ||||||
| * | | Issue #21481: Teach argparse equality tests to return NotImplemented when ↵ | Raymond Hettinger | 2014-05-26 | 3 | -0/+13 | |
| | | | | | | | | | | | | comparing to unknown types. | |||||
| * | | Issue 8743: Improve interoperability between sets and the collections.Set ↵ | Raymond Hettinger | 2014-05-26 | 5 | -38/+194 | |
| | | | | | | | | | | | | abstract base class. | |||||
| * | | Issue 13355: Make random.triangular degrade gracefully when low == high. | Raymond Hettinger | 2014-05-26 | 3 | -2/+8 | |
| | | | ||||||
| * | | Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. | Serhiy Storchaka | 2014-05-25 | 2 | -0/+64 | |
| | | | ||||||
| * | | Issue #21477: Idle htest: merge and modify run and runall; add many tests. | Terry Jan Reedy | 2014-05-24 | 18 | -179/+415 | |
| | | | | | | | | | | | | Patch by Saimadhav Heblikar | |||||
| * | | allow doc archives to be built for versions in the rc stage | Benjamin Peterson | 2014-05-24 | 1 | -2/+3 | |
| | | | ||||||
| * | | Issue #18604: Skip the Tk instantiation test on OS X because it can | Ned Deily | 2014-05-24 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | cause GUI tests to segfault in Cocoa Tk when run under regrtest -j (multiple threads running subprocesses). | |||||
| * | | Fixed new Tkinter tests added in issue #21522 with Tk 8.4. | Serhiy Storchaka | 2014-05-23 | 1 | -6/+13 | |
| | | | ||||||
| * | | Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), | Serhiy Storchaka | 2014-05-23 | 2 | -0/+184 | |
| | | | | | | | | | | | | PanedWindow.paneconfigure(), and Menu.entryconfigure(). | |||||
| * | | Issue #20635: Added tests for Tk geometry managers. | Serhiy Storchaka | 2014-05-23 | 3 | -0/+905 | |
| | | | ||||||
| * | | Issue #21523: Fix over-pessimistic computation of the stack effect of some ↵ | Antoine Pitrou | 2014-05-23 | 3 | -4/+52 | |
| | | | | | | | | | | | | | | | | | | | | | opcodes in the compiler. This also fixes a quadratic compilation time issue noticeable when compiling code with a large number of "and" and "or" operators. | |||||
| * | | Issue #21545: Add .pop example and tweak comment about pure mutation methods. | Terry Jan Reedy | 2014-05-23 | 2 | -0/+10 | |
| | | | | | | | | | | | | Patch prepared by David Harrigan. | |||||
| * | | Issue 21479: Fix markup for the TarFile.open() classmethod. | Raymond Hettinger | 2014-05-23 | 1 | -1/+1 | |
| | | | ||||||
| * | | Issue 21198: Minor tarfile documentation bug. | Raymond Hettinger | 2014-05-22 | 1 | -1/+1 | |
| | | |