- 11 Dec, 2012 6 commits
-
-
Gregory P. Smith authored
-
Gregory P. Smith authored
compiler logic will do the right thing with just x as a Py_uhash_t. This matches what was already done in the 3.3 version. cleanup only - no functionality or hash values change.
-
Gregory P. Smith authored
computation as the overflow behavior of signed integers is undefined. NOTE: This change is smaller compared to 3.2 as much of this cleanup had already been done. I added the comment that my change in 3.2 added so that the code would match up. Otherwise this just adds or synchronizes appropriate UL designations on some constants to be pedantic. In practice we require compiling everything with -fwrapv which forces overflow to be defined as twos compliment but this keeps the code cleaner for checkers or in the case where someone has compiled it without -fwrapv or their compiler's equivalent. Found by Clang trunk's Undefined Behavior Sanitizer (UBSan). Cleanup only - no functionality or hash values change.
-
Gregory P. Smith authored
computation as the overflow behavior of signed integers is undefined. In practice we require compiling everything with -fwrapv which forces overflow to be defined as twos compliment but this keeps the code cleaner for checkers or in the case where someone has compiled it without -fwrapv or their compiler's equivalent. Found by Clang trunk's Undefined Behavior Sanitizer (UBSan). Cleanup only - no functionality or hash values change.
-
Gregory P. Smith authored
Found by Clang trunk's Undefined-Behavior Sanitizer. [more to come]
-
Gregory P. Smith authored
Found by Clang trunk's Undefined-Behavior Sanitizer. [more to come]
-
- 10 Dec, 2012 12 commits
-
-
Hynek Schlawack authored
Turns out, the snakebite bots behave also their peculiarities. I'm really not proud of this stream of commits. :(
-
Hynek Schlawack authored
Turns out, the snakebite bots behave also their peculiarities. I'm really not proud of this stream of commits. :(
-
Hynek Schlawack authored
The Windows buildbots seem to be unable to agree whether they need them or not.
-
Hynek Schlawack authored
The Windows buildbots seem to be unable to agree whether they need them or not.
-
Hynek Schlawack authored
-
Hynek Schlawack authored
-
Hynek Schlawack authored
-
Hynek Schlawack authored
-
Hynek Schlawack authored
It caused rmtree to not ignore certain errors when ignore_errors was set. Patch by Alessandro Moura and Serhiy Storchaka.
-
Hynek Schlawack authored
It cause shutil.rmtree not ignore all errors. Also add a test ensuring that rmtree fails when being called on a symlink. Patch by Serhiy Storchaka.
-
Chris Jerdonek authored
-
Chris Jerdonek authored
This commit updates a test broken by the change made for issue #14783.
-
- 09 Dec, 2012 13 commits
-
-
Andrew Svetlov authored
-
Andrew Svetlov authored
-
Senthil Kumaran authored
-
Senthil Kumaran authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Antoine Pitrou authored
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python. Patch by Zachary Ware.
-
Antoine Pitrou authored
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python. Patch by Zachary Ware.
-
Antoine Pitrou authored
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python. Patch by Zachary Ware.
-
Nick Coghlan authored
-
Éric Araujo authored
-
Éric Araujo authored
-
Éric Araujo authored
Original patch by Julien Courteau and Pierre Paul Lefebvre.
-
- 08 Dec, 2012 9 commits
-
-
Éric Araujo authored
-
Antoine Pitrou authored
Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. Thanks to Eugene Toder for diagnosing and reporting the issue.
-
Antoine Pitrou authored
Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. Thanks to Eugene Toder for diagnosing and reporting the issue.
-
Éric Araujo authored
There was a window between the write and the chmod where the user’s password would be exposed, depending on default permissions. Philip Jenvey’s patch fixes it.
-
Éric Araujo authored
These files are created by some NFS clients a file is edited and removed concurrently (see added link in doc for more info). If such a file is removed between distutils calls listdir and copy, it will get confused. Other special files are ignored in sdist (namely VCS directories), but this has to be filtered out earlier.
-
Andrew Svetlov authored
Patch by Steven Kryskalla.
-
Andrew Svetlov authored
Patch by Steven Kryskalla.
-
Nick Coghlan authored
-
Nick Coghlan authored
- not allowed when implicitly re-raised the current exception - last exception raised is always displayed last - attempt to make it clearer when/if cause and context are shown
-