summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
| | | * | | | | fix indentation and add curlies (closes #27093)Benjamin Peterson2016-05-231-11/+15
| | | * | | | | Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+95
| | | * | | | | Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codesSerhiy Storchaka2016-05-161-0/+63
| | | * | | | | Backported tests for issue #18531.Serhiy Storchaka2016-05-161-0/+22
| | | * | | | | issue27018 - Fix the documentation of select.epoll.register method.Senthil Kumaran2016-05-141-1/+1
| | | * | | | | Remove outdated PEP 291 compatibility requirement commentMartin Panter2016-05-141-4/+0
| | | * | | | | Issue #25745: Fixed leaking a userptr in curses panel destructor.Serhiy Storchaka2016-05-091-0/+5
| | | * | | | | Issue #23815: Fixed crashes related to directly created instances of types inSerhiy Storchaka2016-05-082-3/+7
| | | * | | | | Corrections for a/an in code comments and documentationMartin Panter2016-05-082-3/+3
| | | * | | | | Issue #26512: Clarify Integral; tidy up table of rounding functionsMartin Panter2016-05-081-4/+4
| | | * | | | | Issue #18916: Update thread module docstringsBerker Peksag2016-05-021-3/+4
| | | * | | | | Issue #26898: Fix typo in math.isclose() docstringBerker Peksag2016-05-011-1/+1
| | | * | | | | Issue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls ofSerhiy Storchaka2016-04-291-3/+3
| | | * | | | | Issue #26822: itemgetter, attrgetter and methodcaller objects no longerSerhiy Storchaka2016-04-231-0/+6
| | | * | | | | Fix spelling (inital), grammar (may translates) in documentation, commentsMartin Panter2016-04-191-2/+2
| | | * | | | | Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-176-6/+6
| | | * | | | | Fix typos in code comments and documentationMartin Panter2016-04-162-4/+4
| | | * | | | | Issue #26535: Correct docs regarding the struct buffer sizeMartin Panter2016-04-151-8/+8
| | | * | | | | Correct ?an? ? ?a? with ?Unicode?, ?user?, ?UTF?, etcMartin Panter2016-04-153-3/+3
| | | * | | | | Fix unused variable 'libver' warning in Modules/_ssl.cBerker Peksag2016-04-141-0/+2
| | | * | | | | Issue #26716: Regenerate Argument Clinic code.Serhiy Storchaka2016-04-142-3/+3
| | | * | | | | Issue #26200: Restored more safe usages of Py_SETREF.Serhiy Storchaka2016-04-111-3/+3
| | | * | | | | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-1011-25/+25
| | | * | | | | Issue #26719: More efficient formatting of ints and floats in json.Serhiy Storchaka2016-04-101-52/+4
| | | * | | | | Update fcntl doc: replace IOError with OSErrorVictor Stinner2016-04-091-1/+1
| | | * | | | | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-0622-86/+86
| | | * | | | | Issue #6953: Rearrange and expand Readline module documentationMartin Panter2016-04-051-16/+16
| | | * | | | | Issue #23735: Avoid sighandler_t Gnu-ismMartin Panter2016-04-031-1/+1
| | | * | | | | Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric PriceMartin Panter2016-04-031-0/+31
| | | * | | | | asyncio: sync overlapped.c with GitHubVictor Stinner2016-04-011-0/+6
| | | * | | | | Issue #22854: Clarify documentation about UnsupportedOperation and add testsMartin Panter2016-03-313-15/+13
| | | * | | | | Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-6/+10
| | | * | | | | Issue #26644: Raise ValueError for negative SSLSocket.recv() and read()Martin Panter2016-03-271-0/+5
| | | * | | | | _pickle: Fix load_counted_tuple(), use Py_ssize_t for sizeVictor Stinner2016-03-141-1/+1
| | | * | | | | Issue#26616:Fixed a bug in datetime.astimezone() method.Alexander Belopolsky2016-03-251-1/+6
| | | * | | | | Enhance _tracemalloc debug modeVictor Stinner2016-03-231-1/+1
| | | * | | | | Fix _tracemalloc start/stopVictor Stinner2016-03-231-14/+0
| | | * | | | | Issue #24266: Cancel history search mode with Ctrl+C in Readline 7Martin Panter2016-03-221-0/+3
| | | * | | | | Issue #15699: Reunite comment with variableMartin Panter2016-03-221-16/+3
| | | * | | | | Fix usage of PyMem_Malloc() in overlapped.cVictor Stinner2016-03-161-3/+6
| | | * | | | | _tracemalloc: store lineno as unsigned intVictor Stinner2016-03-151-17/+7
| | | * | | | | faulthandler: Test Py_FatalError() with GIL releasedVictor Stinner2016-03-151-2/+10
| | | * | | | | Issue #26505: Fix typos in getaddrinfo license text.Ned Deily2016-03-071-4/+4
| | | * | | | | Issue #25718: Fixed pickling and copying the accumulate() iterator with total...Serhiy Storchaka2016-03-061-0/+17
| | | * | | | | Issue #26406: Avoid unnecessary serialization of getaddrinfo(3) calls onNed Deily2016-02-231-4/+10
| | | * | | | | merge 3.4 (closes #25939)Benjamin Peterson2016-02-17156-37527/+65776
| | | |\ \ \ \ \
| | | | * | | | | Issue #25924: Avoid unnecessary serialization of getaddrinfo(3) calls on OS XNed Deily2016-02-151-2/+18
| | | | * | | | | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-102-2/+2
| | | | * | | | | Issue #26117: The os.scandir() iterator now closes file descriptor not onlySerhiy Storchaka2016-02-081-17/+20
| | | | * | | | | Issue #25945: Fixed bugs in functools.partial.Serhiy Storchaka2016-02-021-60/+68