summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #11974: Add tutorial section on class and instance variablesRaymond Hettinger2014-06-242-0/+72
| | | | (Based on a patch from Renee Chu.)
* adjust zipfile tests for splitdrive improvementsBenjamin Peterson2014-06-231-4/+4
|
* Display the name not the group itselfRaymond Hettinger2014-06-231-1/+1
|
* Issue #8343: Named group error msgs did not show the group name.Raymond Hettinger2014-06-232-3/+9
|
* fix ntpath.join on UNC-style paths by backporting py3k's splitdrive (closes ↵Benjamin Peterson2014-06-233-13/+68
| | | | #21672)
* clarify that islink only really works if python knows about symlinks (closes ↵Benjamin Peterson2014-06-231-1/+1
| | | | | | #13143) Patch from Yayoi Ukai.
* Issue #21824: Turtledemo 2.7 help menu entries now display help text insteadTerry Jan Reedy2014-06-221-11/+15
| | | | of help file name.
* Issue #21823: Catch turtle.Terminator exceptions in turtledemo.Terry Jan Reedy2014-06-223-25/+37
| | | | Add note to demohelp.txt about doing so.
* Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks().Raymond Hettinger2014-06-213-2/+15
|
* Fix test_pydoc failure introduced by e89c39125892. Patch by Berker Peksag.Charles-François Natali2014-06-201-2/+4
|
* Issue #21491: SocketServer: Fix a race condition in child processes reaping.Charles-François Natali2014-06-202-28/+32
|
* Issue #21768: fix type in test_pydoc, patch by Claudiu Popa.Terry Jan Reedy2014-06-201-1/+1
|
* issue 20091 - index entry for __main__ in runpy docs.Senthil Kumaran2014-06-201-0/+6
|
* #21690: fix a couple of links in the docs of the re module. Noticed by ↵Ezio Melotti2014-06-191-2/+2
| | | | Julian Gilbey.
* Merge.Charles-François Natali2014-06-19361-3753/+9270
|\
| * Issue #21722: The distutils "upload" command now exits with a non-zero ↵Antoine Pitrou2014-06-194-8/+22
| | | | | | | | | | | | return code when uploading fails. Patch by Martin Dengler.
| * Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar.Terry Jan Reedy2014-06-172-4/+131
| |
| * Issue #21789: fix broken link (reported by Jan Varho)Ned Deily2014-06-171-1/+1
| |
| * add Ammar Brohi for running ssllab's test on python.org and reporting a problemBenjamin Peterson2014-06-171-0/+1
| |
| * revert tstate_delete_common, since it's pretty much wrongBenjamin Peterson2014-06-171-8/+1
| |
| * avoid a deadlock with the interpreter head lock and the GIL during finalizationBenjamin Peterson2014-06-171-1/+8
| |
| * check if the thread is finalizing after retaking the GILBenjamin Peterson2014-06-171-0/+7
| |
| * avoid crashes and lockups from daemon threads during interpreter shutdown ↵Benjamin Peterson2014-06-176-3/+65
| | | | | | | | (#1856)
| * Add Idle news entries (plus whitespace fix from other entries).Terry Jan Reedy2014-06-161-2/+11
| |
| * Issue #21686: add unittest for idlelib.HyperParser. Original patch by SaimadhavTerry Jan Reedy2014-06-162-3/+199
| | | | | | | | Heblikar.
| * Fix typo reported by Jesse W on docs@Zachary Ware2014-06-161-1/+2
| |
| * Closes #21759: URL Typo in Documentation FAQJesus Cea2014-06-161-1/+1
| |
| * Issue #19362: Tweek len() doc and docstring to expand the indicated range ofTerry Jan Reedy2014-06-162-2/+3
| | | | | | | | arguments. Original patch by Gareth Rees.
| * whitespaceTerry Jan Reedy2014-06-161-1/+1
| |
| * Issue #21686: idlelib/HyperParser.py - Update docstrings and comments andTerry Jan Reedy2014-06-161-80/+84
| | | | | | | | replace \ line contiuation. Tested against nearly done test_hyperparser.py.
| * clarify when the list of subdirectories is read (closes #13779)Benjamin Peterson2014-06-162-8/+12
| |
| * document IOBase.__del__'s behavior (closes #21764)Benjamin Peterson2014-06-151-0/+6
| | | | | | | | Patch from Nikolaus Rath.
| * url unquote the path before checking if it refers to a CGI script (closes ↵Benjamin Peterson2014-06-153-1/+9
| | | | | | | | #21766)
| * Issue #21742: Set stream to None after closing.Vinay Sajip2014-06-141-0/+1
| |
| * #5904: Add sentence about the encoding of strftime's result.R David Murray2014-06-131-1/+3
| |
| * Issue #19493: Backport 6f63fff5c120Zachary Ware2014-06-1332-775/+745
| |
| * Issue #21726: Remove unnecessary and contextually wrong line.Terry Jan Reedy2014-06-131-3/+0
| |
| * Issue #12387: Add missing upper(lower)case versions of default Windows keyTerry Jan Reedy2014-06-121-14/+14
| | | | | | | | bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
| * #21693 - Fix the broken link for pylons project.Senthil Kumaran2014-06-111-1/+1
| |
| * Issue #21695: Catch AttributeError created when user closes grep output windowTerry Jan Reedy2014-06-101-23/+31
| | | | | | | | | | while still being written to. With no console, this closed Idle. Also add missing import and a few other changes.
| * Closes Issue 21659: Improve Idle calltips for *args, **kwargs in 2.7, where ↵Terry Jan Reedy2014-06-102-9/+21
| | | | | | | | | | | | actual names are not available. Initial patch by Serhiy Storchaka.
| * #20903: clarify what happens when an smtp connection timeout occurs.R David Murray2014-06-091-2/+4
| | | | | | | | Patch by Milan Oberkirch.
| * Issue #21310: Fixed possible resource leak in failed open().Serhiy Storchaka2014-06-094-39/+75
| |
| * Issue #21683: Add Tix build to the Windows buildbot scripts.Zachary Ware2014-06-083-0/+18
| |
| * whitespaceTerry Jan Reedy2014-06-081-1/+1
| |
| * Issue #21682: Replace EditorWindow with mock to eliminate memory leaks.Terry Jan Reedy2014-06-081-3/+10
| |\ | | | | | | | | | Patch by Saimadhav Heblikar. (2 head merge)
| | * Issue #21682: Replace EditorWindow with mock to eliminate memory leaks.Terry Jan Reedy2014-06-071-3/+10
| | | | | | | | | | | | Patch by Saimadhav Heblikar.
| * | make sure the builtin help function doesn't fail when sys.stdin is not a ↵Benjamin Peterson2014-06-083-0/+13
| | | | | | | | | | | | | | | | | | valid file (closes #11709) Original patch by Amaury Forgeot d'Arc with a test by bdettmer.
| * | backed out 86ba41b7bb46 (#18910) for test breakageBenjamin Peterson2014-06-081-35/+36
| | |
| * | document TokenError and unclosed expression behavior (closes #12063)Benjamin Peterson2014-06-082-0/+19
| | | | | | | | | | | | Patch by Amandine Lee.