- 12 Eyl, 2018 1 kayıt (commit)
-
-
orlnub123 yazdı
* Fix enum members getting shadowed by parent attributes * Move Enum._convert to EnumMeta._convert_ * Deprecate _convert
-
- 29 Ock, 2018 1 kayıt (commit)
-
-
Christian Heimes yazdı
Fix socket(fileno=fd) by auto-detecting the socket's family, type, and proto from the file descriptor. The auto-detection can be overruled by passing in family, type, and proto explicitly. Without the fix, all socket except for TCP/IP over IPv4 are basically broken: >>> s = socket.create_connection(('www.python.org', 443)) >>> s <socket.socket fd=3, family=AddressFamily.AF_INET6, type=SocketKind.SOCK_STREAM, proto=6, laddr=('2003:58:bc4a:3b00:56ee:75ff:fe47:ca7b', 59730, 0, 0), raddr=('2a04:4e42:1b::223', 443, 0, 0)> >>> socket.socket(fileno=s.fileno()) <socket.socket fd=3, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('2003:58:bc4a:3b00::%2550471192', 59730, 0, 2550471192), raddr=('2a04:4e42:1b:0:700c:e70b:ff7f:0%2550471192', 443, 0, 2550471192)> Signed-off-by:
Christian Heimes <christian@python.org>
-
- 19 Ara, 2017 1 kayıt (commit)
-
-
Yury Selivanov yazdı
-
- 13 Eyl, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 17 Eyl, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 11 Eyl, 2016 1 kayıt (commit)
-
-
Ethan Furman yazdı
-
- 17 Agu, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 17 Nis, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 18 Şub, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
the same values as open().
-
- 25 Eki, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 19 Mar, 2015 2 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
-
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
-
- 07 Şub, 2015 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 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ı
-
- 14 Eki, 2014 1 kayıt (commit)
-
-
Charles-François Natali yazdı
-
- 22 Tem, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
fully qualified class names of Python implemented classes.
-
- 11 Haz, 2014 1 kayıt (commit)
-
-
Giampaolo Rodola yazdı
fix issue #17552: add socket.sendfile() method allowing to send a file over a socket by using high-performance os.sendfile() on UNIX. Patch by Giampaolo Rodola'·
-
- 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.
-