summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Issue #6181: Fixed minor bugs in tkinter.Listbox methods:Serhiy Storchaka2014-06-024-29/+60
| | | | | | | | bbox(), curselection() and get().
| * Issue #6181: Fixed errors in tkinter.Listbox docstrings.Serhiy Storchaka2014-06-021-4/+4
| | | | | | | | Based on patch by Guilherme Polo.
| * Updated logging HOWTO section on optimization.Vinay Sajip2014-06-011-0/+14
| |
| * Issue #19656: Running Python with the -3 option now also warns aboutSerhiy Storchaka2014-06-013-5/+25
| | | | | | | | non-ascii bytes literals.
| * Issue #21605: Added tests for Tkinter images.Serhiy Storchaka2014-06-012-0/+341
| |
| * Added missed calls of splitlist().Serhiy Storchaka2014-06-013-9/+7
| |
| * Issue #21477: Update htest docstring and remove extraneous differences betweenTerry Jan Reedy2014-06-011-9/+17
| | | | | | | | 2.7 and 3.4. Original patch by Saimadhav Heblikar.
| * post 2.7.7 version bumpBenjamin Peterson2014-05-311-1/+1
| |
| * backport hashlib.pbkdf2_hmac per PEP 466 (closes #21304)Benjamin Peterson2014-05-315-2/+403
| | | | | | | | Backport by Alex Gaynor.
| * give the correct fixer name (closes #21604)Benjamin Peterson2014-05-311-1/+1
| |
| * merge 2.7.7 release branchBenjamin Peterson2014-05-317-8/+22
| |\
| | * Added tag v2.7.7 for changeset f89216059edfBenjamin Peterson2014-05-311-0/+1
| | |
| | * fix news headerv2.7.7Benjamin Peterson2014-05-311-2/+2
| | |
| | * bump to 2.7.7 finalBenjamin Peterson2014-05-316-8/+22
| | |
| | * openssl requires nasm (#21462)Benjamin Peterson2014-05-311-2/+2
| | |
| | * Issue #21462 PEP 466: upgrade OpenSSL in the Python 2.7 Windows buildsSteve Dower2014-05-302-2/+4
| | |
| * | openssl requires nasm (#21462)Benjamin Peterson2014-05-311-2/+2
| | |
| * | Issue #21572: Change license command to fallback to generic license URL.Ned Deily2014-05-311-1/+1
| | |
| * | Issue #21593: (from StackOverflow) minor doc clarification for re.search.Terry Jan Reedy2014-05-301-1/+1
| | |
| * | Merged upstream changes.Vinay Sajip2014-05-302-2/+4
| |\ \
| | * | Issue #21462 PEP 466: upgrade OpenSSL in the Python 2.7 Windows buildsSteve Dower2014-05-302-2/+4
| | | |
| * | | Issue #21608: Updated HTTPHandler documentation.Vinay Sajip2014-05-302-4/+18
| |/ /
| * | Fixed possible integer overflow in getint, getdouble and getboolean too ↵Serhiy Storchaka2014-05-301-0/+3
| | | | | | | | | | | | (issue #21552).
| * | Issue #21552: Fixed possible integer overflow of too long string lengths inSerhiy Storchaka2014-05-303-2/+86
| | | | | | | | | | | | the Tkinter module on 64-bit platforms.
| * | Add tests for getint, getdouble and getboolean methods of the tkapp object.Serhiy Storchaka2014-05-301-0/+47
| | |
| * | Fix issue #14315: The zipfile module now ignores extra fields in the centralGregory P. Smith2014-05-303-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 Reedy2014-05-295-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 Storchaka2014-05-283-36/+56
| | |
| * | Issue #21493: Added test for ntpath.expanduser(). Original patch bySerhiy Storchaka2014-05-282-0/+38
| | | | | | | | | | | | Claudiu Popa.
| * | Issue #10203: sqlite3.Row now truly supports sequence protocol. In particularSerhiy Storchaka2014-05-284-5/+60
| | | | | | | | | | | | it supports reverse() and negative indices. Original patch by Claudiu Popa.
| * | Issue #21477: Add htests for Search and Replace dialogs.Terry Jan Reedy2014-05-274-12/+70
| | | | | | | | | | | | Patch by Saimadhav Heblikar.
| * | Issue #21477: Idle htest: modify run; add more tests.Terry Jan Reedy2014-05-279-97/+159
| | | | | | | | | | | | Patch by Saimadhav Heblikar. 2.7 backport of 90829, d7eea8f608c2.
| * | Issue 21575: Show list.sort() arguments in the tutorial.Raymond Hettinger2014-05-271-2/+3
| | |
| * | remove list of example incompatibilities (closes #21434)Benjamin Peterson2014-05-261-12/+3
| | |
| * | remove tab (closes #21587)Benjamin Peterson2014-05-261-1/+1
| | |
| * | fix typo in variable name (closes #21586)Benjamin Peterson2014-05-261-1/+1
| | |
| * | Issue #21481: Teach argparse equality tests to return NotImplemented when ↵Raymond Hettinger2014-05-263-0/+13
| | | | | | | | | | | | comparing to unknown types.
| * | Issue 8743: Improve interoperability between sets and the collections.Set ↵Raymond Hettinger2014-05-265-38/+194
| | | | | | | | | | | | abstract base class.
| * | Issue 13355: Make random.triangular degrade gracefully when low == high.Raymond Hettinger2014-05-263-2/+8
| | |
| * | Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok.Serhiy Storchaka2014-05-252-0/+64
| | |
| * | Issue #21477: Idle htest: merge and modify run and runall; add many tests.Terry Jan Reedy2014-05-2418-179/+415
| | | | | | | | | | | | Patch by Saimadhav Heblikar
| * | allow doc archives to be built for versions in the rc stageBenjamin Peterson2014-05-241-2/+3
| | |
| * | Issue #18604: Skip the Tk instantiation test on OS X because it canNed Deily2014-05-241-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 Storchaka2014-05-231-6/+13
| | |
| * | Issue #21522: Added Tkinter tests for Listbox.itemconfigure(),Serhiy Storchaka2014-05-232-0/+184
| | | | | | | | | | | | PanedWindow.paneconfigure(), and Menu.entryconfigure().
| * | Issue #20635: Added tests for Tk geometry managers.Serhiy Storchaka2014-05-233-0/+905
| | |
| * | Issue #21523: Fix over-pessimistic computation of the stack effect of some ↵Antoine Pitrou2014-05-233-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 Reedy2014-05-232-0/+10
| | | | | | | | | | | | Patch prepared by David Harrigan.
| * | Issue 21479: Fix markup for the TarFile.open() classmethod.Raymond Hettinger2014-05-231-1/+1
| | |
| * | Issue 21198: Minor tarfile documentation bug.Raymond Hettinger2014-05-221-1/+1
| | |