- 22 May, 2015 11 commits
-
-
Guido van Rossum authored
There area bunch of TODOs here, but the biggest (not mentioned in the file) is that I'm going to take out __instancecheck__ and __subclasscheck__. However my personal schedule is such that I probably won't have time for these before Larry tags beta 1. But I will try -- this commit is mostly to make sure that typing.py doesn't completely miss the train. PS. I'm tracking issues at https://github.com/ambv/typehinting/issues.
-
Zachary Ware authored
That's what I get for using Notepad to make a quick edit...
-
Zachary Ware authored
The new private C function makes no permanent changes to the environment and is #ifdef'd out on non-Windows platforms.
-
Yury Selivanov authored
-
Yury Selivanov authored
Issue 22906.
-
Yury Selivanov authored
Raise PendingDeprecationWarning when generator raises StopIteration and no __future__ import is used. Fix offenders in the stdlib and tests. See also issue 22906. Thanks to Nick Coghlan and Berker Peksag for reviews.
-
Serhiy Storchaka authored
Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace.
-
Serhiy Storchaka authored
Fixed segmentation fault in sqlite3.Row constructor with faked cursor type. Fixed system error in the comparison of faked types.SimpleNamespace.
-
Raymond Hettinger authored
Replaces the PyList_GET_ITEM and PyList_SET_ITEM macros with normal array accesses. Replace the siftup unpredicatable branch with arithmetic. Replace the rc == -1 tests with rc < 0. Gives nicer looking assembly with both Clang and GCC-4.9. Also gives a small performance both for both.
-
Donald Stufft authored
-
Donald Stufft authored
-
- 21 May, 2015 15 commits
-
-
Yury Selivanov authored
-
Berker Peksag authored
-
Yury Selivanov authored
-
Yury Selivanov authored
Patch by Mike Bayer.
-
Yury Selivanov authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Clement Rouault.
-
Serhiy Storchaka authored
Clement Rouault.
-
Serhiy Storchaka authored
assertWarnsRegex() assertments now check the type of the first argument to prevent possible user error. Based on patch by Daniel Wagner-Hall.
-
Yury Selivanov authored
-
Yury Selivanov authored
-
Serhiy Storchaka authored
-
Benjamin Peterson authored
-
Yury Selivanov authored
-
- 20 May, 2015 14 commits
-
-
Antoine Pitrou authored
-
Serhiy Storchaka authored
sys.modules and broke test_ipaddress.
-
Yury Selivanov authored
-
Yury Selivanov authored
-
Serhiy Storchaka authored
Made test_pprint and test_trace discoverable.
-
Serhiy Storchaka authored
Made test_pprint and test_trace discoverable.
-
Steve Dower authored
-
Serhiy Storchaka authored
avoid passing the test accidently because slice.__hash__ is None.
-
Serhiy Storchaka authored
avoid passing the test accidently because slice.__hash__ is None.
-
Serhiy Storchaka authored
module now support pickling. Added readable and evaluable repr for these objects. Based on patch by Josh Rosenberg.
-
Serhiy Storchaka authored
IDLE. Patch by Martin Panter.
-
Serhiy Storchaka authored
IDLE. Patch by Martin Panter.
-
Serhiy Storchaka authored
Patch by Martin Panter.
-
Serhiy Storchaka authored
with specified exception type. Original patch by Ramchandra Apte.
-