- 27 Eyl, 2017 1 kayıt (commit)
-
-
Oren Milman yazdı
-
- 26 Eyl, 2017 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 25 Eyl, 2017 9 kayıt (commit)
-
-
Guilherme Caminha yazdı
- Remove the second mention about the `u` prefix - Remove the second mention about numeric literals do not include a sign
-
Serhiy Storchaka yazdı
-
Stefan Grönke yazdı
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
Non-regression tests for the Expat 2.2.3 UTF-8 decoder bug.
-
Raymond Hettinger yazdı
-
Oren Milman yazdı
bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in case of a bad __dict__. (#3254)
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 24 Eyl, 2017 10 kayıt (commit)
-
-
Benjamin Peterson yazdı
Python requires C implementations provide memmove, so we shouldn't need to check for it. The only place using this configure check was expat, where we can simply always define HAVE_MEMMOVE.
-
Sanket Dasgupta yazdı
The dunderless functions are preferred; dunder are retained for back compatilibity. Patch by Sanket Dasgupta.
-
Oren Milman yazdı
-
Oren Milman yazdı
-
Henk-Jaap Wagenaar yazdı
A `"` was missing from an `<a href>` tag.
-
Serhiy Storchaka yazdı
Defer removing old behavior to 3.8. Document new feature of selection_set() and friends.
-
Serhiy Storchaka yazdı
now becames exhausted after advancing the groupby iterator.
-
Oren Milman yazdı
bpo-31311: Impove error reporting in case the first argument to PyCData_setstate() isn't a dictionary. (#3255)
-
Oren Milman yazdı
bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() received a bad encoder() argument. (#3643)
-
topper-123 yazdı
Mention that ``NewType`` can derive from another ``NewType``.
-
- 23 Eyl, 2017 5 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Cheryl Sabella yazdı
The original module-level class and method browser became a module browser, with the addition of module-level functions, years ago. Nested classes and functions were added yesterday. For back- compatibility, the virtual event <<open-class-browser>>, which appears on the Keys tab of the Settings dialog, is not changed. Patch by Cheryl Sabella.
-
Terry Jan Reedy yazdı
Order dependence caused leak-test buildbots to fail when running test_idle repeatedly.
-
Dmitry Chestnykh yazdı
-
Benjamin Peterson yazdı
-
- 22 Eyl, 2017 6 kayıt (commit)
-
-
Cheryl Sabella yazdı
Original patches for code and tests by Guilherme Polo and Cheryl Sabella, respectively.
-
Neil Schemenauer yazdı
* Maintain a list of BufferedWriter objects. Flush them on exit. In Python 3, the buffer and the underlying file object are separate and so the order in which objects are finalized matters. This is unlike Python 2 where the file and buffer were a single object and finalization was done for both at the same time. In Python 3, if the file is finalized and closed before the buffer then the data in the buffer is lost. This change adds a doubly linked list of open file buffers. An atexit hook ensures they are flushed before proceeding with interpreter shutdown. This is addition does not remove the need to properly close files as there are other reasons why buffered data could get lost during finalization. Initial patch by Armin Rigo. * Use weakref.WeakSet instead of WeakKeyDictionary. * Simplify buffered double-linked list types. * In _flush_all_writers(), suppress errors from flush(). * Remove NEWS entry, use blurb. * Take more care when flushing file buffers from atexit. The previous implementation was not careful enough to avoid causing issues in multi-threaded cases. Check for buf->ok and buf->finalizing before actually doing the flush. Also, increase the refcnt to ensure the object does not disappear.
-
François Magimel yazdı
Use prefixed macro names for the `authoraddress` function, add T2A to the font encoding in LaTeX sources to support Cyrillic characters in the PDF documentation, and replace the deprecated `font_size` config option with `pointsize`.
-
Barry Warsaw yazdı
* Give pdb.set_trace() an optional `header` argument * What's new. * Give pdb.set_trace() an optional `header` argument * What's new.
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
- 21 Eyl, 2017 5 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Affected classes are bytearray, array, deque, defaultdict, count and repeat.
-
Igor Filatov yazdı
Previously ensurepip would always report success, even if the pip installation failed.
-
Serhiy Storchaka yazdı
-
nurelin yazdı
Fix a memory corruption in getpath.c due to mixed memory allocators between Py_GetPath() and Py_SetPath(). The fix use the Raw allocator to mimic the windows version. This patch should be used from python3.6 to the current version for more details, see the bug report and https://github.com/pyinstaller/pyinstaller/issues/2812
-
- 20 Eyl, 2017 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
* bpo-31536: Avoid wholesale rebuild after `make regen-all` * Add NEWS
-