| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731) | Eric Snow | 2019-02-23 | 1 | -2/+2 |
|
|
* | bpo-36016: Add generation option to gc.getobjects() (GH-11909) | Pablo Galindo | 2019-02-23 | 2 | -12/+64 |
|
|
* | bpo-36068: Make _tuplegetter objects serializable (GH-11981) | Joe Jevnik | 2019-02-21 | 1 | -1/+12 |
|
|
* | bpo-34572: change _pickle unpickling to use import rather than retrieving fro... | tjb900 | 2019-02-18 | 1 | -6/+6 |
|
|
* | bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) | animalize | 2019-02-18 | 2 | -1/+9 |
|
|
* | bpo-35942: Improve the error message if __fspath__ returns invalid types in p... | Pablo Galindo | 2019-02-18 | 1 | -8/+15 |
|
|
* | bpo-34720: Fix test_importlib.test_bad_traverse for AIX (GH-9391) | Michael Felt | 2019-02-17 | 1 | -0/+8 |
|
|
* | bpo-1054041: Exit properly after an uncaught ^C. (#11862) | Gregory P. Smith | 2019-02-16 | 1 | -0/+30 |
|
|
* | bpo-35984: _xxsubinterpreters: Fix memory leak in _channel_send() (GH-11845) | Alexey Izbyshev | 2019-02-15 | 1 | -0/+1 |
|
|
* | closes bpo-35991: Fix a potential double free in Modules/_randommodule.c. (GH... | Zackery Spytz | 2019-02-14 | 1 | -1/+0 |
|
|
* | Remove stray quote in os.replace docstring. (GH-11556) | Anthony Sottile | 2019-02-13 | 2 | -4/+4 |
|
|
* | Fix division by 0 when checking for overflow in math.prod (GH-11808) | Pablo Galindo | 2019-02-10 | 1 | -2/+2 |
|
|
* | lru_cache: Add more comments. Fix comment typos. Clarify a comment. (GH-11795) | Raymond Hettinger | 2019-02-09 | 1 | -4/+25 |
|
|
* | bpo-35606: Implement math.prod (GH-11359) | Pablo Galindo | 2019-02-07 | 2 | -1/+205 |
|
|
* | bpo-32417: Make timedelta arithmetic respect subclasses (#10902) | Paul Ganssle | 2019-02-04 | 1 | -4/+6 |
|
|
* | bpo-29734: nt._getfinalpathname handle leak (GH-740) | Mark Becwar | 2019-02-02 | 1 | -8/+10 |
|
|
* | bpo-33895: Relase GIL while calling functions that acquire Windows loader loc... | Tony Roberts | 2019-02-02 | 4 | -6/+31 |
|
|
* | bpo-35813: Added shared_memory submodule of multiprocessing. (#11664) | Davin Potts | 2019-02-02 | 1 | -0/+724 |
|
|
* | bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719) | Victor Stinner | 2019-02-01 | 1 | -11/+13 |
|
|
* | bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH... | Joannah Nanjekye | 2019-02-01 | 2 | -31/+57 |
|
|
* | Speed-up argument parsing for common cases in deque.__init__()(GH-11717) | Raymond Hettinger | 2019-02-01 | 1 | -3/+7 |
|
|
* | Consistently move the misses update to just before the user function call (GH... | Raymond Hettinger | 2019-01-31 | 1 | -3/+5 |
|
|
* | bpo-35766: Merge typed_ast back into CPython (GH-11645) | Guido van Rossum | 2019-01-31 | 1 | -0/+6 |
|
|
* | Move float conversion into a macro. Apply to fsum (GH-11698) | Raymond Hettinger | 2019-01-30 | 1 | -49/+32 |
|
|
* | bpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694) | Andreas Schwab | 2019-01-29 | 1 | -1/+1 |
|
|
* | Fast path for int inputs to math.dist() and math.hypot() (GH-11692) | Raymond Hettinger | 2019-01-28 | 1 | -3/+24 |
|
|
* | bpo-35780: Fix errors in lru_cache() C code (GH-11623) | Raymond Hettinger | 2019-01-26 | 1 | -84/+188 |
|
|
* | bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528) | Lucas Cimon | 2019-01-22 | 1 | -0/+1 |
|
|
* | bpo-33416: Add end positions to Python AST (GH-11605) | Ivan Levkivskyi | 2019-01-22 | 1 | -1/+1 |
|
|
* | bpo-35674: Add os.posix_spawnp() (GH-11554) | Joannah Nanjekye | 2019-01-16 | 2 | -35/+175 |
|
|
* | bpo-35746: Fix segfault in ssl's cert parser (GH-11569) | Christian Heimes | 2019-01-15 | 1 | -0/+4 |
|
|
* | bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692) | MichaelSaah | 2019-01-14 | 1 | -5/+8 |
|
|
* | bpo-35719: Optimize multi-argument math functions. (GH-11527) | Serhiy Storchaka | 2019-01-12 | 1 | -19/+18 |
|
|
* | bpo-35582: Inline arguments tuple unpacking in handwritten code. (GH-11524) | Serhiy Storchaka | 2019-01-12 | 1 | -11/+10 |
|
|
* | bpo-34838: Use subclass_of for math.dist. (GH-9659) | Ammar Askar | 2019-01-12 | 2 | -9/+12 |
|
|
* | bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972) | Eric Snow | 2019-01-11 | 1 | -0/+6 |
|
|
* | bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) | Serhiy Storchaka | 2019-01-11 | 16 | -256/+355 |
|
|
* | bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G... | Serhiy Storchaka | 2019-01-11 | 41 | -522/+4621 |
|
|
* | bpo-32710: Fix _overlapped.Overlapped memory leaks (GH-11489) | Victor Stinner | 2019-01-11 | 1 | -24/+54 |
|
|
* | bpo-35702: Add new identifier time.CLOCK_UPTIME_RAW for macOS 10.12 (GH-11503) | Joannah Nanjekye | 2019-01-10 | 1 | -0/+3 |
|
|
* | bpo-32710: Fix leak in Overlapped_WSASend() (GH-11469) | Victor Stinner | 2019-01-08 | 1 | -0/+2 |
|
|
* | bpo-35568: add 'raise_signal' function (GH-11335) | Vladimir Matveev | 2019-01-08 | 3 | -22/+60 |
|
|
* | bpo-35664: Optimize operator.itemgetter (GH-11435) | Raymond Hettinger | 2019-01-07 | 1 | -5/+37 |
|
|
* | closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sh... | Mickaël Schoentgen | 2019-01-02 | 1 | -1/+1 |
|
|
* | bpo-32492: Tweak _collections._tuplegetter. (GH-11367) | Serhiy Storchaka | 2018-12-31 | 1 | -8/+8 |
|
|
* | bpo-35214: Annotate posix calls for clang MSan. (#11389) | Gregory P. Smith | 2018-12-31 | 1 | -0/+16 |
|
|
* | bpo-35550: Fix incorrect Solaris define guards (GH-11275) | Jakub Kulík | 2018-12-31 | 4 | -5/+5 |
|
|
* | Dead code removal from _hashopenssl. (GH-11379) | Gregory P. Smith | 2018-12-31 | 2 | -121/+19 |
|
|
* | bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375) | Gregory P. Smith | 2018-12-31 | 2 | -0/+27 |
|
|
* | bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373) | Gregory P. Smith | 2018-12-30 | 1 | -1/+9 |
|
|