- 24 Mar, 2017 2 kayıt (commit)
-
-
Sylvain Bellemare yazdı
-
Alex Dzyoba yazdı
* 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 kayıt (commit)
-
-
Christophe Zeitouny yazdı
-
Serhiy Storchaka yazdı
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 yazdı
* 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 yazdı
* Provide socket.TCP_NOTSENT_LOWAT * New TCP option available on recent MacOS and Linux. * Document addition of TCP_NOTSENT_LOWAT
-
Ivan Levkivskyi yazdı
-
- 22 Mar, 2017 2 kayıt (commit)
-
-
INADA Naoki yazdı
-
Jelle Zijlstra yazdı
-
- 21 Mar, 2017 5 kayıt (commit)
-
-
Daniel Birnstiel yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Ned Deily yazdı
Use --short form of git hash. Use output from "git describe" for tag. Expected outputs: 1. previous hg 2. previous git 3. updated git Release (tagged) build: 1. Python 3.7.0a0 (v3.7.0a0:4def2a2901a5, ... 2. Python 3.7.0a0 (v3.7.0a0^0:05f53735, ... 3. Python 3.7.0a0 (v3.7.0a0:05f53735, ... Development build: 1. Python 3.7.0a0 (default:41df79263a11, ... 2. Python 3.7.0a0 (master:05f53735, ... 3. Python 3.7.0a0 (heads/master-dirty:05f53735, ... "dirty" means the working tree has uncommitted changes. See "git help describe" for more info.
-
Xiang Zhang yazdı
-
- 20 Mar, 2017 4 kayıt (commit)
-
-
zertrin yazdı
`NotImplentedError` --> `NotImplementedError`
-
Benjamin Peterson yazdı
This reverts commit 02371e0e.
-
4kir4 yazdı
-
Mariatta yazdı
From Shifted Dxit -> Shifted Exit in Doc/library/curses.rst
-
- 19 Mar, 2017 11 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Brett Cannon yazdı
The $CXX environment variable is not exported under the 'c' language on Travis.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Based on patch by Vajrasky Kok.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Added the documentation for PyUnicode_Translate().
-
- 18 Mar, 2017 1 kayıt (commit)
-
-
Marco Buttu yazdı
-
- 17 Mar, 2017 5 kayıt (commit)
-
-
Brett Cannon yazdı
This will eliminate one of the builds in Travis, allowing for CI overall to complete faster.
-
Jim Fasarakis-Hilliard yazdı
The module is implicitly tested through test_urllib.
-
Коренберг Марк yazdı
-
Marco Buttu yazdı
Initial patch by Vajrasky Kok.
-
Marco Buttu yazdı
-
- 16 Mar, 2017 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 15 Mar, 2017 3 kayıt (commit)
-
-
Nate yazdı
Many metaclasses in the standard library don't play nice with __init_subclass__. This bug makes ABCMeta in particular with __init_subclass__, which is an 80/20 solution for me personally. AFAICT, a general solution to this problem requires updating all metaclasses in the standard library to make sure they pass **kwargs to type.__new__, whereas this PR only fixes ABCMeta. For context, see https://bugs.python.org/issue29581. * added a test combining ABCMeta and __init_subclass__ * Added NEWS item
-
-
Michael Seifert yazdı
-
- 14 Mar, 2017 1 kayıt (commit)
-
-
Donald Stufft yazdı
-