- 19 Eki, 2017 3 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
George King yazdı
-
Łukasz Langa yazdı
Due to a bug in the initial fix, the setter was in fact creating a different property. This is now fixed.
-
- 18 Eki, 2017 3 kayıt (commit)
-
-
Ron yazdı
The word "difference" from missing the sentence. This clarifies that it compares the difference between the two objects.
-
Pablo Galindo yazdı
Fix timeout rounding in time.sleep(), threading.Lock.acquire() and socket.socket.settimeout() to round correctly negative timeouts between -1.0 and 0.0. The functions now block waiting for events as expected. Previously, the call was incorrectly non-blocking.
-
Mariatta yazdı
-
- 17 Eki, 2017 11 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
Even if one selects a font that defines a limited subset of the unicode Basic Multilingual Plane, tcl/tk will use other fonts that define a character. The expanded example give users of non-Latin characters a better idea of what they might see in the IDLE shell and editors. To make room for the expanded sample, frames on the Font tab are re-arranged. The Font/Tabs help explains a bit about the additions.
-
Victor Stinner yazdı
bpo-31803: time.clock() and time.get_clock_info('clock') now emit a DeprecationWarning warning. Replace time.clock() with time.perf_counter() in tests and demos. Remove also hasattr(time, 'monotonic') in test_time since time.monotonic() is now always available since Python 3.5.
-
Zane Bitter yazdı
-
Barry Warsaw yazdı
bpo-31799: Make module.__spec__ more discoverable
-
Riccardo Coccioli yazdı
Always pass -1, or INFTIM where defined, to the poll() system call when a negative timeout is passed to the poll.poll([timeout]) method in the select module. Various OSes throw an error with arbitrary negative values.
-
Pablo Galindo yazdı
bpo-31786: Make functions in the select module blocking when timeout is a small negative value. (#4003)
-
Mario Corchero yazdı
The new method allows the developer to control when to stop the feature of mocks that automagically creates new mocks when accessing an attribute that was not declared before Signed-off-by: Mario Corchero <mariocj89@gmail.com>
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
- 16 Eki, 2017 5 kayıt (commit)
-
-
Łukasz Langa yazdı
-
brainfvck yazdı
Freeze all the objects tracked by gc - move them to a permanent generation and ignore all the future collections. This can be used before a POSIX fork() call to make the gc copy-on-write friendly or to speed up collection.
-
Victor Stinner yazdı
* Rewrite win_perf_counter() to only use integers internally. * Add _PyTime_MulDiv() which compute "ticks * mul / div" in two parts (int part and remaining) to prevent integer overflow. * Clock frequency is checked at initialization for integer overflow. * Enhance also pymonotonic() to reduce the precision loss on macOS (mach_absolute_time() clock).
-
Pablo Galindo yazdı
-
Serhiy Storchaka yazdı
-
- 15 Eki, 2017 4 kayıt (commit)
-
-
Semen Zhydenko yazdı
-
vyas45 yazdı
-
Dargor yazdı
Patch by Pablo.
-
Terry Jan Reedy yazdı
Follow-up to Victor's patch that enabled autotest to run in IDLE's Shell.
-
- 14 Eki, 2017 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
INADA Naoki yazdı
This sentence is removed while backporting to 3.6 branch. See https://github.com/python/cpython/pull/3982#discussion_r144555768
-
Serhiy Storchaka yazdı
-
- 13 Eki, 2017 7 kayıt (commit)
-
-
Victor Stinner yazdı
The _PyTime API handles detects overflow and is well tested. Document that the signal will only be sent once if internal is equal to zero.
-
Victor Stinner yazdı
test_load_source() now replaces the current __name__ module with a temporary module to prevent side effects.
-
Victor Stinner yazdı
LoadLibrary("SHELL32") is not vulnerable to DLL hijacking.
-
Victor Stinner yazdı
When regrtest in run inside IDLE, sys.stdout and sys.stderr are not TextIOWrapper objects and have no file descriptor associated: sys.stderr.fileno() raises io.UnsupportedOperation. Disable faulthandler and don't replace sys.stdout in that case.
-
Berker Peksag yazdı
-
INADA Naoki yazdı
Pattern `[a-z]` with `IGNORECASE` flag can match to some non-ASCII characters. Straightforward solution for this is using `IGNORECASE | ASCII` flag. But users may subclass `Template` and override only `idpattern`. So we want to avoid changing `Template.flags`. So this commit uses local flag `-i` for `idpattern` and change `[a-z]` to `[a-zA-Z]`.
-
Berker Peksag yazdı
Reported by John Gamboa on docs@p.o at https://mail.python.org/pipermail/docs/2017-June/031942.html
-
- 12 Eki, 2017 4 kayıt (commit)
-
-
Ned Deily yazdı
-
Serhiy Storchaka yazdı
-
Ned Deily yazdı
-
Éric Araujo yazdı
-