- 28 Mar, 2017 5 commits
-
-
Garvit Khatri authored
Add the 'monetary' parameter to format_string so that all uses of format can be converted to format_string. Adjust the documentation accordingly, and add a deprecation warning when format is used.
-
INADA Naoki authored
-
Amit Kumar authored
-
Barry Warsaw authored
bpo-19824 bpo-20314 bpo-12518
-
Alex Wang authored
The presence of the ``--enable-optimizations`` flag is indicated by the value of ``$enableval``, but the configure script was checking ``$withval``, resulting in the ``--enable-optimizations`` flag being effectively ignored.
-
- 27 Mar, 2017 11 commits
-
-
Brett Cannon authored
Instead have gcc be used for the coverage build so gcc is exercised in at least one place.
-
Victor Stinner authored
bpo-23890: unittest.TestCase.assertRaises() now manually breaks a reference cycle to not keep objects alive longer than expected.
-
Gerrit Holl authored
* DOC: clarify documentation for `round` Clarified that `round` can take a negative value for *ndigits*. * DOC: remove trailing whitespace in previous commit remove trailing whitespace in previous commit
-
Sylvain authored
-
Jim Fasarakis-Hilliard authored
-
Victor Stinner authored
Make also minor PEP8 coding style fixes on modified imports.
-
Serhiy Storchaka authored
-
Zachary Ware authored
* Remove unused test file * Remove duplicated text in sndhdrdata README
-
Zachary Ware authored
-
Jelle Zijlstra authored
-
Michael Seifert authored
-
- 26 Mar, 2017 2 commits
-
-
Jim Fasarakis-Hilliard authored
-
cocoatomo authored
-
- 25 Mar, 2017 5 commits
-
-
Serhiy Storchaka authored
Since functions in the os module support path-like objects, explicit converting Path to str no longer needed.
-
Serhiy Storchaka authored
Now general path-like objects are supported, not just pathlib.Path.
-
Serhiy Storchaka authored
Fast paths in partial.__new__ no longer needed since concatenating with empty tuple was optimized.
-
Mandeep Bhutani authored
-
NAKAMURA Osamu authored
-
- 24 Mar, 2017 7 commits
-
-
Ivan Levkivskyi authored
-
Serhiy Storchaka authored
In a future versions of Python this can be an error.
-
Serhiy Storchaka authored
when the OS gives priority to errors such as EACCES over EEXIST.
-
Antoine Pitrou authored
* bpo-29861: release references to multiprocessing Pool tasks Release references to tasks, their arguments and their results as soon as they are finished, instead of keeping them alive until another task arrives. * Comments in test
-
Serhiy Storchaka authored
permission bits of newly-created intermediate-level directories.
-
Sylvain Bellemare authored
-
Alex Dzyoba authored
* Fix `make tags` warnings `make tags` target tries to find C sources and headers in "Grammar" and "Mac" folders and generates these warnings: ctags: Warning: cannot open source file "Grammar/*.[ch]" : No such file or directory ctags: Warning: cannot open source file "Mac/*.[ch]" : No such file or directory This commit changes $SRCDIRS variable in configure.ac to remote these directories. This variable is used only for tags generation. Also, "configure" was regenerated with `autoreconf`. * Fix `make tags` fail on non-default tag names When ctags overrides default tags filename (e.g. `-f .tags`) `make tags` is failed because it assumes to see default `tags` filename: sort: cannot read: tags: No such file or directory This commit explicitly specifies "tags" filename for tags generation.
-
- 23 Mar, 2017 5 commits
-
-
Christophe Zeitouny authored
-
Serhiy Storchaka authored
There was few cases of using literal 0 instead of NULL in the context of pointers. While this was a legitimate C code, using NULL rather than 0 makes the code clearer.
-
Serhiy Storchaka authored
* bpo-6532: Make the thread id an unsigned integer. From C API side the type of results of PyThread_start_new_thread() and PyThread_get_thread_ident(), the id parameter of PyThreadState_SetAsyncExc(), and the thread_id field of PyThreadState changed from "long" to "unsigned long". * Restore a check in thread_get_ident().
-
Nathaniel J. Smith authored
* Provide socket.TCP_NOTSENT_LOWAT * New TCP option available on recent MacOS and Linux. * Document addition of TCP_NOTSENT_LOWAT
-
Ivan Levkivskyi authored
-
- 22 Mar, 2017 2 commits
-
-
INADA Naoki authored
-
Jelle Zijlstra authored
-
- 21 Mar, 2017 3 commits
-
-
Daniel Birnstiel authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-