- 20 Eki, 2018 10 kayıt (commit)
-
-
Stéphane Wirtel yazdı
-
Sergey Fedoseev yazdı
-
Ned Deily yazdı
-
Alexey Izbyshev yazdı
Set SRCDIR as the current directory for git.
-
Pablo Galindo yazdı
The symbol table was not exposing functionality to query the nonlocal symbols in a function or to check if a particular symbol is nonlocal.
-
Sergey Fedoseev yazdı
Simplify the pickling of set and dictionary objects iterators by consuming the iterator into a list with PySequence_List.
-
Pablo Galindo yazdı
Add restriction on the offset parameter for mmap.flush. Explain that ALLOCATIONGRANULARITY is the same as PAGESIZE in Unix.
-
Berker Peksag yazdı
Initial patch by Chandan Kumar.
-
Alexey Izbyshev yazdı
path_error() uses GetLastError() on Windows, but some os functions are implemented via CRT APIs which report errors via errno. This may result in raising OSError with invalid error code (such as zero). Introduce posix_path_error() function and use it where appropriate.
-
Alexey Izbyshev yazdı
If buffering=1 is specified for open() in binary mode, it is silently treated as buffering=-1 (i.e., the default buffer size). Coupled with the fact that line buffering is always supported in Python 2, such behavior caused several issues (e.g., bpo-10344, bpo-21332). Warn that line buffering is not supported if open() is called with binary mode and buffering=1.
-
- 19 Eki, 2018 21 kayıt (commit)
-
-
Victor Stinner yazdı
sys and threading were imported twice.
-
Matthias Bussonnier yazdı
-
Andrés Delfino yazdı
-
Serhiy Storchaka yazdı
-
Chris Barker yazdı
-
David Herberth yazdı
-
Julien Palard yazdı
-
Mario Corchero yazdı
The docs in `library/unittest.mock` have been updated to remove confusing terms about submock and be explicit about the behavior expected.
-
jdemeyer yazdı
-
Serhiy Storchaka yazdı
* Simplify the C code. * Simplify tests and make them more strict and robust. * Add references in the documentation.
-
Sergey Fedoseev yazdı
-
Quan Tian yazdı
-
-
The reprlib code was copied here instead of importing reprlib. I'm not sure if we really need to avoid the import, but since I expect dataclasses to be more common that reprlib, it seems wise. Plus, the code is small.
-
Serhiy Storchaka yazdı
Use tp_members and tp_getset instead.
-
Serhiy Storchaka yazdı
for invalid escape sequences in string and bytes literals.
-
matthewbelisle-wf yazdı
Adding `max_num_fields` to `cgi.FieldStorage` to make DOS attacks harder by limiting the number of `MiniFieldStorage` objects created by `FieldStorage`.
-
Serhiy Storchaka yazdı
It is now guarantied that children of xml.etree.ElementTree.Element are Elements (at least in C implementation). Previously methods __setitem__(), __setstate__() and __deepcopy__() could be used for adding non-Element children.
-
Zackery Spytz yazdı
-
Cheryl Sabella yazdı
This allows *from_* to be successfully set to a non-default value when calling mbox.get_string.
-
Braden Groom yazdı
-
- 18 Eki, 2018 6 kayıt (commit)
-
-
Shivank98 yazdı
This is intended to help code explorers find out more about what's defined there.
-
Juliette Monsel yazdı
-
Vinay Sajip yazdı
-
stratakis yazdı
Update the outdated install-sh file to the latest revision from automake v1.16.1
-
Serhiy Storchaka yazdı
C implementation of xml.etree.ElementTree.Element.__setstate__() leaked references to children when called for already initialized element.
-
Gregory P. Smith yazdı
Restores the use of pyexpatns.h to isolate our embedded copy of the expat C library so that its symbols do not conflict at link or dynamic loading time with an embedding application or other extension modules with their own version of libexpat. https://github.com/python/cpython/commit/5dc3f23b5fb0b510926012cb3732dae63cddea60#diff-3afaf7274c90ce1b7405f75ad825f545 inadvertently removed it when upgrading expat.
-
- 17 Eki, 2018 3 kayıt (commit)
-
-
Stéphane Wirtel yazdı
On macOS, fix reading from and writing into a file with a size larger than 2 GiB.
-
Cheryl Sabella yazdı
-
Stéphane Wirtel yazdı
Verify the value for the parameter '-s' of the cProfile CLI. Patch by Robert Kuska. Co-authored-by: Robert Kuska <rkuska@gmail.com>
-