- 19 Agu, 2016 9 kayıt (commit)
-
-
Victor Stinner yazdı
Clang is smarter than GCC and emits a warning for dead code after a function declared with __attribute__((__noreturn__)) (Py_FatalError).
-
Berker Peksag yazdı
PyModule_NewObject already sets md_dict to PyDict_New(): m->md_dict = PyDict_New();
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Patch by Eryk Sun and Emanuel Barry.
-
R David Murray yazdı
Also moved news item for #2466 to the correct place.
-
R David Murray yazdı
-
R David Murray yazdı
-
R David Murray yazdı
Patch by Robin Roth, reviewed by Serhiy Storchaka, comment wording tweaked by me.
-
- 18 Agu, 2016 6 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Guido van Rossum yazdı
- Issue #25958: Support "anti-registration" of special methods from various ABCs, like __hash__, __iter__ or __len__. All these (and several more) can be set to None in an implementation class and the behavior will be as if the method is not defined at all. (Previously, this mechanism existed only for __hash__, to make mutable classes unhashable.) Code contributed by Andrew Barnert and Ivan Levkivskyi.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #27558: Fix a SystemError in the implementation of "raise" statement. In a brand new thread, raise a RuntimeError since there is no active exception to reraise. Patch written by Xiang Zhang.
-
Serhiy Storchaka yazdı
-
- 17 Agu, 2016 25 kayıt (commit)
-
-
Alexander Belopolsky yazdı
Does not appear to be a problem anymore and I cannot figure out why it was skipped in the first place.
-
Ned Deily yazdı
enabled: ensure code object has a valid first line number. Patch suggested by Ivan Levkivskyi.
-
Victor Stinner yazdı
The z variable is known to be a fresh number which cannot be shared, Py_SIZE() can be used directly to negate the number.
-
Vinay Sajip yazdı
-
Zachary Ware yazdı
-
Zachary Ware yazdı
sys.version[0] gives a string, which fails > comparison with 2. Reported by Arne Maximilian Richter on docs@
-
Victor Stinner yazdı
It's sometimes hard to check quickly if tests succeeded, failed or something bad happened. I added a final "Result: xxx" line which summarizes all outputs into a single line, written at the end (it should always be the last line of the output).
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* Memove -t option of ctags. The option was kept for backward compatibility, but it was completly removed recently. Patch written by Stéphane Wirtel. * Set locale to C to call sort. vim expects that the tags file is sorted using english collation, so it fails if the locale is french for example. Use LC_ALL=C to force english sorting order. .
-
Victor Stinner yazdı
vim expects that the tags file is sorted using english collation, so it fails if the locale is french for example. Use LC_ALL=C to force english sorting order. Issue #27726.
-
Victor Stinner yazdı
The option was kept for backward compatibility, but it was completly removed recently. Patch written by Stéphane Wirtel.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
If Popen.communicate() raises an exception, kill the child process to not leave a running child process in background and maybe create a zombi process. This change fixes a ResourceWarning in Python 3.6 when unit tests are interrupted by CTRL+c.
-
Victor Stinner yazdı
Use milliseconds and minutes units, not only seconds.
-
Victor Stinner yazdı
Display the top 10 slowest tests.
-
Victor Stinner yazdı
Thanks to optparse, --slow syntax still works ;-)
-
Victor Stinner yazdı
-
Raymond Hettinger yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-