| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge 3.5 (issue #25647) | Yury Selivanov | 2016-03-02 | 2 | -1/+26 |
| |\ | |||||
| | * | asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647) | Yury Selivanov | 2016-03-02 | 2 | -1/+26 |
| | | | | | | | | | Patch by Vladimir Rutsky. | ||||
| * | | Sync selectors.py with upstream asyncio | Yury Selivanov | 2016-03-02 | 1 | -5/+6 |
| | | | |||||
| * | | Merge 3.5 | Yury Selivanov | 2016-03-02 | 1 | -1/+2 |
| |\ \ | |/ | |||||
| | * | asyncio, selectors: Update to the upstream version | Yury Selivanov | 2016-03-02 | 2 | -3/+13 |
| | | | |||||
| * | | Merge 3.5 | Yury Selivanov | 2016-03-02 | 0 | -0/+0 |
| |\ \ | |/ | |||||
| | * | Merge 3.4 | Yury Selivanov | 2016-03-02 | 0 | -0/+0 |
| | |\ | |||||
| | | * | asyncio: Update 3.4 asyncio/test_tasks to upstream version | Yury Selivanov | 2016-03-02 | 1 | -1/+2 |
| | | | | |||||
| * | | | Factor-out common subexpression. | Raymond Hettinger | 2016-03-02 | 1 | -3/+3 |
| | | | | |||||
| * | | | Put block length computations in a more logical order. | Raymond Hettinger | 2016-03-02 | 1 | -2/+2 |
| | | | | |||||
| * | | | Update assertion in compiler_addop_i() | Victor Stinner | 2016-03-01 | 1 | -4/+8 |
| | | | | | | | | | | | | | | | | | | | | | | In practice, bytecode instruction arguments are unsigned. Update the assertion to make it more explicit that argument must be greater or equal than 0. Rewrite also the comment. | ||||
| * | | | Merge 3.5 | Victor Stinner | 2016-03-01 | 2 | -13/+22 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #26464: Fix unicode_fast_translate() again | Victor Stinner | 2016-03-01 | 2 | -13/+22 |
| | | | | | | | | | | | | | Initialize i variable if the string is non-ASCII. | ||||
| * | | | Merge 3.5 | Victor Stinner | 2016-03-01 | 3 | -3/+12 |
| |\ \ \ | |/ / | |||||
| | * | | Fix str.translate() | Victor Stinner | 2016-03-01 | 3 | -3/+12 |
| | | | | | | | | | | | | | | | | | | | Issue #26464: Fix str.translate() when string is ASCII and first replacements removes character, but next replacement uses a non-ASCII character or a string longer than 1 character. Regression introduced in Python 3.5.0. | ||||
| * | | | Issue #26457: Fixed the subnets() methods in IP network classes for the case | Serhiy Storchaka | 2016-03-01 | 3 | -9/+43 |
| |\ \ \ | |/ / | | | | | | | | | | when resulting prefix length is equal to maximal prefix length. Based on patch by Xiang Zhang. | ||||
| | * | | Issue #26457: Fixed the subnets() methods in IP network classes for the case | Serhiy Storchaka | 2016-03-01 | 3 | -9/+43 |
| | | | | | | | | | | | | | | | | when resulting prefix length is equal to maximal prefix length. Based on patch by Xiang Zhang. | ||||
| * | | | Merge with 3.5 | Terry Jan Reedy | 2016-03-01 | 1 | -3/+3 |
| |\ \ \ | |/ / | |||||
| | * | | Whitespace | Terry Jan Reedy | 2016-03-01 | 1 | -3/+3 |
| | | | | |||||
| * | | | Merge with 3.5 | Terry Jan Reedy | 2016-03-01 | 1 | -1/+24 |
| |\ \ \ | |/ / | |||||
| | * | | Document maintenance of idlelib/help.html in idlelib. | Terry Jan Reedy | 2016-03-01 | 1 | -1/+24 |
| | | | | |||||
| * | | | Merge with 3.5 | Terry Jan Reedy | 2016-03-01 | 1 | -73/+73 |
| |\ \ \ | |/ / | |||||
| | * | | Rebase the 3.x version of idlelib/help.html on the 3.5 version of | Terry Jan Reedy | 2016-03-01 | 1 | -73/+73 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doc/build/html/library/idle.html, which is built from Doc/library/idle.rst. Help.html is an rstrip()ed copy of idle.html that can be pushed. The displayed content is unchanged because a) the version number is not displayed, being inherent in the version displaying the file and b) the tt tag was ignored by the custom parser in idlelib/help.py. The wrapped <span class="pre"> tags remain as they were. This will be merged in 3.6 (without conflict) because the 3.6 help.html is a copy of the 3.5 file (which was a copy of the 3.4 file). The two files will remain the same until either a) there is a content change that only applies to one of them or b) 3.5 maintenance ends and the 3.6 file is itself rebased. | ||||
| * | | | Issue #26385: Merge NamedTemporaryFile fix from 3.5 | Martin Panter | 2016-02-29 | 3 | -2/+14 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #26385: Cleanup NamedTemporaryFile if open() fails, by SilentGhost | Martin Panter | 2016-02-28 | 3 | -2/+14 |
| | | | | |||||
| * | | | merge with 3.5 | Georg Brandl | 2016-02-28 | 1 | -1/+1 |
| |\ \ \ | |/ / | |||||
| | * | | Update susp-ignore file (#25910). | Georg Brandl | 2016-02-28 | 1 | -1/+1 |
| | | | | |||||
| * | | | merge with 3.5 | Georg Brandl | 2016-02-28 | 1 | -1/+1 |
| |\ \ \ | |/ / | |||||
| | * | | Fix typo. | Georg Brandl | 2016-02-28 | 1 | -1/+1 |
| | | | | |||||
| * | | | Issue #22836: Merge exception reporting from 3.5 | Martin Panter | 2016-02-28 | 5 | -9/+92 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #22836: Keep exception reports sensible despite errors | Martin Panter | 2016-02-28 | 5 | -9/+92 |
| | | | | |||||
| * | | | #26246: merge with 3.5. | Ezio Melotti | 2016-02-27 | 2 | -7/+12 |
| |\ \ \ | |/ / | |||||
| | * | | #26246: merge with 3.4. | Ezio Melotti | 2016-02-27 | 2 | -7/+12 |
| | |\ \ | | |/ | |||||
| | | * | #26246: update copybutton.js after JQuery update. Patch by Liang-Bo Wang. | Ezio Melotti | 2016-02-27 | 2 | -7/+12 |
| | | | | |||||
| * | | | compile.c: inline compiler_use_new_block() | Victor Stinner | 2016-02-27 | 1 | -26/+9 |
| | | | | | | | | | | | | | | | | | | | * Inline compiler_use_new_block() function into its only callee, compiler_enter_scope() * Remove unused NEW_BLOCK() macro | ||||
| * | | | merge with 3.5 | Georg Brandl | 2016-02-26 | 69 | -262/+252 |
| |\ \ \ | |/ / | |||||
| | * | | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 69 | -256/+253 |
| | | | | | | | | | | | | | to SilentGhost for the patch. | ||||
| * | | | merge with 3.5 | Georg Brandl | 2016-02-26 | 1 | -3/+3 |
| |\ \ \ | |/ / | |||||
| | * | | Fix version. | Georg Brandl | 2016-02-26 | 1 | -3/+3 |
| | | | | |||||
| * | | | merge with 3.5 | Georg Brandl | 2016-02-26 | 1 | -1/+1 |
| |\ \ \ | |/ / | |||||
| | * | | Closes #26442: fix copy-paste. | Georg Brandl | 2016-02-26 | 1 | -1/+1 |
| | | | | |||||
| * | | | merge with 3.5 | Georg Brandl | 2016-02-26 | 1 | -7/+7 |
| |\ \ \ | |/ / | |||||
| | * | | Closes #26444: typo fixes. | Georg Brandl | 2016-02-26 | 1 | -7/+7 |
| | | | | |||||
| * | | | remove unused c_encoding struct member | Benjamin Peterson | 2016-02-26 | 1 | -17/+4 |
| | | | | |||||
| * | | | rewrite parsestr() so it's comprehensible; remove dead code | Benjamin Peterson | 2016-02-26 | 1 | -24/+12 |
| | | | | |||||
| * | | | c_encoding can never be NULL, which allows some code simplification | Benjamin Peterson | 2016-02-26 | 1 | -47/+43 |
| | | | | |||||
| * | | | Dummy merge with 3.5 | Martin Panter | 2016-02-26 | 0 | -0/+0 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #24421: Compile _math.c separately to avoid race condition | Martin Panter | 2016-02-03 | 3 | -5/+17 |
| | | | | |||||
| * | | | Issue #26390: Merge pbkdf2_hmac() doc from 3.5 | Martin Panter | 2016-02-26 | 2 | -6/+10 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #26390: Fix and test pbkdf2_hmac() parameter names | Martin Panter | 2016-02-22 | 2 | -6/+10 |
| | | | | | | | | | | | | | Based on patch by Daan Bakker. | ||||
