summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-37034: Display argument name on errors with keyword arguments with ...Serhiy Storchaka2019-08-2939-332/+332
* bpo-37960: Silence only necessary errors in repr() of buffered and text strea...Miss Islington (bot)2019-08-292-18/+16
* bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...Miss Islington (bot)2019-08-291-1/+1
* bpo-37951: Lift subprocess's fork() restriction (GH-15544)Miss Islington (bot)2019-08-271-2/+4
* bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538)Miss Islington (bot)2019-08-261-1/+1
* bpo-37798: Minor code formatting and comment clean-ups. (GH-15526) (GH-15527)Miss Islington (bot)2019-08-261-13/+22
* bpo-37055: fix warnings in _blake2 module (GH-14646)Miss Islington (bot)2019-08-263-19/+0
* [3.8] bpo-37942: Improve argument clinic float converter (GH-15470) (GH-15480)Raymond Hettinger2019-08-245-92/+266
* bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266) (GH-...Miss Islington (bot)2019-08-233-0/+173
* bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)Miss Islington (bot)2019-08-231-1/+2
* bpo-37834: Normalise handling of reparse points on Windows (GH-15370)Steve Dower2019-08-213-199/+214
* bpo-37642: Update acceptable offsets in timezone (GH-14878) (#15227)Paul Ganssle2019-08-151-2/+9
* [3.8] Replace usage of the obscure PEM_read_bio_X509_AUX with the more standa...Miss Islington (bot)2019-08-151-1/+1
* bpo-21131: Fix faulthandler.register(chain=True) stack (GH-15276)Miss Islington (bot)2019-08-141-1/+5
* bpo-37811: FreeBSD, OSX: fix poll(2) usage in sockets module (GH-15202)Miss Islington (bot)2019-08-141-0/+11
* bpo-37738: Fix curses addch(str, color_pair) (GH-15071)Miss Islington (bot)2019-08-141-3/+15
* Delete leftover clinic-generated file for C zipimport. (GH-15174)Miss Islington (bot)2019-08-101-325/+0
* bpo-37729: gc: write stats at once (GH-15050)Miss Islington (bot)2019-08-051-20/+25
* bpo-37685: Fixed comparisons of datetime.timedelta and datetime.timezone. (GH...Miss Islington (bot)2019-08-041-5/+2
* bpo-37695: Correct unget_wch error message. (GH-14986)Miss Islington (bot)2019-07-311-2/+2
* bpo-37085: Expose SocketCAN bcm_msg_head flags (GH-13646)Miss Islington (bot)2019-07-311-0/+19
* bpo-37587: Make json.loads faster for long strings (GH-14752)Miss Islington (bot)2019-07-301-1/+1
* bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH...Miss Islington (bot)2019-07-272-17/+39
* bpo-37502: handle default parameter for buffers argument of pickle.loads corr...Miss Islington (bot)2019-07-251-1/+1
* [3.8] bpo-37399: Correctly attach tail text to the last element/comment/pi (G...Stefan Behnel2019-07-241-24/+64
* [3.8] Fix typos in docs, comments and test assert messages (GH-14872). (#14900)Kyle Stanley2019-07-212-2/+2
* closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)Miss Islington (bot)2019-07-122-39/+45
* bpo-37120: Fix _ssl get_num_tickets() (GH-14668)Miss Islington (bot)2019-07-091-1/+1
* Fix some typos (GH-14435)Miss Islington (bot)2019-07-052-3/+3
* Put pyexpatns.h include back. bpo-37437 (GH-14539)Miss Islington (bot)2019-07-011-0/+4
* bpo-37363: Add audit events on startup for the run commands (GH-14524)Miss Islington (bot)2019-07-011-0/+21
* bpo-36763: Use PyConfig_Clear() (GH-14445)Miss Islington (bot)2019-07-011-4/+8
* [3.8] bpo-37428: Don't set PHA verify flag on client side (GH-14494)Christian Heimes2019-07-011-17/+26
* bpo-29505: Add more fuzzing for re.compile, re.load and csv.reader (GH-14255)Miss Islington (bot)2019-06-298-16/+491
* bpo-37412: Fix os.getcwd() for long path on Windows (GH-14424) (GH-14451)Miss Islington (bot)2019-06-281-1/+1
* closes bpo-37437: Update vendorized expat to 2.2.7. (GH-14436)Miss Islington (bot)2019-06-276-32/+21
* closes bpo-37420: Handle errors during iteration in os.sched_setaffinity. (GH...Miss Islington (bot)2019-06-271-0/+3
* bpo-37419: Fix possible segfaults when passing large sequences to os.posix_sp...Miss Islington (bot)2019-06-261-1/+1
* bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)Miss Islington (bot)2019-06-261-59/+64
* [3.8] bpo-37250: put back tp_print for backwards compatibility (GH-14193)Jeroen Demeyer2019-06-251-0/+4
* bpo-32627: Fix compile error when conflicting `_uuid` headers included (GH-11...Miss Islington (bot)2019-06-241-3/+6
* bpo-37363: Add audit events for a range of modules (GH-14301)Miss Islington (bot)2019-06-242-0/+13
* bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)Steve Dower2019-06-211-1/+1
* Fix name of '\0'. (GH-14222)Miss Islington (bot)2019-06-181-1/+1
* Turn math.isqrt assertion into a comment to clarify its purpose. (GH-14131)Miss Islington (bot)2019-06-161-1/+1
* Simplify negativity checks in math.comb and math.perm. (GH-13870) (#14125)Miss Islington (bot)2019-06-161-10/+16
* bpo-36779: time.tzname returns empty string on Windows if default cod… (GH-...Miss Islington (bot)2019-06-131-0/+14
* bpo-35070: test_getgrouplist may fail on macOS if too many groups (GH-13071)Miss Islington (bot)2019-06-131-15/+17
* bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)Miss Islington (bot)2019-06-123-5/+3
* bpo-29505: Fuzz json module, enforce size limit on int(x) fuzz (GH-13991)Miss Islington (bot)2019-06-1110-1/+171