- 20 Feb, 2016 4 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
'level' is specified but no __package__. This brings the function inline with builtins.__import__(). Thanks to Manuel Jacob for the patch.
-
Vinay Sajip authored
-
Vinay Sajip authored
-
- 19 Feb, 2016 8 commits
-
-
Martin Panter authored
-
Martin Panter authored
* The Windows-specific binary notice was probably a Python 2 thing * Make it more obvious gettarinfo() is based on stat(), and that non-ordinary files may need special care * The file name must be text; suggest dummy arcname as a workaround * Indicate TarInfo may be used directly, not just via gettarinfo()
-
Georg Brandl authored
-
Georg Brandl authored
-
Martin Panter authored
-
Martin Panter authored
* Add headings for each concrete and mix-in class and list methods and attributes under them * Fix class and method cross references * Changed RequestHandler to BaseRequestHandler and added class heading * Pull out Stream/DatagramRequestHandler definitions * Reordered the request handler setup(), handle(), finish() methods * Document constructor parameters for the server classes * Remove version 2.6 not relevant for Python 3 documentation
-
Martin Panter authored
-
Martin Panter authored
-
- 18 Feb, 2016 9 commits
-
-
Berker Peksag authored
the same values as open().
-
Berker Peksag authored
the same values as open().
-
Martin Panter authored
-
Martin Panter authored
Patch by Aviv Palivoda.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch from Chi Hsuan Yen.
-
- 16 Feb, 2016 2 commits
- 15 Feb, 2016 5 commits
-
-
Georg Brandl authored
-
Ned Deily authored
-
Ned Deily authored
versions 10.5 or higher. Original patch by A. Jesse Jiryu Davis.
-
Ned Deily authored
-
Ned Deily authored
-
- 14 Feb, 2016 3 commits
-
-
Raymond Hettinger authored
-
Martin Panter authored
-
Martin Panter authored
-
- 13 Feb, 2016 5 commits
-
-
Yury Selivanov authored
-
Yury Selivanov authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Martin Panter authored
Some of the inspiration and wording is taken from the text of PEP 498 by Eric V. Smith, and the existing str.format() documentation.
-
- 11 Feb, 2016 4 commits
-
-
Yury Selivanov authored
Microbenchmarks show 2-2.5x improvement. Built-in 'divmod' function is now also ~10% faster. -m timeit -s "x=22331" "x//2;x//-3;x//4;x//5;x//-6;x//7;x//8;x//-99;x//100;" with patch: 0.321 without patch: 0.633 -m timeit -s "x=22331" "x%2;x%3;x%-4;x%5;x%6;x%-7;x%8;x%99;x%-100;" with patch: 0.224 without patch: 0.66 Big thanks to Serhiy Storchaka, Mark Dickinson and Victor Stinner for thorow code reviews and algorithms improvements.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Different solution from 3.5.
-
Serhiy Storchaka authored
-