summaryrefslogtreecommitdiffstats
path: root/Modules/clinic
Commit message (Expand)AuthorAgeFilesLines
* bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...Serhiy Storchaka2020-05-2814-61/+61
* bpo-37129: Add os.RWF_APPEND flag for os.pwritev() (GH-20336)YoSTEALTH2020-05-271-1/+2
* bpo-40791: Use CRYPTO_memcmp() for compare_digest (#20456)Christian Heimes2020-05-271-1/+41
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-2632-1743/+65
* bpo-38580: Document that select() accepts iterables, not just sequences (GH-1...Jakub Stasiak2020-05-251-2/+2
* Let the argument clinic do the type checking for heapq (GH-20284)Raymond Hettinger2020-05-221-1/+97
* bpo-40630: Add tracemalloc.reset_peak (GH-20102)Huon Wilson2020-05-221-1/+21
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-181-1/+43
* bpo-40665: Use Argument Clinic for the bisect module (GH-20163)Shantanu2020-05-181-0/+306
* bpo-37630: Fix spelling shake128 -> shake_128 (GH-20154)Christian Heimes2020-05-171-27/+27
* bpo-40645: Implement HMAC in C (GH-20129)Christian Heimes2020-05-171-8/+167
* bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049)Christian Heimes2020-05-161-1/+473
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-161-1/+55
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-151-11/+49
* bpo-40479: Fix hashlib issue with OpenSSL 3.0.0 (GH-20107)Christian Heimes2020-05-151-4/+6
* bpo-40549: posixmodule.c uses defining_class (GH-20075)Victor Stinner2020-05-141-56/+35
* bpo-36346: array: Don't use deprecated APIs (GH-19653)Inada Naoki2020-05-111-7/+10
* bpo-40549: Convert posixmodule.c to multiphase init (GH-19982)Victor Stinner2020-05-101-12/+11
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-071-0/+101
* bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)Serhiy Storchaka2020-05-021-3/+3
* bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)Victor Stinner2020-04-291-42/+1
* bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703)Victor Stinner2020-04-291-1/+42
* bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19637)Victor Stinner2020-04-221-13/+5
* bpo-40178: Convert the remaining os functions to Argument Clinic. (GH-19360)Serhiy Storchaka2020-04-181-1/+558
* bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364)Serhiy Storchaka2020-04-181-3/+3
* bpo-40286: Add randbytes() method to random.Random (GH-19527)Victor Stinner2020-04-171-1/+42
* bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreter...Victor Stinner2020-04-121-22/+0
* bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201)Victor Stinner2020-04-011-1/+61
* bpo-39822: Use NULL instead of None for empty attrib in Element. (GH-18735)Serhiy Storchaka2020-03-091-1/+5
* bpo-39802: Only expose set_escdelay and set_tabsize when curses extensions ar...Batuhan Taşkaya2020-03-031-1/+33
* bpo-39495: Remove default value from C impl of TreeBuilder.start (GH-18275)Shantanu2020-03-021-7/+7
* bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH...Serhiy Storchaka2020-02-231-61/+1
* bpo-39479:Add math.lcm() function: Least Common Multiple (#18547)ananthan-1232020-02-191-1/+31
* bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507)Dong-hee Na2020-02-141-4/+4
* bpo-39395: putenv() and unsetenv() always available (GH-18135)Victor Stinner2020-01-241-5/+5
* bpo-39413: Implement os.unsetenv() on Windows (GH-18163)Victor Stinner2020-01-241-3/+39
* bpo-39426: Fix outdated default and highest protocols in docs (GH-18154)Mark Dickinson2020-01-241-7/+8
* bpo-39406: Implement os.putenv() with setenv() if available (GH-18128)Victor Stinner2020-01-221-5/+5
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-221-39/+3
* bpo-39353: Deprecate the binhex module (GH-18025)Victor Stinner2020-01-221-8/+3
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-211-3/+39
* bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...Pablo Galindo2020-01-141-1/+10
* bpo-39310: Add math.ulp(x) (GH-17965)Victor Stinner2020-01-131-1/+40
* bpo-39288: Add math.nextafter(x, y) (GH-17937)Victor Stinner2020-01-121-1/+49
* bpo-38916: array.array: remove fromstring() and tostring() (GH-17487)Victor Stinner2019-12-091-69/+1
* closes bpo-38712: Add signal.pidfd_send_signal. (GH-17070)Benjamin Peterson2019-11-201-1/+75
* bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)Victor Stinner2019-11-201-31/+16
* bpo-36589: Fix the error handling in curses.update_lines_cols(). (GH-12766)Zackery Spytz2019-11-171-13/+3
* bpo-38692: Add os.pidfd_open. (GH-17063)Benjamin Peterson2019-11-061-1/+43
* bpo-35381 Remove all static state from posixmodule (GH-15892)Eddie Elizondo2019-11-051-2/+2