Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | English spelling and grammar fixes | Martin Panter | 2016-07-11 | 11 | -17/+17 |
| | |||||
* | Restore NEWS entries lost in revision 8145f25f26aa | Martin Panter | 2016-07-11 | 1 | -0/+6 |
| | |||||
* | Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF | Martin Panter | 2016-07-11 | 3 | -8/+32 |
| | |||||
* | Merge heads | Serhiy Storchaka | 2016-07-10 | 2 | -4/+4 |
|\ | |||||
| * | #22758 null merge | R David Murray | 2016-07-10 | 0 | -0/+0 |
| |\ | |||||
| | * | #22758 null merge | R David Murray | 2016-07-10 | 0 | -0/+0 |
| | |\ | |||||
| | | * | #22758 null merge | R David Murray | 2016-07-10 | 0 | -0/+0 |
| | | |\ | |||||
| | | | * | #22758: fix regression in handling of secure cookies. | R David Murray | 2016-07-10 | 3 | -11/+61 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This backports the fix from #16611, per discussion with the release manager. | ||||
| * | | | | #26176: fix usage of Address constructor in email examples. | R David Murray | 2016-07-10 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | Patch by Nathan Harold. | ||||
* | | | | | Issue #27473: Fixed possible integer overflow in bytes and bytearray | Serhiy Storchaka | 2016-07-10 | 3 | -16/+14 |
|/ / / / | | | | | | | | | | | | | concatenations. Patch by Xiang Zhang. | ||||
* | | | | #20647: Update dictobject.c comments to account for randomized string hashes. | R David Murray | 2016-07-10 | 1 | -8/+5 |
| | | | | | | | | | | | | | | | | Patch by Jaysinh Shukla. | ||||
* | | | | Issue #27466: Change time format returned by http.cookie.time2netscape, | Senthil Kumaran | 2016-07-10 | 3 | -1/+27 |
| | | | | | | | | | | | | | | | | confirming the netscape cookie format. | ||||
* | | | | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 71 | -1835/+1814 |
| | | | | | | | | | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | ||||
* | | | | assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes ↵ | Benjamin Peterson | 2016-07-07 | 6 | -135/+160 |
| | | | | | | | | | | | | | | | | #24557) | ||||
* | | | | fix refleaks in PyDict_SetItem error cases (closes #27248) | Benjamin Peterson | 2016-07-07 | 1 | -3/+9 |
| | | | | |||||
* | | | | Fix a test with the new upload URL | Donald Stufft | 2016-07-06 | 1 | -1/+1 |
| | | | | |||||
* | | | | merge 3.4 | Benjamin Peterson | 2016-07-06 | 0 | -0/+0 |
|\ \ \ \ | |/ / / | |||||
| * | | | merge 3.3 | Benjamin Peterson | 2016-07-06 | 0 | -0/+0 |
| |\ \ \ | | |/ / | |||||
| | * | | Switch to the new upload url for PyPI | Donald Stufft | 2016-07-06 | 3 | -4/+4 |
| | | | | |||||
| | * | | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. | Serhiy Storchaka | 2015-12-02 | 3 | -0/+27 |
| | | | | |||||
* | | | | merge 3.4 | Benjamin Peterson | 2016-07-06 | 3 | -5/+5 |
|\ \ \ \ | |/ / / | |||||
| * | | | Switch to the new upload url for PyPI | Donald Stufft | 2016-07-06 | 3 | -5/+5 |
| | | | | |||||
* | | | | Issue #27452: add line counter and crc to IDLE configHandler test dump. | Terry Jan Reedy | 2016-07-06 | 1 | -10/+21 |
| | | | | |||||
* | | | | Add versionadded to PyDict_SetDefault documentation | Berker Peksag | 2016-07-05 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | It was added for Python 3.4 in a0b750ea3397. | ||||
* | | | | Issue #19527: Fixed tests with defined COUNT_ALLOCS. | Serhiy Storchaka | 2016-07-03 | 10 | -6/+26 |
| | | | | |||||
* | | | | Issue #27443: __length_hint__() of bytearray itearator no longer return | Serhiy Storchaka | 2016-07-03 | 3 | -1/+18 |
| | | | | | | | | | | | | | | | | negative integer for resized bytearray. | ||||
* | | | | Issue #27431: Update default protocol version in shelve.Shelf() documentation | Berker Peksag | 2016-07-01 | 2 | -1/+5 |
| | | | | | | | | | | | | | | | | shelve.open() documentation was updated in f351fb7ea179. | ||||
* | | | | Issue #27430: Fix typos, patch by scop. | Berker Peksag | 2016-07-01 | 4 | -4/+4 |
| | | | | |||||
* | | | | Issue #26665: Remove mis-use of ``$`` in activate.fish. | Brett Cannon | 2016-06-30 | 2 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a revertion of cfc66e37eb8e. Thanks to 鄭景文 for the bug report. Thanks to Tin Tvrtković, Xiang Zhang, and Dan McCombs for diagnosing the issue. | ||||
* | | | | Issue #4945: Improved the documenting of boolean arguments in the json module. | Serhiy Storchaka | 2016-06-30 | 2 | -24/+28 |
| | | | | | | | | | | | | | | | | Based on patch by Gabriel Genellina. | ||||
* | | | | Issue #27416: clarify copy doc | Victor Stinner | 2016-06-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Patch written by R. David Murray. | ||||
* | | | | Issue #27418: Fixed Tools/importbench/importbench.py. | Serhiy Storchaka | 2016-06-30 | 2 | -7/+11 |
| | | | | |||||
* | | | | Fix issue #27402: example for typing did not type-check. | Guido van Rossum | 2016-06-28 | 1 | -2/+2 |
| | | | | |||||
* | | | | asyncio: Use socket specs for getaddrinfo() in sock_connect() | Yury Selivanov | 2016-06-28 | 2 | -1/+13 |
| | | | | | | | | | | | | | | | | Patch by Martin Richard. GH PR #365. | ||||
* | | | | asyncio: Fix NameError in sslproto _fatal_error() | Yury Selivanov | 2016-06-28 | 2 | -0/+17 |
| | | | | | | | | | | | | | | | | Patch by Richard Walker. | ||||
* | | | | Adds script for purging the caching server for downloads on python.org. | Steve Dower | 2016-06-27 | 1 | -0/+74 |
| | | | | |||||
* | | | | Adds batch file to build nuget packages. | Steve Dower | 2016-06-27 | 1 | -0/+55 |
| | | | | |||||
* | | | | Include libs folder in nuget package and allow preinstalling packages | Steve Dower | 2016-06-27 | 2 | -11/+29 |
| | | | | |||||
* | | | | Issue #27393: Fix escaping of C:\ too | Berker Peksag | 2016-06-27 | 1 | -2/+2 |
| | | | | |||||
* | | | | Issue #27393: Fix escaping of venv activate commands on Windows | Berker Peksag | 2016-06-27 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | Patch by Manuel Kaufmann. | ||||
* | | | | Null merge from 3.4 (well, except, pull in the tag for 3.4.5.) | Larry Hastings | 2016-06-27 | 1 | -0/+1 |
|\ \ \ \ | |/ / / | |||||
| * | | | Merge. | Larry Hastings | 2016-06-27 | 3 | -5/+11 |
| |\ \ \ | |||||
| * | | | | Post-release fixups for Python 3.4.5. | Larry Hastings | 2016-06-27 | 2 | -1/+13 |
| | | | | | |||||
| * | | | | Added tag v3.4.5 for changeset 619b61e505d0 | Larry Hastings | 2016-06-25 | 1 | -0/+1 |
| | | | | | |||||
| * | | | | Version bump for 3.4.5 final.v3.4.5 | Larry Hastings | 2016-06-25 | 3 | -5/+16 |
| | | | | | |||||
| * | | | | Regenerate pydoc topics for 3.4.5 final. | Larry Hastings | 2016-06-25 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Issue #26867: Ubuntu's openssl OP_NO_SSLv3 is forced on by default; fix test. | Matthias Klose | 2016-06-13 | 1 | -1/+2 |
| | | | | | |||||
* | | | | | Merge. | Larry Hastings | 2016-06-27 | 110 | -794/+1523 |
|\ \ \ \ \ | |||||
| * | | | | | Update NEWS and idlelib NEWS.text. | Terry Jan Reedy | 2016-06-26 | 2 | -1/+21 |
| | | | | | | |||||
| * | | | | | Issue #22115: Fixed tracing Tkinter variables: | Serhiy Storchaka | 2016-06-26 | 3 | -8/+66 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tracing in the "u" mode now works * trace_vdelete() with wrong mode no longer break tracing * trace_vinfo() now always returns a list of pairs of strings |