- 15 May, 2017 6 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Co-Authored-By: Chi Hsuan Yen <yan12125@gmail.com>.
-
Xiang Zhang yazdı
-
Xiang Zhang yazdı
-
Xiang Zhang yazdı
-
csabella yazdı
The data model section of the language reference was written well before the zero-argument form of super() was added. To avoid giving the impression that they're doing something unusual, this updates the description of `__new__` and `__init__` to use the zero-argument form. Patch by Cheryl Sabella.
-
- 14 May, 2017 4 kayıt (commit)
-
-
Zachary Ware yazdı
-
csabella yazdı
-
Serhiy Storchaka yazdı
`re.compile(..., re.DEBUG)` now displays the compiled bytecode in human readable form.
-
Serhiy Storchaka yazdı
This increased the performance of matching some patterns up to 25 times.
-
- 13 May, 2017 5 kayıt (commit)
-
-
morrme yazdı
-
Mariatta yazdı
-
Jim Fasarakis-Hilliard yazdı
-
Serhiy Storchaka yazdı
rather than `format(str(self), '')`.
-
Xiang Zhang yazdı
* add a comment about why we need to increase trash_delete_nesting * move increase and decrese outside of the loop
-
- 12 May, 2017 3 kayıt (commit)
-
-
Charles yazdı
Using a response file will eliminate the headache associated with batch argument/quote processing. For example I unsucessfully compiled python with visualcpptools when specifying VSInstallDir in the batch file (cannot find vcruntime.h) ```batch build.bat -p x64 -e -M --no-tkinter "/p:VCInstallDir=%VCInstallDir%" ``` but it build successfully when specifying it in a response file msbuild.rsp: ``` /p:VCInstallDir=%VCInstallDir% ```
-
Steve (Gadget) Barnes yazdı
bpo-30291 Changes to launcher so as to allow py -3-32, -2.7-64, 3.10, etc.
-
Vinay Sajip yazdı
Indented parts of the Handler class documentation for improved presentation, analogous to a recent similar change for the Logger class.
-
- 11 May, 2017 3 kayıt (commit)
-
-
Brett Cannon yazdı
-
csabella yazdı
* bpo-30308: Code coverage for argument in random.shuffle * bpo-30308: Code coverage for argument in random.shuffle * bpo-30308: Code coverage for argument in random.shuffle
-
INADA Naoki yazdı
when there are no more `await` or `yield (from)` before return in coroutine, cancel was ignored. example: async def coro(): asyncio.Task.current_task().cancel() return 42 ... res = await coro() # should raise CancelledError
-
- 10 May, 2017 5 kayıt (commit)
-
-
Giampaolo Rodola yazdı
-
stratakis yazdı
* bpo-28787: Fix out of tree --with-dtrace builds * Unsilence directory creation * Add Misc/NEWS and Misc/ACKS entries
-
Xiang Zhang yazdı
-
Serhiy Storchaka yazdı
Now allowed several subsequential inline modifiers at the start of the pattern (e.g. '(?i)(?s)...'). In verbose mode whitespaces and comments now are allowed before and between inline modifiers (e.g. '(?x) (?i) (?s)...').
-
Victor Stinner yazdı
Rewrite sigwaitinfo() and sigtimedwait() unit tests for EINTR using pthread_sigmask() to fix a race condition between the child and the parent process. Remove the pipe which was used as a weak workaround against the race condition. sigtimedwait() is now tested with a child process sending a signal instead of testing the timeout feature which is more unstable (especially regarding to clock resolution depending on the platform).
-
- 09 May, 2017 7 kayıt (commit)
-
-
Charles yazdı
Custom msbuild properties passed as command line need to be passed too when calling `Build` when doing PGO build.
-
Serhiy Storchaka yazdı
of regular expressions.
-
Serhiy Storchaka yazdı
a submodule to a name are now supported.
-
Jeremy Kloth yazdı
compiled out-of-tree (builddir != srcdir). (see also bpo-15366)
-
Victor Stinner yazdı
If the child process exited with a non-zero code, don't strip the last line of stdout anymore. Add also a sanity check in accumulate_result().
-
Xiang Zhang yazdı
When decoding a 4-byte GB18030 sequence, the first and third byte cannot exceed 0xFE.
-
Xiang Zhang yazdı
-
- 08 May, 2017 2 kayıt (commit)
-
-
Pierre Quentel yazdı
-
Jim Fasarakis-Hilliard yazdı
-
- 07 May, 2017 1 kayıt (commit)
-
-
Jim Fasarakis-Hilliard yazdı
-
- 06 May, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 05 May, 2017 3 kayıt (commit)
-
-
Jelle Zijlstra yazdı
Thanks to Jelle Zijlstra for the patch.
-
torsava yazdı
* bpo-29243: Fix Makefile with respect to --enable-optimizations When using the Profile Guided Optimization (./configure --enable-optimizations) Python is built not only during `make` but rebuilt again during `make test`, `make install` and others. This patch fixes the issue. Note that this fix produces no change at all in the Makefile if configure is run witout --enable-optimizations. * !squash
-
masklinn yazdı
-