Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #11974: Add tutorial section on class and instance variables | Raymond Hettinger | 2014-06-24 | 2 | -0/+72 |
| | | | | (Based on a patch from Renee Chu.) | ||||
* | adjust zipfile tests for splitdrive improvements | Benjamin Peterson | 2014-06-23 | 1 | -4/+4 |
| | |||||
* | Display the name not the group itself | Raymond Hettinger | 2014-06-23 | 1 | -1/+1 |
| | |||||
* | Issue #8343: Named group error msgs did not show the group name. | Raymond Hettinger | 2014-06-23 | 2 | -3/+9 |
| | |||||
* | fix ntpath.join on UNC-style paths by backporting py3k's splitdrive (closes ↵ | Benjamin Peterson | 2014-06-23 | 3 | -13/+68 |
| | | | | #21672) | ||||
* | clarify that islink only really works if python knows about symlinks (closes ↵ | Benjamin Peterson | 2014-06-23 | 1 | -1/+1 |
| | | | | | | #13143) Patch from Yayoi Ukai. | ||||
* | Issue #21824: Turtledemo 2.7 help menu entries now display help text instead | Terry Jan Reedy | 2014-06-22 | 1 | -11/+15 |
| | | | | of help file name. | ||||
* | Issue #21823: Catch turtle.Terminator exceptions in turtledemo. | Terry Jan Reedy | 2014-06-22 | 3 | -25/+37 |
| | | | | Add note to demohelp.txt about doing so. | ||||
* | Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks(). | Raymond Hettinger | 2014-06-21 | 3 | -2/+15 |
| | |||||
* | Fix test_pydoc failure introduced by e89c39125892. Patch by Berker Peksag. | Charles-François Natali | 2014-06-20 | 1 | -2/+4 |
| | |||||
* | Issue #21491: SocketServer: Fix a race condition in child processes reaping. | Charles-François Natali | 2014-06-20 | 2 | -28/+32 |
| | |||||
* | Issue #21768: fix type in test_pydoc, patch by Claudiu Popa. | Terry Jan Reedy | 2014-06-20 | 1 | -1/+1 |
| | |||||
* | issue 20091 - index entry for __main__ in runpy docs. | Senthil Kumaran | 2014-06-20 | 1 | -0/+6 |
| | |||||
* | #21690: fix a couple of links in the docs of the re module. Noticed by ↵ | Ezio Melotti | 2014-06-19 | 1 | -2/+2 |
| | | | | Julian Gilbey. | ||||
* | Merge. | Charles-François Natali | 2014-06-19 | 361 | -3753/+9270 |
|\ | |||||
| * | Issue #21722: The distutils "upload" command now exits with a non-zero ↵ | Antoine Pitrou | 2014-06-19 | 4 | -8/+22 |
| | | | | | | | | | | | | return code when uploading fails. Patch by Martin Dengler. | ||||
| * | Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar. | Terry Jan Reedy | 2014-06-17 | 2 | -4/+131 |
| | | |||||
| * | Issue #21789: fix broken link (reported by Jan Varho) | Ned Deily | 2014-06-17 | 1 | -1/+1 |
| | | |||||
| * | add Ammar Brohi for running ssllab's test on python.org and reporting a problem | Benjamin Peterson | 2014-06-17 | 1 | -0/+1 |
| | | |||||
| * | revert tstate_delete_common, since it's pretty much wrong | Benjamin Peterson | 2014-06-17 | 1 | -8/+1 |
| | | |||||
| * | avoid a deadlock with the interpreter head lock and the GIL during finalization | Benjamin Peterson | 2014-06-17 | 1 | -1/+8 |
| | | |||||
| * | check if the thread is finalizing after retaking the GIL | Benjamin Peterson | 2014-06-17 | 1 | -0/+7 |
| | | |||||
| * | avoid crashes and lockups from daemon threads during interpreter shutdown ↵ | Benjamin Peterson | 2014-06-17 | 6 | -3/+65 |
| | | | | | | | | (#1856) | ||||
| * | Add Idle news entries (plus whitespace fix from other entries). | Terry Jan Reedy | 2014-06-16 | 1 | -2/+11 |
| | | |||||
| * | Issue #21686: add unittest for idlelib.HyperParser. Original patch by Saimadhav | Terry Jan Reedy | 2014-06-16 | 2 | -3/+199 |
| | | | | | | | | Heblikar. | ||||
| * | Fix typo reported by Jesse W on docs@ | Zachary Ware | 2014-06-16 | 1 | -1/+2 |
| | | |||||
| * | Closes #21759: URL Typo in Documentation FAQ | Jesus Cea | 2014-06-16 | 1 | -1/+1 |
| | | |||||
| * | Issue #19362: Tweek len() doc and docstring to expand the indicated range of | Terry Jan Reedy | 2014-06-16 | 2 | -2/+3 |
| | | | | | | | | arguments. Original patch by Gareth Rees. | ||||
| * | whitespace | Terry Jan Reedy | 2014-06-16 | 1 | -1/+1 |
| | | |||||
| * | Issue #21686: idlelib/HyperParser.py - Update docstrings and comments and | Terry Jan Reedy | 2014-06-16 | 1 | -80/+84 |
| | | | | | | | | replace \ line contiuation. Tested against nearly done test_hyperparser.py. | ||||
| * | clarify when the list of subdirectories is read (closes #13779) | Benjamin Peterson | 2014-06-16 | 2 | -8/+12 |
| | | |||||
| * | document IOBase.__del__'s behavior (closes #21764) | Benjamin Peterson | 2014-06-15 | 1 | -0/+6 |
| | | | | | | | | Patch from Nikolaus Rath. | ||||
| * | url unquote the path before checking if it refers to a CGI script (closes ↵ | Benjamin Peterson | 2014-06-15 | 3 | -1/+9 |
| | | | | | | | | #21766) | ||||
| * | Issue #21742: Set stream to None after closing. | Vinay Sajip | 2014-06-14 | 1 | -0/+1 |
| | | |||||
| * | #5904: Add sentence about the encoding of strftime's result. | R David Murray | 2014-06-13 | 1 | -1/+3 |
| | | |||||
| * | Issue #19493: Backport 6f63fff5c120 | Zachary Ware | 2014-06-13 | 32 | -775/+745 |
| | | |||||
| * | Issue #21726: Remove unnecessary and contextually wrong line. | Terry Jan Reedy | 2014-06-13 | 1 | -3/+0 |
| | | |||||
| * | Issue #12387: Add missing upper(lower)case versions of default Windows key | Terry Jan Reedy | 2014-06-12 | 1 | -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 Kumaran | 2014-06-11 | 1 | -1/+1 |
| | | |||||
| * | Issue #21695: Catch AttributeError created when user closes grep output window | Terry Jan Reedy | 2014-06-10 | 1 | -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 Reedy | 2014-06-10 | 2 | -9/+21 |
| | | | | | | | | | | | | actual names are not available. Initial patch by Serhiy Storchaka. | ||||
| * | #20903: clarify what happens when an smtp connection timeout occurs. | R David Murray | 2014-06-09 | 1 | -2/+4 |
| | | | | | | | | Patch by Milan Oberkirch. | ||||
| * | Issue #21310: Fixed possible resource leak in failed open(). | Serhiy Storchaka | 2014-06-09 | 4 | -39/+75 |
| | | |||||
| * | Issue #21683: Add Tix build to the Windows buildbot scripts. | Zachary Ware | 2014-06-08 | 3 | -0/+18 |
| | | |||||
| * | whitespace | Terry Jan Reedy | 2014-06-08 | 1 | -1/+1 |
| | | |||||
| * | Issue #21682: Replace EditorWindow with mock to eliminate memory leaks. | Terry Jan Reedy | 2014-06-08 | 1 | -3/+10 |
| |\ | | | | | | | | | | Patch by Saimadhav Heblikar. (2 head merge) | ||||
| | * | Issue #21682: Replace EditorWindow with mock to eliminate memory leaks. | Terry Jan Reedy | 2014-06-07 | 1 | -3/+10 |
| | | | | | | | | | | | | Patch by Saimadhav Heblikar. | ||||
| * | | make sure the builtin help function doesn't fail when sys.stdin is not a ↵ | Benjamin Peterson | 2014-06-08 | 3 | -0/+13 |
| | | | | | | | | | | | | | | | | | | valid file (closes #11709) Original patch by Amaury Forgeot d'Arc with a test by bdettmer. | ||||
| * | | backed out 86ba41b7bb46 (#18910) for test breakage | Benjamin Peterson | 2014-06-08 | 1 | -35/+36 |
| | | | |||||
| * | | document TokenError and unclosed expression behavior (closes #12063) | Benjamin Peterson | 2014-06-08 | 2 | -0/+19 |
| | | | | | | | | | | | | Patch by Amandine Lee. |