Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #17381: Fixed ranges handling in case-insensitive regular expressions. | Serhiy Storchaka | 2014-10-31 | 2 | -15/+86 |
| | |||||
* | Backported the optimization of compiling charsets in regular expressions | Serhiy Storchaka | 2014-10-31 | 1 | -128/+103 |
| | | | | (issue #19329). This is needed to apply the patch from issue #17381. | ||||
* | Fixed compile error in issue #22410. The _locale module is optional. | Serhiy Storchaka | 2014-10-30 | 1 | -1/+6 |
| | |||||
* | Issue #22410: Module level functions in the re module now cache compiled | Serhiy Storchaka | 2014-10-30 | 2 | -4/+49 |
| | | | | locale-dependent regular expressions taking into account the locale. | ||||
* | Issue #8876: distutils now falls back to copying files when hard linking ↵ | Antoine Pitrou | 2014-10-30 | 2 | -13/+64 |
| | | | | | | doesn't work. This allows use with special filesystems such as VirtualBox shared folders. | ||||
* | Issue #3068: Add Idle extension configuration dialog to Options menu. | Terry Jan Reedy | 2014-10-23 | 6 | -20/+278 |
| | | | | Original patch by Tal Einat. | ||||
* | Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa, | Terry Jan Reedy | 2014-10-18 | 1 | -1/+1 |
| | | | | revised by R. David Murray. | ||||
* | #9351: set_defaults on subparser is no longer ignored if set on parent. | R David Murray | 2014-10-18 | 2 | -1/+15 |
| | | | | | | | | Before, if a default was set on the parent parser, any default for that variable set via set_defaults on a subparser would be ignored. Now the subparser set_defaults is honored. Patch by Jyrki Pullianinen. | ||||
* | Issue #22646: Accept list as well as tuple to support initialisation via ↵ | Vinay Sajip | 2014-10-17 | 1 | -2/+2 |
| | | | | dictConfig(). | ||||
* | Issue #22629: Revise idle_test.htest, mostly docstring. Start revision of | Terry Jan Reedy | 2014-10-17 | 8 | -82/+112 |
| | | | | htests to add # htest # marker for coveragepy and stop tcl errors. | ||||
* | Issue #22628: Increase Treewidge line spacing so lines do not overlap. | Terry Jan Reedy | 2014-10-17 | 1 | -3/+4 |
| | | | | Move test lines up with respect to icons. | ||||
* | Issue #16233: When the module browser is not invoked in an editor window with | Terry Jan Reedy | 2014-10-16 | 1 | -11/+10 |
| | | | | | a filename, pop up the Open Module box. If a module is opened, open a corresponding browser. | ||||
* | Issue #3068: Change 0/1 to False/True so that extension configure dialog can | Terry Jan Reedy | 2014-10-14 | 1 | -58/+60 |
| | | | | | easily recognize and display boolean values as such and recognize changes. Also reformat comments and alphabetize extensions included with Idle. | ||||
* | Issue #22632: replace dead link with version-specific doc link. | Terry Jan Reedy | 2014-10-14 | 1 | -1/+2 |
| | |||||
* | Issue #21855: Fixed the decimal module in unicode disabled build. | Serhiy Storchaka | 2014-10-14 | 2 | -5/+9 |
| | |||||
* | Merge. | Charles-François Natali | 2014-10-13 | 132 | -2148/+6046 |
|\ | |||||
| * | Fixed the test of issue #13664 on platforms without unicode filenames support. | Serhiy Storchaka | 2014-10-13 | 1 | -0/+4 |
| | | |||||
| * | Issue #22614: Don't try to update deleted text. Patch by Serhiy Storchaka. | Terry Jan Reedy | 2014-10-13 | 1 | -0/+3 |
| | | |||||
| * | Change deprecated Exception.message to Exception.args-[0] where the use of | Terry Jan Reedy | 2014-10-13 | 3 | -3/+3 |
| | | | | | | | | .message is not an essential part of the test. | ||||
| * | Issue #13664: GzipFile now supports non-ascii Unicode filenames. | Serhiy Storchaka | 2014-10-12 | 2 | -3/+21 |
| | | |||||
| * | #13096: Fix segfault in CTypes POINTER handling of large values. | R David Murray | 2014-10-12 | 1 | -0/+8 |
| | | | | | | | | Patch by Meador Inge. | ||||
| * | Always handle non-handled events before destoying root widget in tests. | Serhiy Storchaka | 2014-10-12 | 1 | -0/+1 |
| | | | | | | | | | | This gets rid of Tcl warnings when they are handled later when the root is already destroyed. | ||||
| * | #11973: add test for previously fixed kevent signed/unsigned bug. | R David Murray | 2014-10-12 | 1 | -0/+25 |
| | | | | | | | | Patch by David Naylor. | ||||
| * | Fixed and optimized a test of issue #22526. | Serhiy Storchaka | 2014-10-12 | 1 | -6/+8 |
| | | |||||
| * | Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar. | Terry Jan Reedy | 2014-10-12 | 1 | -7/+2 |
| | | |||||
| * | Issue #22604: Fix assertion error in debug mode when dividing a complex ↵ | Antoine Pitrou | 2014-10-10 | 1 | -2/+7 |
| | | | | | | | | number by (nan+0j). | ||||
| * | Issue #11694: Raise ConversionError in xdrlib as documented | Petri Lehtinen | 2014-10-10 | 2 | -8/+49 |
| | | |||||
| * | #0712: 2to3 has a new "asserts" fixer that replaces deprecated names of ↵ | R David Murray | 2014-10-10 | 2 | -0/+84 |
| | | | | | | | | | | | | unittest methods. Patch by Ezio Melotti, docs by Berker Peksag. | ||||
| * | De-'colour'ize stdlib except for idlelib.configDialog. | Terry Jan Reedy | 2014-10-09 | 3 | -20/+22 |
| | | | | | | | | Tweak docstrigs and comments in affected functions in idlelib.configHandler. | ||||
| * | Issue 3068: Move idlelib.configDialog action button creation into a separate | Terry Jan Reedy | 2014-10-09 | 1 | -19/+21 |
| | | | | | | | | method so it can be reused by the new extension dialog. | ||||
| * | idlelib.configHandler: revise docstrings, add spaces, use False/True, add some | Terry Jan Reedy | 2014-10-07 | 1 | -254/+232 |
| | | | | | | | | TODOs (mostly to do after add tests), and make a few other changes. | ||||
| * | make _socket.socket weakrefable (closes #22569) | Benjamin Peterson | 2014-10-06 | 1 | -2/+10 |
| | | | | | | | | Patch from Alex Gaynor. | ||||
| * | Issue #1686: Fix string.Template when overriding the pattern attribute. | Florent Xicluna | 2010-09-18 | 2 | -9/+37 |
| | | |||||
| * | Update 2.7 idlelib.configHandler and reduce differences from 3.4 code. | Terry Jan Reedy | 2014-10-06 | 1 | -17/+19 |
| | | |||||
| * | Issue #3832: backport 677a9326b4d4 to 2.7 (and delete some obsolete code). | Terry Jan Reedy | 2014-10-06 | 1 | -7/+7 |
| | | |||||
| * | #11866: Eliminate race condition in the computation of names for new threads. | R David Murray | 2014-10-04 | 1 | -4/+4 |
| | | | | | | | | Original patch by Peter Saveliev. | ||||
| * | Issue #22219: The zipfile module CLI now adds entries for directories | Serhiy Storchaka | 2014-10-04 | 1 | -2/+9 |
| | | | | | | | | (including empty directories) in ZIP file. | ||||
| * | separate cert loading tests into Windows and non-Windows cases | Benjamin Peterson | 2014-10-03 | 1 | -0/+15 |
| | | |||||
| * | also use openssl envvars to find certs on windows (closes #22449) | Benjamin Peterson | 2014-10-03 | 2 | -2/+9 |
| | | | | | | | | Patch by Christian Heimes and Alex Gaynor. | ||||
| * | #8473: make doctest.testfile use universal newline mode. | R David Murray | 2014-10-03 | 2 | -1/+27 |
| | | |||||
| * | Closes #19434: fix copy-paste error in MIMENonMultipart docstring. | Georg Brandl | 2014-10-02 | 1 | -1/+1 |
| | | |||||
| * | Issue #20079: Fixed tests. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+1 |
| | | |||||
| * | Issue #20079: Updated alias mapping to glibc 2.19 SUPPORTED file. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+11 |
| | | |||||
| * | Issue #20076: Remove just added the sr_rs.utf8@latn alias because it is | Serhiy Storchaka | 2014-10-02 | 1 | -1/+0 |
| | | | | | | | | derived from sr_rs@latin. | ||||
| * | fix sslwrap_simple (closes #22523) | Benjamin Peterson | 2014-10-02 | 2 | -5/+7 |
| | | | | | | | | Thanks Alex Gaynor. | ||||
| * | - Issue #17219: Add library build dir for Python extension cross-builds. | doko@ubuntu.com | 2014-10-02 | 1 | -1/+1 |
| | | |||||
| * | Issue #20076: Added non derived UTF-8 aliases to locale aliases table. | Serhiy Storchaka | 2014-10-01 | 1 | -0/+7 |
| | | |||||
| * | Issue #20079: Added locales supported in glibc 2.18 to locale alias table. | Serhiy Storchaka | 2014-10-01 | 1 | -0/+99 |
| | | |||||
| * | allow longs as indexes to group() (closes #22530) | Benjamin Peterson | 2014-10-01 | 1 | -0/+4 |
| | | |||||
| * | this test will only work on 64-bit machines | Benjamin Peterson | 2014-10-01 | 1 | -0/+1 |
| | |