summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Issue #18592: Make unittest for SearchDialogBase work on all tk versions.Terry Jan Reedy2014-07-111-4/+4
|
* #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav Heblikar.Terry Jan Reedy2014-07-113-12/+145
|
* Issue #21940: add docstrings to idlelib.WidgetRedirector.Terry Jan Reedy2014-07-101-18/+59
|
* #21945: fix typo in Cookie module docstring.Ezio Melotti2014-07-091-1/+1
|
* Issue #21881: Just omit tests for platform-specific NaN representation in ↵Serhiy Storchaka2014-07-071-6/+2
| | | | test_tcl.
* Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaNSerhiy Storchaka2014-07-071-6/+6
| | | | representations (on mips and m68k platforms).
* Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compilerNed Deily2014-07-062-1/+23
| | | | due to possible uninitialized _config_vars. Original patch by Alex Gaynor.
* Issue #21151: Fixed a segfault in the _winreg module.Zachary Ware2014-07-031-1/+14
| | | | | | | When ``None`` was passed as a ``REG_BINARY`` value to SetValueEx, PyMem_DEL was called on an uninitialized buffer. Patch by John Ehresman. (Also an incidental typo fix in a comment in test_winreg)
* Fix guidance for subclassing collections.Set()Raymond Hettinger2014-07-021-1/+1
|
* Issue #19870: BaseCookie now parses 'secure' and 'httponly' flags.Berker Peksag2014-07-022-3/+57
| | | | Backport of issue #16611.
* More idlelib cleanup inspired by pyflakes.Terry Jan Reedy2014-07-023-7/+5
|
* Delete a few unused names suggested by pyflakes.Terry Jan Reedy2014-07-014-8/+9
|
* Issue #18592: Refactor 2 SearchDialogBase.create_(option/other)_buttons methodsTerry Jan Reedy2014-07-012-124/+70
| | | | | | to remove duplication and return info for tests. Rewrite corresponding tests. Test_create_option_buttons was not testing anything because of buggy comparisons. Use Python subscripting to get widget options.
* whitespaceTerry Jan Reedy2014-07-011-1/+1
|
* Issue #18592: Add unittests for SearchDialogBase. Patch by Phil Webster.Terry Jan Reedy2014-06-302-10/+213
|
* Issue #21882: In turtle demos, remove module scope gui and sys calls byTerry Jan Reedy2014-06-301-1/+1
| | | | moving them to the module's main function.
* bump to 2.7.8v2.7.8Benjamin Peterson2014-06-302-2/+2
|
* update pydoc-topicsBenjamin Peterson2014-06-301-2/+2
|
* add a test for access errors from OpenKey (closes #21871)Benjamin Peterson2014-06-291-0/+17
| | | | Patch from Vladimir Iofik.
* don't allow unicode into type_map on Windows (closes #21652)Benjamin Peterson2014-06-292-16/+37
| | | | Patch from Vladimir Iofik.
* Closes #11279: test_posix and lack of "id -G" support - less noise required? ↵Jesus Cea2014-06-281-1/+1
| | | | (Solaris)
* Issue #21875: Remove vestigial references to Classic Mac OS in os module docs.Ned Deily2014-06-271-1/+1
|
* Issue #18592: For idlelib.SearchDialogBase, edit and add docstrings,Terry Jan Reedy2014-06-261-30/+57
| | | | move two functions next to the functions that use them.
* Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite.Ned Deily2014-06-254-6/+24
|
* Issue #21729: Used the "with" statement in the dbm.dumb module to ensureSerhiy Storchaka2014-06-251-33/+29
| | | | files closing. Patch by Claudiu Popa.
* Issue #19145: Fix handling of negative values for a "times" keyword ↵Raymond Hettinger2014-06-251-0/+9
| | | | | | argument to itertools.repeat()> (Patch contributed by Vajrasky Kok.)
* #20155: use fake HTTP method names so windows doesn't hang the tests.R David Murray2014-06-241-2/+3
| | | | | | | 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.
* Issue 21832: Require named tuple inputs to be exact stringsRaymond Hettinger2014-06-241-0/+3
|
* avoid overflow with large buffer sizes and/or offsets (closes #21831)Benjamin Peterson2014-06-241-0/+6
|
* 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-231-3/+6
|
* fix ntpath.join on UNC-style paths by backporting py3k's splitdrive (closes ↵Benjamin Peterson2014-06-232-13/+66
| | | | #21672)
* Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks().Raymond Hettinger2014-06-212-2/+11
|
* 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-201-28/+30
|
* Issue #21768: fix type in test_pydoc, patch by Claudiu Popa.Terry Jan Reedy2014-06-201-1/+1
|
* Issue #21722: The distutils "upload" command now exits with a non-zero ↵Antoine Pitrou2014-06-192-8/+18
| | | | | | 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
|
* avoid crashes and lockups from daemon threads during interpreter shutdown ↵Benjamin Peterson2014-06-171-0/+43
| | | | (#1856)
* Issue #21686: add unittest for idlelib.HyperParser. Original patch by SaimadhavTerry Jan Reedy2014-06-162-3/+199
| | | | Heblikar.
* 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-161-5/+7
|
* url unquote the path before checking if it refers to a CGI script (closes ↵Benjamin Peterson2014-06-152-1/+6
| | | | #21766)
* Issue #21742: Set stream to None after closing.Vinay Sajip2014-06-141-0/+1
|
* Issue #19493: Backport 6f63fff5c120Zachary Ware2014-06-1331-775/+742
|
* 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.
* 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.