Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Closes #20908: Memory leak in Reg2Py() | Jesus Cea | 2014-03-13 | 1 | -1/+4 |
| | |||||
* | Make distutils error messages more helpful (#11599). | Éric Araujo | 2014-03-13 | 4 | -22/+57 |
| | | | | | | | | | | When running external programs such as a C compiler and getting an error code, distutils only prints the program name. With this change, one can get the full command line by setting the DISTUTILS_DEBUG environment variable. This should have no compatibility issues, unless there are tools that depend on the exact format of distutils debug messages. | ||||
* | weaken callback count inequality (closes #20901) | Benjamin Peterson | 2014-03-13 | 1 | -1/+1 |
| | |||||
* | remove unnecessary word (closes #19060) | Benjamin Peterson | 2014-03-13 | 2 | -2/+2 |
| | | | | Patch by Anastasia Filatova. | ||||
* | Fix note markup (#16805). | Éric Araujo | 2014-03-12 | 13 | -6/+28 |
| | | | | Patch by Tshepang Lekhonkhobe, reviewed by Georg Brandl. | ||||
* | merge 3.2 (#20896) | Benjamin Peterson | 2014-03-12 | 1 | -3/+8 |
|\ | |||||
| * | use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896) | Benjamin Peterson | 2014-03-12 | 1 | -3/+8 |
| | | |||||
* | | add Sean Rodman | Benjamin Peterson | 2014-03-12 | 1 | -0/+1 |
| | | |||||
* | | use support.rmtree instead of shutil (closes #19614) | Benjamin Peterson | 2014-03-12 | 1 | -1/+1 |
| | | | | | | | | Patch by Sean Rodman. | ||||
* | | Avoid “error: None” messages from distutils (#4931). | Éric Araujo | 2014-03-12 | 6 | -38/+20 |
| | | | | | | | | Thanks to Amaury Forgeot d’Arc and Philip J. Eby. | ||||
* | | #20030: doc that TestLoader.discover returns a TestSuite. | R David Murray | 2014-03-11 | 1 | -5/+5 |
| | | | | | | | | Patch by Lita Cho. | ||||
* | | improve algorithms_* documentation | Benjamin Peterson | 2014-03-11 | 1 | -6/+6 |
| | | |||||
* | | fix typo (closes #20892) | Benjamin Peterson | 2014-03-11 | 1 | -1/+1 |
| | | |||||
* | | Closes #20090: update Doc/README and the error message in sphinx-build.py to ↵ | Georg Brandl | 2014-03-10 | 2 | -32/+14 |
| | | | | | | | | | | | | make it clear that any Python 3.x is not usable with the checked out Sphinx. | ||||
* | | #19953: Clarify the wording of the augmented assignment discussion. | R David Murray | 2014-03-09 | 2 | -5/+8 |
| | | | | | | | | | | Patch by Priya Pappachan, based on suggestions from Terry Reedy and myself. | ||||
* | | Issue #20875: Prevent possible gzip "'read' is not defined" NameError. | Ned Deily | 2014-03-09 | 3 | -1/+11 |
| | | | | | | | | Patch by Claudiu Popa. | ||||
* | | merge with 3.3.5 release repo | Georg Brandl | 2014-03-09 | 7 | -12/+34 |
|\ \ | |||||
| * | | Post-release update. | Georg Brandl | 2014-03-09 | 2 | -1/+13 |
| | | | |||||
| * | | Added tag v3.3.5 for changeset 62cf4e77f785 | Georg Brandl | 2014-03-09 | 1 | -0/+1 |
| | | | |||||
| * | | Bump to 3.3.5 final.v3.3.5 | Georg Brandl | 2014-03-09 | 6 | -8/+16 |
| | | | |||||
| * | | Added tag v3.3.5rc2 for changeset ca5635efe090 | Georg Brandl | 2014-03-02 | 1 | -0/+1 |
| | | | |||||
* | | | hgtouch: remove meta-variable from option spec | Georg Brandl | 2014-03-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | This fifth tuple element is unsupported in an old hg version still used on one buildbot, and it is not really necessary (only used in touch --help). | ||||
* | | | #10197: Update get[status]output versionchanged with actual version. | R David Murray | 2014-03-08 | 1 | -4/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was perhaps on the border between a bug fix and a feature since the Python3 docs did not originally say it was unix only. However, the functions never worked anywhere but unix, and the docs were changed to say it was unix only well before the windows support was added. Unfortunately, windows support was added in 3.3.4 as well as 3.4. That leaves us in the uncomfortable position of needing the tag to say "version changed: 3.3.4" :( | ||||
* | | | Issue #20813: Backport Python 2/3 HOWTO updates | Brett Cannon | 2014-03-07 | 1 | -380/+259 |
| | | | |||||
* | | | Make pywlauncher.vcxproj depend on make_versioninfo.vcxproj. | Zachary Ware | 2014-03-06 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | pylauncher.vcxproj already has the same dependency, and adding it to the pywlauncher project eliminates the possibility of the pywlauncher build failing when building the solution in parallel. In particular, pywlauncher may fail to build when doing a "Rebuild Solution" from the VS Build menu. | ||||
* | | | Issue #20283: RE pattern methods now accept the string keyword parameters | Serhiy Storchaka | 2014-03-06 | 3 | -20/+84 |
| | | | | | | | | | | | | | | | as documented. The pattern and source keyword parameters are left as deprecated aliases. | ||||
* | | | Make the various iterators' "setstate" sliently and consistently clip the | Kristján Valur Jónsson | 2014-03-05 | 8 | -15/+66 |
| | | | | | | | | | | | | | | | index. This avoids the possibility of setting an iterator to an invalid state. | ||||
* | | | Fix pickling of rangeiter. rangeiter_setstate would not allow setting it | Kristján Valur Jónsson | 2014-03-04 | 2 | -1/+13 |
| | | | | | | | | | | | | to the exhausted state. | ||||
* | | | Correct comments and improve failure reports in test_fileinput (closes #20501). | Serhiy Storchaka | 2014-03-03 | 1 | -4/+7 |
|/ / | | | | | | | Thanks Vajrasky Kok and Zachary Ware. | ||||
* | | Bump to 3.3.5rc2.v3.3.5rc2 | Georg Brandl | 2014-03-02 | 5 | -6/+6 |
| | | |||||
* | | Update NEWS for 3.3.5rc2. | Georg Brandl | 2014-03-02 | 1 | -17/+38 |
| | | |||||
* | | Issue #20404: reject non-text encodings early in TextIOWrapper. | Georg Brandl | 2014-03-02 | 5 | -39/+134 |
| | | |||||
* | | merge 3.3.5rc1 release commits with 3.3 branch | Georg Brandl | 2014-03-02 | 8 | -10/+12 |
|\ \ | |||||
| * | | Added tag v3.3.5rc1 for changeset 9ec811df548e | Georg Brandl | 2014-02-23 | 1 | -0/+1 |
| | | | |||||
| * | | mergev3.3.5rc1 | Georg Brandl | 2014-02-23 | 6 | -10/+10 |
| |\ \ | |||||
| | * | | Bump to 3.3.5rc1. | Georg Brandl | 2014-02-23 | 6 | -10/+10 |
| | | | | |||||
| * | | | #20719: Disable the robotparser python.org test until the gzip encoding ↵ | Georg Brandl | 2014-02-23 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | issue can be sorted. | ||||
* | | | | add Chris Angelico | Benjamin Peterson | 2014-03-02 | 1 | -0/+1 |
| | | | | |||||
* | | | | fix test_posix.test_initgroups to work without supplemental groups (closes ↵ | Benjamin Peterson | 2014-03-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | #20249) | ||||
* | | | | fix test on debug builds (closes #20731) | Benjamin Peterson | 2014-03-01 | 1 | -2/+3 |
| | | | | |||||
* | | | | merge 3.2 | Benjamin Peterson | 2014-03-01 | 0 | -0/+0 |
|\ \ \ \ | | |_|/ | |/| | | |||||
| * | | | Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts. | Stefan Krah | 2014-01-21 | 1 | -1/+1 |
| | | | | |||||
* | | | | Issue #20778: Fix modulefinder to work with bytecode-only modules. | Brett Cannon | 2014-02-28 | 3 | -1/+23 |
| | | | | | | | | | | | | | | | | Bug filed and initial attempt at a patch by Bohuslav Kabrda. | ||||
* | | | | Issue #20731: Properly position in source code files even if they | Martin v. Löwis | 2014-02-28 | 5 | -3/+29 |
| | | | | | | | | | | | | | | | | are opened in text mode. Patch by Serhiy Storchaka. | ||||
* | | | | Issue #20567: Delete class attribute gui widgets in idle tests. | Terry Jan Reedy | 2014-02-27 | 6 | -3/+14 |
| | | | | | | | | | | | | | | | | Code patch by Serhiy Storchaka | ||||
* | | | | Issue #20791: copy.copy() now doesn't make a copy when the input is a bytes ↵ | Antoine Pitrou | 2014-02-27 | 3 | -1/+5 |
| | | | | | | | | | | | | | | | | object. Initial patch by Peter Otten. | ||||
* | | | | fix importlib test failure when bytecode writing is disabled (closes #20796) | Benjamin Peterson | 2014-02-27 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | Patch by Berker Peksag. | ||||
* | | | | Added tests for issue #20501. | Serhiy Storchaka | 2014-02-26 | 1 | -0/+36 |
| | | | | |||||
* | | | | Fix several C-API doc typos caught by tomo cocoa on docs@. | Zachary Ware | 2014-02-26 | 3 | -9/+8 |
| | | | | | | | | | | | | | | | | | | | | The signature and description of PyException_SetCause now use "cause" rather than "ctx" to match the code. | ||||
* | | | | Issue #20759: Fix some typos in the mock docs. | Zachary Ware | 2014-02-26 | 2 | -3/+3 |
| | | | |