Commit Graph

78183 Commits

Author SHA1 Message Date
R David Murray 3eb76fc10b #20155: use fake HTTP method names so windows doesn't hang the tests.
Windows was seeing the 'GET' generated by these tests as invalid and forcibly
closing the socket, causing the test to fail.

Patch by Jeff Allen.
2014-06-24 16:49:24 -04:00
Raymond Hettinger de5170eb15 Issue 21832: Require named tuple inputs to be exact strings 2014-06-24 13:49:24 -07:00
Benjamin Peterson b23eef5895 add Chris Foster 2014-06-23 20:14:46 -07:00
Benjamin Peterson 550b945fd6 avoid overflow with large buffer sizes and/or offsets (closes #21831) 2014-06-23 20:12:27 -07:00
Raymond Hettinger 58eb605ca3 Issue #11974: Add tutorial section on class and instance variables
(Based on a patch from Renee Chu.)
2014-06-23 18:03:21 -07:00
Benjamin Peterson c459755df2 adjust zipfile tests for splitdrive improvements 2014-06-22 20:26:07 -07:00
Raymond Hettinger 008651c56e Display the name not the group itself 2014-06-22 19:45:07 -07:00
Raymond Hettinger f595a127b8 Issue #8343: Named group error msgs did not show the group name. 2014-06-22 19:33:19 -07:00
Benjamin Peterson 3bef935512 fix ntpath.join on UNC-style paths by backporting py3k's splitdrive (closes #21672) 2014-06-22 19:07:38 -07:00
Benjamin Peterson ecb4a1e49a clarify that islink only really works if python knows about symlinks (closes #13143)
Patch from Yayoi Ukai.
2014-06-22 17:59:35 -07:00
Terry Jan Reedy ed6820d395 Issue #21824: Turtledemo 2.7 help menu entries now display help text instead
of help file name.
2014-06-22 02:32:26 -04:00
Terry Jan Reedy 122df1eda4 Issue #21823: Catch turtle.Terminator exceptions in turtledemo.
Add note to demohelp.txt about doing so.
2014-06-22 01:18:48 -04:00
Raymond Hettinger 4575010943 Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks(). 2014-06-21 11:27:36 -07:00
Charles-François Natali 94919a44a2 Fix test_pydoc failure introduced by e89c39125892. Patch by Berker Peksag. 2014-06-20 22:57:19 +01:00
Charles-François Natali 98fbdd6829 Issue #21491: SocketServer: Fix a race condition in child processes reaping. 2014-06-20 22:03:08 +01:00
Terry Jan Reedy 729981861a Issue #21768: fix type in test_pydoc, patch by Claudiu Popa. 2014-06-20 14:59:07 -04:00
Senthil Kumaran 454a5155d2 issue 20091 - index entry for __main__ in runpy docs. 2014-06-20 01:36:58 -07:00
Ezio Melotti 33b810d272 #21690: fix a couple of links in the docs of the re module. Noticed by Julian Gilbey. 2014-06-20 00:47:11 +03:00
Charles-François Natali e4cda6ce21 Merge. 2014-06-19 22:45:09 +01:00
Charles-François Natali cee4f03438 Issue #21810: Backport mmap-based arena allocation failure check. 2014-06-19 22:42:51 +01:00
Antoine Pitrou 077c9564b7 Issue #21722: The distutils "upload" command now exits with a non-zero return code when uploading fails.
Patch by Martin Dengler.
2014-06-18 23:07:46 -04:00
Terry Jan Reedy fa3b9cc7c8 Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar. 2014-06-17 16:35:14 -04:00
Ned Deily 24b8209a4e Issue #21789: fix broken link (reported by Jan Varho) 2014-06-17 12:24:53 -07:00
Benjamin Peterson a48162a8b8 add Ammar Brohi for running ssllab's test on python.org and reporting a problem 2014-06-17 09:44:55 -07:00
Benjamin Peterson 3232384e1e revert tstate_delete_common, since it's pretty much wrong 2014-06-17 00:34:14 -07:00
Benjamin Peterson 81669697aa avoid a deadlock with the interpreter head lock and the GIL during finalization 2014-06-16 23:07:49 -07:00
Benjamin Peterson 1c78e6d96f check if the thread is finalizing after retaking the GIL 2014-06-16 22:59:07 -07:00
Benjamin Peterson c0bc4eff50 avoid crashes and lockups from daemon threads during interpreter shutdown (#1856) 2014-06-16 19:39:18 -07:00
Terry Jan Reedy 1a6561e2f5 Add Idle news entries (plus whitespace fix from other entries). 2014-06-16 19:24:22 -04:00
Terry Jan Reedy 7c5318f583 Issue #21686: add unittest for idlelib.HyperParser. Original patch by Saimadhav
Heblikar.
2014-06-16 19:00:54 -04:00
Zachary Ware 487a143c58 Fix typo reported by Jesse W on docs@ 2014-06-16 11:13:01 -05:00
Jesus Cea ee2cb3fa9b Closes #21759: URL Typo in Documentation FAQ 2014-06-16 14:11:14 +02:00
Terry Jan Reedy 9f2dcd227c Issue #19362: Tweek len() doc and docstring to expand the indicated range of
arguments. Original patch by Gareth Rees.
2014-06-16 03:05:30 -04:00
Terry Jan Reedy 357d312fdc whitespace 2014-06-16 02:40:08 -04:00
Terry Jan Reedy 633c33b20e Issue #21686: idlelib/HyperParser.py - Update docstrings and comments and
replace \ line contiuation. Tested against nearly done test_hyperparser.py.
2014-06-16 02:33:18 -04:00
Benjamin Peterson 87d0136416 clarify when the list of subdirectories is read (closes #13779) 2014-06-15 20:51:12 -07:00
Benjamin Peterson efda558b60 document IOBase.__del__'s behavior (closes #21764)
Patch from Nikolaus Rath.
2014-06-14 18:51:34 -07:00
Benjamin Peterson 8d24d77c63 url unquote the path before checking if it refers to a CGI script (closes #21766) 2014-06-14 18:36:29 -07:00
Vinay Sajip ce817cb36d Issue #21742: Set stream to None after closing. 2014-06-14 10:19:54 +01:00
R David Murray ec92b4a9fa #5904: Add sentence about the encoding of strftime's result. 2014-06-13 17:23:34 -04:00
Zachary Ware 04349c602c Issue #19493: Backport 6f63fff5c120 2014-06-13 14:40:16 -05:00
Terry Jan Reedy 925c6ad85b Issue #21726: Remove unnecessary and contextually wrong line. 2014-06-13 14:57:44 -04:00
Terry Jan Reedy ba301dee32 Issue #12387: Add missing upper(lower)case versions of default Windows key
bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
2014-06-12 01:03:01 -04:00
Senthil Kumaran df0e8f91c8 #21693 - Fix the broken link for pylons project. 2014-06-11 06:18:43 -07:00
Terry Jan Reedy c5767a6336 Issue #21695: Catch AttributeError created when user closes grep output window
while still being written to. With no console, this closed Idle.
Also add missing import and a few other changes.
2014-06-10 02:49:29 -04:00
Terry Jan Reedy 1d6a0c47db Closes Issue 21659: Improve Idle calltips for *args, **kwargs in 2.7, where actual
names are not available. Initial patch by Serhiy Storchaka.
2014-06-09 20:02:18 -04:00
R David Murray dd35484662 #20903: clarify what happens when an smtp connection timeout occurs.
Patch by Milan Oberkirch.
2014-06-09 16:40:47 -04:00
Serhiy Storchaka 05b0a1be37 Issue #21310: Fixed possible resource leak in failed open(). 2014-06-09 13:32:08 +03:00
Zachary Ware 6453a01a0c Issue #21683: Add Tix build to the Windows buildbot scripts. 2014-06-08 14:28:13 -05:00
Terry Jan Reedy 2ce98f8c86 whitespace 2014-06-08 14:57:18 -04:00