- 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 13 years ago
- 0a9a636 merge 3.2 by Benjamin Peterson · 13 years ago
- 80d5042 fix parse_syntax_error to clean up its resources by Benjamin Peterson · 13 years ago
- 368b4b7 Guard an LLTRACE variable to silence an unused variable warning. by Brett Cannon · 13 years ago
- 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 13 years ago
- 4b0215f Merge with 3.2 by Kristján Valur Jónsson · 13 years ago
- c5d47d5 Fix typo when "PyObject*" was changed to "identifier" by Kristján Valur Jónsson · 13 years ago
- cc58031 merge 3.2 by Benjamin Peterson · 13 years ago
- 9faf5ee this should technicaly be identifier by Benjamin Peterson · 13 years ago
- b304764 merge 3.2 by Benjamin Peterson · 13 years ago
- ab79c71 check for NULL by Benjamin Peterson · 13 years ago
- 98ba753 merge 3.2 (#14378) by Benjamin Peterson · 13 years ago
- a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 13 years ago
- 302e790 use identifier api by Benjamin Peterson · 13 years ago
- 83a9f48 Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords. by Larry Hastings · 13 years ago
- c809f98 Fixes Issue #14331: Use significantly less stack space when importing modules by by Gregory P. Smith · 13 years ago
- 01feaec plug memory leak (closes #14325) by Benjamin Peterson · 13 years ago
- eb74918 kill capsule names that we don't need anymore by Benjamin Peterson · 13 years ago
- f7c1321 use memory macros by Benjamin Peterson · 13 years ago
- 7ed6727 check result of PyMem_New by Benjamin Peterson · 13 years ago
- f53d20f in 72556ff86828, I should have updated the magic as well as the comment (#14230) by Benjamin Peterson · 13 years ago
- c961b4a Issue #14325: Stop using python lists, capsules, and the garbage collector to deal with PyArg_Parse* cleanup. by Jean-Paul Calderone · 13 years ago
- abdb552 fix comment by Benjamin Peterson · 13 years ago
- 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 13 years ago
- 1767e02 free AST's dict by Benjamin Peterson · 13 years ago
- 577c830 Issue #14184: merge by Ned Deily · 13 years ago
- 7ca97d5 Issue #14184: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
- bd273c1 Issue #14180: Fix an invalid rounding when compiler optimization are enabled by Victor Stinner · 13 years ago
- 3a31dd4 Issue #14180: Remove commented code by Victor Stinner · 13 years ago
- 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 13 years ago
- 45e50de Try to fix compilation of Python-ast.c on Visual Studio 2008 by Victor Stinner · 13 years ago
- 518cf94 merge 3.2 by Benjamin Peterson · 13 years ago
- 3f35846 kill this disabled code by Benjamin Peterson · 13 years ago
- bebcd18 merge 3.2 by Benjamin Peterson · 13 years ago
- bc4665e use correct naming convention by Benjamin Peterson · 13 years ago
- 7e0dbfb give the AST class a __dict__ by Benjamin Peterson · 13 years ago
- f125bf5 Update copyright years and version name. by Georg Brandl · 13 years ago
- 6ecf77b Basic support for PEP 414 without docs or tests. by Armin Ronacher · 13 years ago
- 0d3a003 - Issue #14177: marshal.loads() now raises TypeError when given an unicode by Antoine Pitrou · 13 years ago
- 4a90ef0 Issue #14177: marshal.loads() now raises TypeError when given an unicode string. by Antoine Pitrou · 13 years ago
- 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 13 years ago
- 1c13f84 Simplify code in marshal.c. by Antoine Pitrou · 13 years ago
- b2677c7 Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). by Antoine Pitrou · 13 years ago
- 679e9d3 Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object). by Antoine Pitrou · 13 years ago
- efb00c0 Issue #14153 Create _Py_device_encoding() to prevent _io from having to import by Brett Cannon · 13 years ago
- ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 13 years ago
- 90f50d4 Issue #13706: Fix format(float, "n") for locale with non-ASCII decimal point (e.g. ps_aF) by Victor Stinner · 13 years ago
- 41a863c Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator by Victor Stinner · 13 years ago
- cf1c833 Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 13 years ago
- 4f22a8d Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 13 years ago
- 7214612 In find_module(), do not silence fileno() and dup() errors. by Antoine Pitrou · 13 years ago
- c9f54cf enable hash randomization by default by Benjamin Peterson · 13 years ago
- 528b54b Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
- 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
- d9a3591 merge 3.2 by Benjamin Peterson · 13 years ago
- e249dca merge 3.2 by Benjamin Peterson · 13 years ago
- 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
- 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 13 years ago
- 91e5c08 Fix typo in conditional. by Georg Brandl · 13 years ago
- 12897d7 Fix typo in conditional. by Georg Brandl · 13 years ago
- 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
- c229e6e Issue #14040: Remove rarely used file name suffixes for C extensions (under POSIX mainly). by Antoine Pitrou · 13 years ago
- 4195b5c Backout f8409b3d6449: the PEP 410 is not accepted yet by Victor Stinner · 13 years ago
- ccd5715 PEP 410 by Victor Stinner · 13 years ago
- 09225b7 Issue #13845: time.time() now uses GetSystemTimeAsFileTime() instead of ftime() by Victor Stinner · 13 years ago
- 4b0eab6 Merge branch 3.2 by Petri Lehtinen · 13 years ago
- 9713321 Document absoluteness of sys.executable by Petri Lehtinen · 13 years ago
- ed27785 Issue #13706: Add assertions to detect bugs earlier by Victor Stinner · 13 years ago
- a3dd409 Remove now useless arbitrary limit of module name length by Victor Stinner · 13 years ago
- 5816166 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
- 33d15f7 Port import fixes from 2.7. by Antoine Pitrou · 13 years ago
- abaf89b Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 13 years ago
- 2be60af Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 13 years ago
- 6d766fc Silence last compilation warning. by Amaury Forgeot d'Arc · 13 years ago
- cd27df3 Fix compilation warnings (seen on win32 buildbot) by Amaury Forgeot d'Arc · 13 years ago
- ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
- a4ac600 Issue #13706: Support non-ASCII fill characters by Victor Stinner · 13 years ago
- d25cfe6 Improve exception text. Closes issue 13811. by Eric V. Smith · 13 years ago
- fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 13 years ago
- f0ecdd2 Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry. by Antoine Pitrou · 13 years ago
- 1b468af Issue #13722: Avoid silencing ImportErrors when initializing the codecs registry. by Antoine Pitrou · 13 years ago
- aa5c5c6 Finally fix all test_capi refleaks by Antoine Pitrou · 13 years ago
- 165e01f Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 13 years ago
- 6c40eb7 Fix the builtin module initialization code to store the init function for future reinitialization. by Antoine Pitrou · 13 years ago
- fff47ab Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 13 years ago
- 2fabfac Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 13 years ago
- c64ae92 fix indentation by Benjamin Peterson · 13 years ago
- c8909dd break out switch at correct place by Benjamin Peterson · 13 years ago
- 205ad61 only finish error if one occurred by Benjamin Peterson · 13 years ago
- c0beabc move LINENO define to where it actually belongs by Benjamin Peterson · 13 years ago
- 55e0043 streamline normalizer identification a bit by Benjamin Peterson · 13 years ago
- d3af6e3 fix spelling by Benjamin Peterson · 13 years ago
- de5827d invert condition (head bang) by Benjamin Peterson · 13 years ago
- 0fa35ea fix possible refleaks by Benjamin Peterson · 13 years ago
- 89f8b80 use helpful PyUnicode_IS_ASCII macro by Benjamin Peterson · 13 years ago
- 5eda913 PyUnicode_DecodeUTF8 will always return a ready string by Benjamin Peterson · 13 years ago
- 8f56e09 rewrite such that this actually makes sense by Benjamin Peterson · 13 years ago
- da05f45 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago
- 3388060 Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenNames indexes. by Meador Inge · 13 years ago