Andrew Svetlov
|
0832af6628
|
Issue #16717: get rid of socket.error, replace with OSError
|
2012-12-18 23:10:48 +02:00 |
|
Benjamin Peterson
|
57b667261c
|
expose TCP_FASTOPEN and MSG_FASTOPEN
|
2012-12-12 22:24:47 -05:00 |
|
Jesus Cea
|
14c81aba50
|
#16135: Removal of OS/2 support (Modules/*)
|
2012-10-05 02:11:36 +02:00 |
|
Christian Heimes
|
15b6885fe0
|
Make sure that *really* no more than sizeof(ifr.ifr_name) chars are strcpy-ed to ifr.ifr_name and that the string is *always* NUL terminated. New code shouldn't use strcpy(), too. CID 719692
|
2012-09-10 01:25:50 +02:00 |
|
Andrew Svetlov
|
c53eb9dfe2
|
Merge 3.2 to default
|
2012-08-14 18:42:10 +03:00 |
|
Matthias Klose
|
d182a6c77e
|
Modules/socketmodule.c: netdb_lock: define static.
|
2012-08-14 17:29:04 +02:00 |
|
Charles-François Natali
|
f8f5237b2f
|
Remove useless test (flowinfo is unsigned).
|
2012-06-23 10:26:54 +02:00 |
|
Charles-François Natali
|
9b0c006eb0
|
Remove useless test (flowinfo is unsigned).
|
2012-06-23 10:17:05 +02:00 |
|
Kristján Valur Jónsson
|
10f383a937
|
Issue #14310: inter-process socket duplication for windows
|
2012-04-07 11:23:31 +00:00 |
|
Antoine Pitrou
|
9a54a260de
|
Issue #14300: Under Windows, sockets created using socket.dup() now allow overlapped I/O.
Patch by sbt.
|
2012-04-01 01:14:39 +02:00 |
|
Kristján Valur Jónsson
|
310052c1f0
|
Fix warning when compiling socketmodule.c with VS2010
VS2010 defineds the old errno constants in addition to the WSA* ones.
|
2012-03-31 13:35:00 +00:00 |
|
Ross Lagerwall
|
8c159761de
|
Issue #10951: Fix warnings in the socket module.
|
2012-03-06 21:36:18 +02:00 |
|
Martin v. Löwis
|
9d6c66933a
|
Issue #13777: Add PF_SYSTEM sockets on OS X.
Patch by Michael Goderbauer.
|
2012-02-03 17:44:58 +01:00 |
|
Charles-François Natali
|
366999a011
|
Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by
Vilmos Nebehaj.
|
2012-01-02 15:47:29 +01:00 |
|
Charles-François Natali
|
42663334cd
|
Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by
Vilmos Nebehaj.
|
2012-01-02 15:57:30 +01:00 |
|
Charles-François Natali
|
8b759655d0
|
Issue #8623: Fix some strict-aliasing warnings. Patch by David Watson.
|
2011-12-23 16:44:51 +01:00 |
|
Charles-François Natali
|
564a42c8de
|
Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael
Farrell.
|
2011-12-17 14:59:56 +01:00 |
|
Victor Stinner
|
1f33f2b0c3
|
Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8
|
2011-12-17 04:45:09 +01:00 |
|
Antoine Pitrou
|
6ec29e299b
|
Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem
encoding and the surrogateescape error handler, rather than UTF-8. Patch
by David Watson.
|
2011-12-16 14:46:36 +01:00 |
|
Victor Stinner
|
9d3b93ba30
|
Use the new Unicode API
* Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)
* Replce PyUnicode_FromUnicode(str, len) by PyUnicode_FromWideChar(str, len)
* Replace Py_UNICODE by wchar_t
* posix_putenv() uses PyUnicode_FromFormat() to create the string, instead
of PyUnicode_FromUnicode() + _snwprintf()
|
2011-11-22 02:27:30 +01:00 |
|
Victor Stinner
|
74168975cc
|
socket_gethostname() uses a wchar_t* with PyMem_Malloc() to avoid the
old Unicode API.
|
2011-11-17 01:11:36 +01:00 |
|
Charles-François Natali
|
10b8cf4455
|
Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support.
|
2011-11-10 19:21:37 +01:00 |
|
Victor Stinner
|
cb98bed299
|
Issue #12619: Expose socket.SO_BINDTODEVICE constant
|
2011-10-25 13:45:48 +02:00 |
|
Martin v. Löwis
|
bd928fef42
|
Rename _Py_identifier to _Py_IDENTIFIER.
|
2011-10-14 10:20:37 +02:00 |
|
Antoine Pitrou
|
6b4883dec0
|
PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.
|
2011-10-12 02:54:14 +02:00 |
|