- 25 Eki, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 19 Mar, 2015 1 kayıt (commit)
-
-
Ethan Furman yazdı
add private method to enum to support replacing global constants with Enum members: - search for candidate constants via supplied filter - create new enum class and members - insert enum class and replace constants with members via supplied module name - replace __reduce_ex__ with function that returns member name, so previous Python versions can unpickle modify IntEnum classes to use new method
-
- 13 Ock, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
Patch by Karan Goel.
-
- 19 Kas, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patch by Franck Michea.
-
- 18 Eki, 2014 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 15 Eki, 2014 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 03 Eki, 2013 1 kayıt (commit)
-
-
Giampaolo Rodola yazdı
Before: <socket.socket fd=3, family=2, type=1, proto=0, laddr=('0.0.0.0', 0)> Now: <socket.socket fd=3, family=AddressFamily.AF_INET, type=SocketType.SOCK_STREAM, proto=0, laddr=('0.0.0.0', 0)>
-
- 31 Agu, 2013 1 kayıt (commit)
-
-
Eli Bendersky yazdı
Closes #18720.
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
-
- 04 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 14 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ModuleNotFoundError.
-
- 10 Nis, 2013 1 kayıt (commit)
-
-
Giampaolo Rodola yazdı
-
- 25 Ara, 2012 2 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Kristján Valur Jónsson yazdı
Fix line buffering of socket._fileobject
-
- 14 Eyl, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. Patch by Alessandro Moura.
-
- 07 Nis, 2012 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
-
- 31 Mar, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Matt Joiner.
-
- 23 Eki, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 20 Mar, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 25 Şub, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88622 | antoine.pitrou | 2011-02-26 00:07:44 +0100 (sam., 26 févr. 2011) | 5 lines Issue #7322: Trying to read from a socket's file-like object after a timeout occurred now raises an error instead of silently losing data. Patch by Ross Lagerwall. ........
-
Antoine Pitrou yazdı
occurred now raises an error instead of silently losing data. Patch by Ross Lagerwall.
-
- 05 Ock, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
socket is now always non-blocking, regardless of the operating system.
-
- 04 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
raising a ValueError, to fix repr().
-
- 29 Eki, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
deallocated without explicit closing. These warnings are silenced by default, except in pydebug mode.
-
- 13 Eki, 2010 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85420 | antoine.pitrou | 2010-10-13 18:17:14 +0200 (mer., 13 oct. 2010) | 5 lines Issue #10041: The signature of optional arguments in socket.makefile() didn't match that of io.open(), and they also didn't get forwarded properly to TextIOWrapper in text mode. Patch by Kai Zhu. ........
-
Antoine Pitrou yazdı
didn't match that of io.open(), and they also didn't get forwarded properly to TextIOWrapper in text mode. Patch by Kai Zhu.
-
- 18 Eyl, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
non-blocking mode: they return None when an operation would block (instead of raising an exception).
-
- 15 Eyl, 2010 4 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84825 | antoine.pitrou | 2010-09-15 10:39:25 +0200 (mer., 15 sept. 2010) | 3 lines Add a comment explaining why SocketIO is needed ........ r84826 | antoine.pitrou | 2010-09-15 11:32:45 +0200 (mer., 15 sept. 2010) | 3 lines Improve docs for socket.makefile() and SocketIO ........ r84830 | antoine.pitrou | 2010-09-15 13:12:57 +0200 (mer., 15 sept. 2010) | 3 lines Reverted unwanted change in r84826 ........
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
- 14 Eyl, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
objects supporting the whole socket API (rather than the "raw" _socket.socket objects).
-
- 08 Eyl, 2010 1 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
Fix issue 9794: adds context manager protocol to socket.socket so that socket.create_connection() can be used with the 'with' statement.
-
- 07 Eyl, 2010 3 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84597 | antoine.pitrou | 2010-09-07 22:42:19 +0200 (mar., 07 sept. 2010) | 5 lines Issue #8574: better implementation of test.support.transient_internet(). Original patch by Victor. ........ r84598 | antoine.pitrou | 2010-09-07 23:05:49 +0200 (mar., 07 sept. 2010) | 6 lines Issue #9792: In case of connection failure, socket.create_connection() would swallow the exception and raise a new one, making it impossible to fetch the original errno, or to filter timeout errors. Now the original error is re-raised. ........ r84599 | antoine.pitrou | 2010-09-07 23:09:09 +0200 (mar., 07 sept. 2010) | 4 lines Improve transient_internet() again to detect more network errors, and use it in test_robotparser. Fixes #8574. ........
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84597 | antoine.pitrou | 2010-09-07 22:42:19 +0200 (mar., 07 sept. 2010) | 5 lines Issue #8574: better implementation of test.support.transient_internet(). Original patch by Victor. ........ r84598 | antoine.pitrou | 2010-09-07 23:05:49 +0200 (mar., 07 sept. 2010) | 6 lines Issue #9792: In case of connection failure, socket.create_connection() would swallow the exception and raise a new one, making it impossible to fetch the original errno, or to filter timeout errors. Now the original error is re-raised. ........ r84599 | antoine.pitrou | 2010-09-07 23:09:09 +0200 (mar., 07 sept. 2010) | 4 lines Improve transient_internet() again to detect more network errors, and use it in test_robotparser. Fixes #8574. ........
-
Antoine Pitrou yazdı
would swallow the exception and raise a new one, making it impossible to fetch the original errno, or to filter timeout errors. Now the original error is re-raised.
-
- 31 Agu, 2010 3 kayıt (commit)
-
-
Daniel Stutzbach yazdı
avoid issues when socket.close is called from a __del__ method.
-
Benjamin Peterson yazdı
-
Daniel Stutzbach yazdı
avoid issues when socket.close is called from a __del__ method.
-
- 12 Agu, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-