- 15 Apr, 2016 2 commits
-
-
Martin Panter authored
-
Martin Panter authored
This affects documentation, code comments, and a debugging messages.
-
- 14 Apr, 2016 5 commits
-
-
Zachary Ware authored
Thanks to Shaun Walbridge for noticing.
-
Berker Peksag authored
It can be seen on various buildbots like 3.x.cea-indiana-amd64 and 3.x.murray-snowleopard: /export/home/buildbot/64bits/3.x.cea-indiana-amd64/build/Modules/_ssl.c:2227: warning: unused variable 'libver' /Users/buildbot/buildarea/3.x.murray-snowleopard/build/Modules/_ssl.c:2227: warning: unused variable ‘libver’
-
Serhiy Storchaka authored
-
Ethan Furman authored
-
Ethan Furman authored
-
- 13 Apr, 2016 4 commits
-
-
Serhiy Storchaka authored
NOTE: A direct call of super.__init__ is not endorsed!
-
Senthil Kumaran authored
-
Martin Panter authored
-
Steve Dower authored
-
- 12 Apr, 2016 5 commits
-
-
Victor Stinner authored
syscall() function requires #include <unistd.h>.
-
Victor Stinner authored
Issue #26735: Fix os.urandom() on Solaris 11.3 and newer when reading more than 1,024 bytes: call getrandom() multiple times with a limit of 1024 bytes per call.
-
Victor Stinner authored
Patch written by Demur Rumed.
-
Georg Brandl authored
-
Serhiy Storchaka authored
Based on patch by Xiang Zhang.
-
- 11 Apr, 2016 8 commits
-
-
Serhiy Storchaka authored
-
Victor Stinner authored
-
Berker Peksag authored
Reported by Robert on docs@p.o.
-
Serhiy Storchaka authored
-
Berker Peksag authored
The default value of __len__ is 0, not 1: >>> from unittest.mock import MagicMock >>> mock = MagicMock() >>> len(mock) 0 Reported by Alex on docs@p.o. Remove the remaining VMSError reference. VMS support is gone.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Martin Panter authored
-
- 10 Apr, 2016 5 commits
-
-
Serhiy Storchaka authored
in places where Py_DECREF was used.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
error handler for stdin and stdout.
-
Martin Panter authored
Remove redundant tests now that str is unicode.
-
Martin Panter authored
This eliminates a few redundant test cases.
-
- 09 Apr, 2016 6 commits
-
-
Martin Panter authored
* No longer attempts to close already freed socket file descriptor * Use socket object to be compatible with Windows * Do not use a timeout to avoid complication with non-blocking mode * Use internal localhost server rather than depending on a third party * Avoid trouble with buffered HTTP data by testing tunnelled CONNECT data
-
Martin Panter authored
-
Victor Stinner authored
Issue #26716. IOError is a deprecated alias to OSError since Python 3.3.
-
Berker Peksag authored
-
Berker Peksag authored
Patch by Giampaolo Rodola'.
-
Berker Peksag authored
Patch by Geoff Wilson.
-
- 08 Apr, 2016 2 commits
-
-
Brett Cannon authored
-
Serhiy Storchaka authored
-
- 06 Apr, 2016 3 commits
-
-
Martin Panter authored
ByteArrayAsStringTest.fixtype() was converting test data to bytes, not byte- array, therefore many of the test cases inherited in this class were not actually being run on the bytearray type. The tests in buffer_tests.py were redundant with methods in string_tests .MixinStrUnicodeUserStringTest and string_tests.CommonTest. These methods are now moved into string_tests.BaseTest, where they will also get run for bytes and bytearray. This change also moves test_additional_split(), test_additional_rsplit(), and test_strip() from CommonTest to BaseTest, meaning these tests are now run for bytes and bytearray. I plan to eliminate redundancies with existing tests in test_bytes.py soon.
-
Steve Dower authored
-
Serhiy Storchaka authored
-