- 18 Oct, 2013 8 commits
-
-
Nick Coghlan authored
Previously, the -R option would be specified multiple times if PYTHONHASHSEED was set.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Ethan Furman authored
-
Ethan Furman authored
-
Ethan Furman authored
Order of search is now: 1. Try getattr 2. If that throws an exception, check __dict__ directly 3. If still not found, walk the mro looking for the eldest class that has the attribute (e.g. things returned by __getattr__) 4. If none of that works (e.g. due to a buggy __dir__, __getattr__, etc. method or missing __slot__ attribute), ignore the attribute entirely.
-
Ethan Furman authored
I'll make sure and include them in future patches.
-
Ned Deily authored
-
- 17 Oct, 2013 25 commits
-
-
Guido van Rossum authored
-
Ned Deily authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Georg Brandl authored
-
Georg Brandl authored
Fix inaccurate versionchanged tag for compressobj(): most parameter were there, just got kwarg support.
-
Nick Coghlan authored
-
Nick Coghlan authored
-
Richard Oudkerk authored
-
Nick Coghlan authored
Patch by Zero Piraeus.
-
Richard Oudkerk authored
-
Nick Coghlan authored
-
Richard Oudkerk authored
-
Nick Coghlan authored
This new pre-initialization API allows embedding applications like Blender to force a particular encoding and error handler for the standard IO streams. Also refactors Modules/_testembed.c to let us start testing multiple embedding scenarios. (Initial patch by Bastien Montagne)
-
Richard Oudkerk authored
-
Christian Heimes authored
-
Richard Oudkerk authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Skip tests for 24-bit wave file on big-endian platforms.
-
Serhiy Storchaka authored
Skip tests for 24-bit wave file on big-endian platforms.
-
Richard Oudkerk authored
-
R David Murray authored
This adds EmailMessage and, MIMEPart subclasses of Message with new API methods, and a ContentManager class used by the new methods. Also a new policy setting, content_manager. Patch was reviewed by Stephen J. Turnbull and Serhiy Storchaka, and reflects their feedback. I will ideally add some examples of using the new API to the documentation before the final release.
-
Ethan Furman authored
-
- 16 Oct, 2013 4 commits
-
-
Richard Oudkerk authored
-
Richard Oudkerk authored
This allows different parts of a program to use different methods for starting processes without interfering with each other.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
and groups() methods of match object now always return a string or a bytes object.
-
- 15 Oct, 2013 3 commits
-
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Serhiy Storchaka authored
-