Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | timeit: remove --clock and --time options | Victor Stinner | 2016-10-18 | 4 | -28/+5 | |
| | | | | | | | | | | | | | | | Issue #28240: timeit: remove -c/--clock and -t/--time command line options which were deprecated since Python 3.3. | |||||
* | | | timeit: change default repeat to 5, instead of 3 | Victor Stinner | 2016-10-18 | 3 | -18/+21 | |
| | | | | | | | | | | | | | | | Issue #28240: timeit now repeats the benchmarks 5 times instead of only 3 to make benchmarks more reliable. | |||||
* | | | timeit: start autorange with 1 iteration, not 10 | Victor Stinner | 2016-10-18 | 3 | -18/+32 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Issue #28240: timeit autorange now uses a single loop iteration if the benchmark takes less than 10 seconds, instead of 10 iterations. "python3 -m timeit -s 'import time' 'time.sleep(1)'" now takes 4 seconds instead of 40 seconds. | |||||
* | | | Issue #28256: Cleanup _math.c | Victor Stinner | 2016-10-18 | 2 | -32/+41 | |
| | | | | | | | | | | | | | | | Only define fallback implementations when needed. It avoids producing deadcode when the system provides required math functions. | |||||
* | | | Null merge 3.6 (change already applied in default) | Victor Stinner | 2016-10-18 | 0 | -0/+0 | |
|\ \ \ | |/ / | ||||||
| * | | Merge 3.5 | Victor Stinner | 2016-10-18 | 1 | -2/+2 | |
| |\ \ | | |/ | ||||||
| | * | Issue #27896: Allow passing sphinx options to Doc/Makefile | Victor Stinner | 2016-10-16 | 1 | -2/+2 | |
| | | | | | | | | | | | | Patch written by Julien Palard. | |||||
* | | | Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception | Serhiy Storchaka | 2016-10-18 | 2 | -20/+29 | |
|\ \ \ | |/ / | | | | | | | loss in PyTraceBack_Here(). | |||||
| * | | Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception | Serhiy Storchaka | 2016-10-18 | 2 | -20/+29 | |
| |\ \ | | |/ | | | | | | | loss in PyTraceBack_Here(). | |||||
| | * | Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception | Serhiy Storchaka | 2016-10-18 | 2 | -20/+29 | |
| | | | | | | | | | | | | loss in PyTraceBack_Here(). | |||||
* | | | Issue #28452: Remove _asyncio._init_module function | INADA Naoki | 2016-10-18 | 2 | -81/+63 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28452: Remove _asyncio._init_module function | INADA Naoki | 2016-10-18 | 2 | -81/+63 | |
| | | | ||||||
* | | | Merge from 3.6 | Berker Peksag | 2016-10-17 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Merge from 3.5 | Berker Peksag | 2016-10-17 | 1 | -1/+1 | |
| |\ \ | | |/ | ||||||
| | * | Fix default value of StreamReader.readuntil() | Berker Peksag | 2016-10-17 | 1 | -1/+1 | |
| | | | | | | | | | | | | Reported by Sam Lunt on docs@p.o. | |||||
* | | | Merge 3.7: Issue #28409: regrtest: fix the parser of command line arguments. | Victor Stinner | 2016-10-17 | 3 | -4/+18 | |
|\ \ \ | |/ / | ||||||
| * | | Merge 3.6: Issue #28409: regrtest: fix the parser of command line arguments. | Victor Stinner | 2016-10-17 | 3 | -4/+21 | |
| |\ \ | | |/ | ||||||
| | * | Issue #28409: regrtest: fix the parser of command line arguments. | Victor Stinner | 2016-10-17 | 3 | -6/+21 | |
| | | | ||||||
* | | | Issue #28455: Merge from 3.6 | Berker Peksag | 2016-10-17 | 1 | -3/+4 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28455: Merge from 3.5 | Berker Peksag | 2016-10-17 | 1 | -3/+4 | |
| |\ \ | | |/ | ||||||
| | * | Issue #28455: Clarify example of overriding the convert_arg_line_to_args method | Berker Peksag | 2016-10-17 | 1 | -3/+4 | |
| | | | | | | | | | | | | Patch by Mariatta Wijaya. | |||||
* | | | merge 3.6 (#28454) | Benjamin Peterson | 2016-10-16 | 1 | -4/+4 | |
|\ \ \ | |/ / | ||||||
| * | | merge 3.5 (#28454) | Benjamin Peterson | 2016-10-16 | 1 | -4/+4 | |
| |\ \ | | |/ | ||||||
| | * | remove extra PyErr_Format arguments (closes #28454) | Benjamin Peterson | 2016-10-16 | 1 | -4/+4 | |
| | | | | | | | | | | | | Patch from Xiang Zhang. | |||||
* | | | Issue #28432: Merge from 3.6 | Berker Peksag | 2016-10-16 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28432: Merge from 3.5 | Berker Peksag | 2016-10-16 | 1 | -1/+1 | |
| |\ \ | | |/ | ||||||
| | * | Issue #28432: Fix first parameter name in PyUnicode_EncodeLocale documentation | Berker Peksag | 2016-10-16 | 1 | -1/+1 | |
| | | | | | | | | | | | | Patch by Xiang Zhang. | |||||
* | | | Issue #27896: Allow passing sphinx options to Doc/Makefile | Victor Stinner | 2016-10-16 | 1 | -2/+2 | |
| | | | | | | | | | | | | Patch written by Julien Palard. | |||||
* | | | Minor fix-up to apply the stack adjustment macros consistent with the other ↵ | Raymond Hettinger | 2016-10-16 | 1 | -2/+2 | |
| | | | | | | | | | | | | opcodes | |||||
* | | | Remove spurious article. | Ned Deily | 2016-10-15 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Remove spurious article. | Ned Deily | 2016-10-15 | 1 | -1/+1 | |
| |\ \ | | |/ | ||||||
| | * | Remove spurious article. | Ned Deily | 2016-10-15 | 1 | -1/+1 | |
| | | | ||||||
* | | | Issue #28428: Rename _futures module to _asyncio. (merge from 3.6) | INADA Naoki | 2016-10-15 | 6 | -29/+29 | |
|\ \ \ | |/ / | | | | | | | It will have more speedup functions or classes other than asyncio.Future. | |||||
| * | | Issue #28428: Rename _futures module to _asyncio. | INADA Naoki | 2016-10-15 | 6 | -29/+29 | |
| | | | | | | | | | | | | It will have more speedup functions or classes other than asyncio.Future. | |||||
* | | | Issue #27800: Merge RE repetition doc from 3.6 | Martin Panter | 2016-10-15 | 1 | -0/+6 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #27800: Merge RE repetition doc from 3.5 into 3.6 | Martin Panter | 2016-10-15 | 1 | -0/+6 | |
| |\ \ | | |/ | ||||||
| | * | Issue #27800: Document limitation and workaround for multiple RE repetitions | Martin Panter | 2016-10-15 | 1 | -0/+6 | |
| | | | ||||||
* | | | Issue #23231: Merge codecs doc from 3.6 | Martin Panter | 2016-10-15 | 1 | -0/+9 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #23231: Merge codecs doc from 3.5 into 3.6 | Martin Panter | 2016-10-15 | 1 | -0/+9 | |
| |\ \ | | |/ | ||||||
| | * | Issue #23231: Document codecs.iterencode(), iterdecode() shortcomings | Martin Panter | 2016-10-15 | 1 | -0/+9 | |
| | | | ||||||
* | | | Make cs_path_exists a protected, static method | Jason R. Coombs | 2016-10-14 | 1 | -19/+19 | |
| | | | ||||||
* | | | Add case-sensitive file comparison for detecting/adding standard default files. | Jason R. Coombs | 2016-10-14 | 2 | -2/+25 | |
| | | | ||||||
* | | | Extract methods from sdist.add_defaults, allowing subclasses to override or ↵ | Jason R. Coombs | 2016-10-14 | 1 | -0/+15 | |
| | | | | | | | | | | | | inject different behaviors. | |||||
* | | | Get names for README files from class attribute, allowing subclass to override. | Jason R. Coombs | 2016-10-14 | 1 | -1/+3 | |
| | | | ||||||
* | | | Replace trailing comments with block-level comments | Jason R. Coombs | 2016-10-14 | 1 | -2/+4 | |
| | | | ||||||
* | | | Remove unused import and reorganize imports of modules. | Jason R. Coombs | 2016-10-14 | 1 | -1/+3 | |
| | | | ||||||
* | | | Remove wildcard imports from distutils.command.sdist | Jason R. Coombs | 2016-10-14 | 1 | -2/+2 | |
| | | | ||||||
* | | | [merge from 3.6] Issue28438 - Fix the link for pkgutil.get_data doc. | Senthil Kumaran | 2016-10-14 | 1 | -2/+4 | |
|\ \ \ | |/ / | | | | | | | Patch contributed by Xiang Zhang. | |||||
| * | | [merge from 3.5] Issue28438 - Fix the link for pkgutil.get_data doc. | Senthil Kumaran | 2016-10-14 | 1 | -2/+4 | |
| |\ \ | | |/ | | | | | | | Patch contributed by Xiang Zhang. | |||||
| | * | Issue28438 - Fix the link for pkgutil.get_data doc. Patch contributed by ↵ | Senthil Kumaran | 2016-10-14 | 1 | -2/+4 | |
| | | | | | | | | | | | | Xiang Zhang. |