6331 Commits (6f5b6d7e8f8aa5ed94dea62a7fd1df57b8fd713d)

Author SHA1 Message Date
Gregory P. Smith 5831bd2f3b Remove an unnecessary extra copy of the bytes hash function. 14 years ago
Martin v. Löwis 50590f111b Use GetModuleHandleW to avoid *A functions where possible. 14 years ago
Charles-François Natali d612de10e5 Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. 14 years ago
Charles-François Natali 366999a011 Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by 14 years ago
Ross Lagerwall 667d75d059 Don't redefine _GNU_SOURCE if it's already defined. 14 years ago
Ross Lagerwall 031bf95d32 Issue #11006: Don't issue low level warning in subprocess when pipe2() fails. 14 years ago
Victor Stinner bd206e27a4 Handle correctly _Py_fopen() error: don't replace the exception 14 years ago
Victor Stinner e83f899364 Issue #13530: Document os.lseek() result 14 years ago
Victor Stinner 136ea49b39 Issue #10951: Fix a compiler warning in timemodule.c 14 years ago
Amaury Forgeot d'Arc 7e447c8224 Fix compilation warning on Windows 14 years ago
Antoine Pitrou 5136ac0ca2 Issue #13645: pyc files now contain the size of the corresponding source 14 years ago
Nick Coghlan 1f7ce62bd6 Implement PEP 380 - 'yield from' (closes #11682) 14 years ago
Victor Stinner 1134b0dbbd Fix _PyFaulthandler_Fini() so it can be called before _PyFaulthandler_Init() 14 years ago
Charles-François Natali 76961faaa0 Issue #13757: Change os.fdlistdir() so that it duplicates the passed file 14 years ago
Charles-François Natali dc3044c704 Issue #12760: Add a create mode to open(). Patch by David Townshend. 14 years ago
Charles-François Natali f2840a8890 Backed out changeset 36f2e236c601: For some reason, rewinddir() doesn't work as 14 years ago
Charles-François Natali 38f425e475 Issue #13739: It's simpler and more direct to call rewinddir() at the 14 years ago
Charles-François Natali 7546ad327d Issue #13739: In os.listdir(), rewind the directory stream (so that listdir() 14 years ago
Benjamin Peterson 83251c1ecd try to always use the old API 14 years ago
Benjamin Peterson 95c16629d3 fix for old kernels which don't have epoll_create1 14 years ago
Benjamin Peterson 2fb9ae9dfc add a flags parameter to select.epoll 14 years ago
Charles-François Natali 8b759655d0 Issue #8623: Fix some strict-aliasing warnings. Patch by David Watson. 14 years ago
Antoine Pitrou 0e576f1f50 Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the 14 years ago
Antoine Pitrou 501da61671 Fix ssl module compilation if ECDH support was disabled in the OpenSSL build. 14 years ago
Antoine Pitrou 0831676962 Issue #13637: "a2b" functions in the binascii module now accept ASCII-only unicode strings. 14 years ago
Antoine Pitrou 8abdb8abd8 Issue #13634: Add support for querying and disabling SSL compression. 14 years ago
Antoine Pitrou 923df6f22a Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman 14 years ago
Antoine Pitrou 6db4944cc5 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers 14 years ago
Victor Stinner bd0850b857 import.c now catchs _Py_stat() exceptions 14 years ago
Charles-François Natali 564a42c8de Issue #12809: Expose IP_TRANSPARENT in the socket module. Patch by Michael 14 years ago
Victor Stinner 1b57967b96 Issue #13560: Locale codec functions use the classic "errors" parameter, 14 years ago
Victor Stinner 1f33f2b0c3 Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8 14 years ago
Victor Stinner f2ea71fcc8 Issue #13560: Add PyUnicode_EncodeLocale() 14 years ago
Victor Stinner af02e1c85a Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() 14 years ago
Victor Stinner 94ba691ed3 main() now displays an error message before exiting if a command line argument 14 years ago
Antoine Pitrou 6ec29e299b Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem 14 years ago
Antoine Pitrou c345ce1a69 Issue #10350: Read and save errno before calling a function which might overwrite it. 14 years ago
Antoine Pitrou 093ce9cd8c Issue #6695: Full garbage collection runs now clear the freelist of set objects. 14 years ago
Charles-François Natali 10db4dec61 Issue #4028: Make multiprocessing build on SunOS. 14 years ago
Alexandre Vassalotti 3bfc65a25b Issue #13505: Make pickling of bytes object compatible with Python 2. 14 years ago
Florent Xicluna aa6c1d240f Issue #13575: there is only one class type. 14 years ago
Benjamin Peterson 2122cf717f alias resource.error to OSError 14 years ago
Florent Xicluna 0e686cbb7d Fix docstring typo. 14 years ago
Victor Stinner e3b47152a4 Write tests for invalid characters (U+00110000) 14 years ago
Victor Stinner 720f34a3e8 Issue #5905: time.strftime() is now using the locale encoding, instead of 14 years ago
Victor Stinner b37b17423b Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) 14 years ago
Victor Stinner 08b523a194 MultibyteCodec_Decode() catchs PyUnicode_AS_UNICODE() failures 14 years ago
Nadeem Vawda 59bb0e077f Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715). 14 years ago
Nadeem Vawda 3ff069ebc6 Issue #6715: Add module for compression using the LZMA algorithm. 14 years ago
Charles-François Natali 6613c18ea2 Issue #13415: Test in configure if unsetenv() has a return value or not. 14 years ago