5456 Commits (eb81795d7d3a8c898fa89a376d63fc3bbfb9a081)

Author SHA1 Message Date
Nick Coghlan eb81795d7d bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260) 9 years ago
ericvsmith 11e97f2f80 bpo-30682: Removed a too-strict assertion that failed for certain f-strings. (#2232) 9 years ago
Serhiy Storchaka 145541cfa0 bpo-30626: Fix error handling in PyImport_Import(). (#2103) 9 years ago
Sylvain 96c7c06850 bpo-20627: Fix error message when keyword arguments are used (#2115) 9 years ago
Serhiy Storchaka 36ff451eba bpo-30501: Make the compiler producing optimized code for condition expressions. (#1851) 9 years ago
Nick Coghlan 6ea4186de3 bpo-28180: Implementation for PEP 538 (#659) 9 years ago
Sylvain 7445381c60 bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051) 9 years ago
Serhiy Storchaka f9f1ccace3 Fix regression in error message introduced in bpo-29951. (#2028) 9 years ago
Serhiy Storchaka 2e9cd5825c bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1888) 9 years ago
Serhiy Storchaka 6cca5c8459 bpo-30592: Fixed error messages for some builtins. (#1996) 9 years ago
Victor Stinner 865de27dd7 bpo-30598: _PySys_EndInit() now duplicates warnoptions (#1998) 9 years ago
Stéphane Wirtel ab1cb80b43 bpo-30547: Fix multiple reference leaks (#1995) 9 years ago
Serhiy Storchaka 5eb788bf7f bpo-30534: Fixed error messages when pass keyword arguments (#1901) 9 years ago
Segev Finer 48fb766f70 bpo-30567: Fix refleak in sys.getwindowsversion (#1940) 9 years ago
Amit Kumar 2e6bb4484e Add reference to help('FORMATTING') in format() builtin (GH-166) 9 years ago
Antoine Pitrou 4a8bcdf79c bpo-16500: Use register_at_fork() in the threading module (#1843) 9 years ago
Antoine Pitrou f7ecfac0c1 Doc nits for bpo-16500 (#1841) 9 years ago
Antoine Pitrou 346cbd351e bpo-16500: Allow registering at-fork handlers (#1715) 9 years ago
Eric Snow 18c1356ff6 Drop a duplicate line. (#1809) 9 years ago
Segev Finer 7ff1e88a57 Delete sigcheck.c since it appears unused (#1723) 9 years ago
Serhiy Storchaka 0cd7a3f196 bpo-29104: Fixed parsing backslashes in f-strings. (#490) 9 years ago
Eric Snow c7ec9985bb bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729) 9 years ago
Eric Snow 1abcf6700b bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772) 9 years ago
Steve Dower 9b33bf50da Improves test_underpth_nosite_file to reveal why it fails. (#1763) 9 years ago
Zachary Ware 84c6607a81 Update importlib.h (GH-1762) 9 years ago
Eric Snow 6b4be195cd bpo-22257: Small changes for PEP 432. (#1728) 9 years ago
Eric Snow e377416c10 bpo-29102: Add a unique ID to PyInterpreterState. (#1639) 9 years ago
Jason Fried f82c951d1c bpo-30395 _PyGILState_Reinit deadlock fix (#1734) 9 years ago
Nathaniel J. Smith ab4413a7e9 bpo-30039: Don't run signal handlers while resuming a yield from stack (#1081) 9 years ago
Xiang Zhang 2ddf5a19c3 bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) 9 years ago
Serhiy Storchaka f93234bb8a bpo-30024: Circular imports involving absolute imports with binding (#1264) 9 years ago
Masayuki Yamamoto fdaeea620f bpo-30279: Remove unused Python/thread_foobar.h (#1473) 9 years ago
Victor Stinner 1c4670ea0c bpo-30225: Fix is_valid_fd() on macOS Tiger (#1443) 9 years ago
Serhiy Storchaka bf623ae884 bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) 9 years ago
Serhiy Storchaka 55fe1ae970 bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) 9 years ago
Serhiy Storchaka 813f943c59 bpo-29838: Add asserts for checking results of sq_length and mq_length slots. (#700) 9 years ago
Michael Seifert 64c8f705c0 bpo-29951: Include function name for some error messages in `PyArg_ParseTuple*` (#916) 9 years ago
Serhiy Storchaka d4edfc9abf bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) 9 years ago
Serhiy Storchaka 762bf40438 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) 9 years ago
Serhiy Storchaka ba85d69a3e bpo-29878: Add global instances of int for 0 and 1. (#852) 9 years ago
Serhiy Storchaka aefa7ebf0f bpo-6532: Make the thread id an unsigned integer. (#781) 9 years ago
Daniel Birnstiel d7fa6b259e bpo-29859: Fix error messages from return codes for pthread_* calls (GH-741) 9 years ago
Serhiy Storchaka fff9a31a91 bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748) 9 years ago
Xiang Zhang 4830f581af bpo-29849: fix a memory leak in import_from (GH-712) 9 years ago
Serhiy Storchaka 80ec8364f1 bpo-29748: Added the slice index converter in Argument Clinic. (#549) 9 years ago
Serhiy Storchaka c2cf128571 bpo-8256: Fixed possible failing or crashing input() (#517) 9 years ago
Serhiy Storchaka 202fda55c2 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) 9 years ago
Serhiy Storchaka 0767ad40bf bpo-20185: Convert the marshal module to Argument Clinic. (#541) 9 years ago
Serhiy Storchaka c611a5b1d4 bpo-29746: Update marshal docs to Python 3. (#547) 9 years ago
Xiang Zhang 0710d75425 bpo-29770: remove outdated PYO related info (GH-590) 9 years ago