Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge for issue #20778 | Brett Cannon | 2014-02-28 | 3 | -5/+29 |
|\ | |||||
| * | 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 #20650: Tweak some awkward wording. | Brett Cannon | 2014-02-28 | 1 | -2/+2 |
| | | |||||
* | | Reindent | Martin v. Löwis | 2014-02-28 | 1 | -1/+1 |
| | | |||||
* | | Merge heads | Martin v. Löwis | 2014-02-28 | 5 | -2/+30 |
|\ \ | |||||
| * \ | Merge with 3.3 | Martin v. Löwis | 2014-02-28 | 5 | -2/+30 |
| |\ \ | | |/ | |||||
| | * | 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. | ||||
* | | | Close #20568: install unversioned pip command on Windows | Nick Coghlan | 2014-02-28 | 2 | -1/+4 |
| | | | |||||
* | | | Close #20757: return success for skipped pip uninstall | Nick Coghlan | 2014-02-28 | 3 | -4/+14 |
|/ / | | | | | | | | | | | | | | | The 3.4rc2 Windows uninstaller would fail if pip had been updated to a version that didn't match the version installed by ensurepip. This skip is no longer treated as an error, so an updated pip ends up being handled like any other pip installed package and is left alone by the CPython uninstaller. | ||||
* | | Merge with 3.3 | Terry Jan Reedy | 2014-02-27 | 6 | -3/+14 |
|\ \ | |/ | |||||
| * | Issue #20567: Delete class attribute gui widgets in idle tests. | Terry Jan Reedy | 2014-02-27 | 6 | -3/+14 |
| | | | | | | | | Code patch by Serhiy Storchaka | ||||
* | | Null merge | Antoine Pitrou | 2014-02-27 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | 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. | ||||
* | | whatsnew: fix textwrap/shorten entry, and improve the related docs. | R David Murray | 2014-02-27 | 2 | -30/+27 |
| | | | | | | | | | | | | | | I had incorrectly added back the shorten method when I initially made the whatsnew entry, but the shorten function docs were not correct according to the code. I also improved the wording in general. | ||||
* | | whatsnew: expand pbkdf2_hmac entry slightly. | R David Murray | 2014-02-26 | 1 | -2/+4 |
| | | |||||
* | | whatsnew: reformat pdb entry to match style of most other module entries. | R David Murray | 2014-02-26 | 1 | -10/+8 |
| | | | | | | | | That is: one paragraph per feature. | ||||
* | | whatsnew: reword the contextlib.redirect_stdout entry for increased clarity. | R David Murray | 2014-02-26 | 1 | -5/+9 |
| | | |||||
* | | whatsnew: attribute base64 memoryview change to Nick. | R David Murray | 2014-02-26 | 1 | -1/+2 |
| | | |||||
* | | whatsnew: pprint's compact option. | R David Murray | 2014-02-26 | 1 | -3/+7 |
| | | |||||
* | | 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. | ||||
* | | merge 3.3 (#20796) | Benjamin Peterson | 2014-02-27 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | fix importlib test failure when bytecode writing is disabled (closes #20796) | Benjamin Peterson | 2014-02-27 | 1 | -0/+1 |
| | | | | | | | | Patch by Berker Peksag. | ||||
* | | Issue #20763: Fix importlib.machinery.PathFinder to support | Brett Cannon | 2014-02-26 | 3 | -2/+26 |
| | | | | | | | | | | | | PathEntryFinder instances which only define find_module(). Reported by Yukihiro Nakadaira. | ||||
* | | Added tests for issue #20501. | Serhiy Storchaka | 2014-02-26 | 1 | -0/+38 |
|\ \ | |/ | |||||
| * | Added tests for issue #20501. | Serhiy Storchaka | 2014-02-26 | 1 | -0/+36 |
| | | |||||
* | | Merge with 3.3 | Zachary Ware | 2014-02-26 | 3 | -8/+7 |
|\ \ | |/ | |||||
| * | 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. | ||||
* | | asyncio/windows_events.py: use more revelant names to overlapped callbacks | Victor Stinner | 2014-02-26 | 2 | -12/+11 |
| | | | | | | | | For example: "finish_recv", not just "finish". | ||||
* | | Close #20759: Fix some typos in the mock docs. (Merge with 3.3) | Zachary Ware | 2014-02-26 | 2 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #20759: Fix some typos in the mock docs. | Zachary Ware | 2014-02-26 | 2 | -3/+3 |
| | | |||||
* | | asyncio: simplify test_events.py, don't use non local variables and don't call | Victor Stinner | 2014-02-26 | 1 | -186/+79 |
| | | | | | | | | | | | | | | assert methods in coroutines. It also simplify merges from Tulip to Trollius (Python 2 does not support non local variables). | ||||
* | | asyncio: Fix pyflakes warnings: remove unused variables and imports | Victor Stinner | 2014-02-26 | 8 | -26/+12 |
| | | |||||
* | | asyncio: Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 12 | -368/+368 |
| | | | | | | | | | | Use "from unittest import mock". It should simplify my work to merge new tests in Trollius, because Trollius uses "mock" backport for Python 2. | ||||
* | | null merge | Gregory P. Smith | 2014-02-26 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Mention issue 20621 fix in the NEWS file for 3.3.5rc1. | Gregory P. Smith | 2014-02-26 | 1 | -0/+4 |
| | | | | | | | | This bug was of the major reasons for the release. | ||||
* | | whatsnew: DynanicClassAttribute (#19030), Py_SetStandardStreamEncoding (#16129) | R David Murray | 2014-02-25 | 2 | -0/+38 |
| | | | | | | | | | | Adding missing docs for DynamicClassAttribute by copying the docstring. The doc entry could stand some expansion, which I will note on the issue. | ||||
* | | Fix formatting in NEWS entry. | R David Murray | 2014-02-25 | 1 | -3/+2 |
| | | |||||
* | | Issue #20765: Add missing documentation for PurePath.with_name() and ↵ | Antoine Pitrou | 2014-02-25 | 2 | -0/+36 |
| | | | | | | | | PurePath.with_suffix(). | ||||
* | | Null merge | Serhiy Storchaka | 2014-02-25 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Fix typo (issue #19619). | Serhiy Storchaka | 2014-02-25 | 1 | -1/+1 |
| | | |||||
* | | whatsnew: encoding is now optional in PYTHONIOENCODING (#18818) | R David Murray | 2014-02-25 | 1 | -0/+5 |
| | | |||||
* | | whatsnew: logging SocketHandler and DatagramHandler support Unix domain sockets. | R David Murray | 2014-02-25 | 1 | -0/+5 |
| | | |||||
* | | whatsnew: Request.method can be overridden in subclasses (#18978). | R David Murray | 2014-02-25 | 2 | -5/+17 |
| | | | | | | | | | | | | Jason doced the change in the constructor *method* description, but not the description of Request.method, so I added the change there as well. | ||||
* | | Clarify that flow control works for datagrams, except on BSD. | Guido van Rossum | 2014-02-24 | 1 | -2/+11 |
| | | |||||
* | | whatsnew: http.server --bind cli option. | R David Murray | 2014-02-24 | 2 | -6/+12 |
| | | | | | | | | Also some fixups in the docs. | ||||
* | | whatsnew: unittest.TestCase.assertLogs. | R David Murray | 2014-02-24 | 1 | -1/+10 |
| | | | | | | | | Also fix issue number in address sanity check entry. | ||||
* | | Fix return type in doc of PyStructSequence_InitType2. | R David Murray | 2014-02-24 | 1 | -1/+1 |
| | | |||||
* | | Fix wording of NEWS entry. | R David Murray | 2014-02-24 | 1 | -3/+3 |
| | | |||||
* | | whatsnew: cypthon can be compiled with address sanity checking enabled. | R David Murray | 2014-02-24 | 1 | -0/+5 |
| | | |||||
* | | Merge #20628: make it clear that DictReader/Writer *fieldnames* is a Sequence. | R David Murray | 2014-02-24 | 1 | -30/+37 |
|\ \ | |/ | | | | | Including the subsequent line re-wrapping. |