Commits · 0563be23a557917228a8b48cbb31bda285a3a815
- Dec 01, 2022
-
-
Pablo Galindo Salgado authored
-
Serhiy Storchaka authored
-
C.A.M. Gerlach authored
-
- Nov 30, 2022
-
-
ram vikram singh authored
-
Serhiy Storchaka authored
-
Géry Ogam authored
-
Michael Droettboom authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Irit Katriel authored
-
Arne de Laat authored
-
Irit Katriel authored
-
Pablo Galindo Salgado authored
-
Géry Ogam authored
-
Kumar Aditya authored
-
dmjohnsson23 authored
-
Wenzel Jakob authored
-
- Nov 29, 2022
-
-
Dong-hee Na authored
-
Pete Wicken authored
-
Géry Ogam authored
-
Yilei "Dolee" Yang authored
-
Sam Ezeh authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Kumar Aditya authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- Nov 28, 2022
-
-
cemysce authored
-
Matthew Hughes authored
-
Victor Stinner authored
-
David Miguel Susano Pinto authored
-
Victor Stinner authored
-
Zackery Spytz authored
-
Georg Brandl authored
-
Petr Viktorin authored
-
Furkan Onder authored
-
- Nov 27, 2022
-
-
Erlend E. Aasland authored
-
Sam Ezeh authored
-
Hugo van Kemenade authored
-
Nikita Sobolev authored
-
- Nov 27, 2022
-
-
Anthony Sottile authored
gh-99815: remove unused 'invalid' sentinel value and code that checks for it in inspect.signature parsing (GH-21104)
-
Ronald Oussoren authored
On macOS all file descriptors for a particular file in /dev/fd share the same file offset, that is ``open("/dev/fd/9", "r")`` behaves more like ``dup(9)`` than a regular open. This causes problems when a user tries to run "/dev/fd/9" as a script because zipimport changes the file offset to try to read a zipfile directory. Therefore change zipimport to reset the file offset after trying to read the zipfile directory. -
Yonatan Goldschmidt authored
-
Brad Wolfe authored
* Change documentation for sys.float_info.rounds Change the documentation for sys.float_info.rounds to remove references to C99 section 5.2.4.2.2 and instead place the available values inline. * Correction to previous documentation change Newlines were not preserved in generated HTML on previous commit. I have changes the list to a comma-separated list of values and their meanings. * Clarify source for value of FLT_ROUNDS Clarify the source of the FLT_ROUNDS value and change 'floating-point addition' to 'floating-point arithmetic' to indicate that the rounding mode applies to all arithmetic operations.
-
George Zhang authored
-
Zackery Spytz authored
The docs stated that PyImport_ImportFrozenModuleObject() returns a new reference, but it actually returns an int. Co-authored-by:Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
-
Kumar Aditya authored
Closes #66285
-
- Nov 26, 2022
-
-
Nick Drozd authored
-
Ivan Savov authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
* gh-98098: Move zipfile into a package. * Moved test_zipfile to a package * Extracted module for test_path. * Add blurb * Add jaraco as owner of zipfile.Path. * Synchronize with minor changes found at jaraco/zipp@d9e7f4352d. * gh-98108: Sync with zipp 3.9.1 adding pickleability.
-
busywhitespace authored
Changing TraversableReader to TraversableResources at one place of the documentation. See #99795 for more details.
-
Jason R. Coombs authored
* Add zipfile and test_zipfile to list of packages. Fixes regression introduced in #98103. * Restore support for py -m test.test_zipfile
-
Sam Ezeh authored
Co-authored-by:Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
-
Jason R. Coombs authored
* gh-98098: Move zipfile into a package. * Moved test_zipfile to a package * Extracted module for test_path. * Add blurb * Add jaraco as owner of zipfile.Path. * Synchronize with minor changes found at jaraco/zipp@d9e7f4352d.
-
Jason R. Coombs authored
gh-97966: Restore prior expectation that uname_result._fields and ._asdict would include the processor. (gh-98343)
-
-
Nikita Sobolev authored
Now it is in sync with https://docs.python.org/3/library/hmac.html#hmac.compare_digest It is the same function, just re-exported. So, I guess they should mention the same input types.
-
TheShermanTanker authored
Co-authored-by:Steve Dower <steve.dower@python.org>
-
Terry Jan Reedy authored
A opy of #98549, whose author (@icecream17) uses a school computer that blocks the CLA site. I did not mention this in commit comment above so CLA bot does not pick up the name and request the CLA again.
-
- Nov 25, 2022
-
-
Victor Stinner authored
Cast argument to the expected type.
-
Barney Gale authored
`relative_to()` now treats naked drive paths as relative. This brings its behaviour in line with other parts of pathlib, and with `ntpath.relpath()`, and so allows us to factor out the pathlib-specific implementation.
-
Stanley authored
gh-64019: Have attribute table in `inspect` docs link to module attributes instead of listing them (GH-98116) Co-authored-by:Michael Anckaert <michael.anckaert@sinax.be>
-
Gary Donovan authored
Trivial change to comment - no issue or new entry necessary
-
Zackery Spytz authored
In multiprocessing.shared_memory.SharedMemory(), the temporary view returned by MapViewOfFile() should be unmapped when it is no longer needed.
-
Erlend E. Aasland authored
Co-authored-by:
C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by:
Ezio Melotti <ezio.melotti@gmail.com>
-
Zackery Spytz authored
-
Zackery Spytz authored
-
- Nov 24, 2022
-
-
Victor Stinner authored
Revert "gh-98724: Fix Py_CLEAR() macro side effects (#99100)" This reverts commit c03e05c2.
-
colorfulappl authored
-
Kumar Aditya authored
-
Zachary Ware authored
Also some cosmetic blank line additions for consistency with the formatting of the rest of the file.
-
Kumar Aditya authored
Such buildbots (at the time of writing, only "AMD64 RHEL8 FIPS Only Blake2 Builtin Hash 3.x") cannot use multiprocessing with a fork server, so just skip the test there.
-
Guido van Rossum authored
It was a no-op when used as recommended (after close()). I had to debug one test (test__sock_sendfile_native_failure) -- the cleanup sequence for the test fixture was botched. Hopefully that's not a portend of problems in user code -- this has never worked so people may well be doing this wrong. :-( Co-authored-by: kumar aditya
-
colorfulappl authored
Fix double-free bug mentioned at https://github.com/python/cpython/issues/99240, by moving memory clean up out of "exit" label. Automerge-Triggered-By: GH:erlend-aasland
-
colorfulappl authored
-
Irit Katriel authored
-
zhanpon authored
gh-94808: [coverage] Add an asynchronous generator test where the generator is already running (#97672)
-
SQLPATCH authored
Issue: #98872 Automerge-Triggered-By: GH:kumaraditya303
-
David Hewitt authored
-
Loading