Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | update Misc/NEWS to include issue #9706 changes | Giampaolo Rodolà | 2010-08-29 | 1 | -0/+3 |
| | |||||
* | Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private | Antoine Pitrou | 2010-08-28 | 1 | -0/+4 |
| | | | | | to the socket module, and fix the width of socket descriptors to be correctly detected under 64-bit Windows. | ||||
* | Issue #1868: Eliminate subtle timing issues in thread-local objects by | Antoine Pitrou | 2010-08-28 | 1 | -0/+3 |
| | | | | getting rid of the cached copy of thread-local attribute dictionary. | ||||
* | Issue #1512791: In setframerate method of Wave_write, round non-integral | Mark Dickinson | 2010-08-28 | 2 | -0/+4 |
| | | | | inputs to the nearest integer. Thanks Neil Tallim for the patch. | ||||
* | Fix Issue8797 - Reset the basic auth retry count when response code is not 401. | Senthil Kumaran | 2010-08-26 | 1 | -0/+3 |
| | |||||
* | basicsize and itemsize are Py_ssize_t #9688 | Benjamin Peterson | 2010-08-25 | 1 | -0/+2 |
| | |||||
* | Issue 8781: Define SIZEOF_WCHAR_T on Windows | Daniel Stutzbach | 2010-08-25 | 1 | -0/+3 |
| | |||||
* | Issue #1027206: getnameinfo is now restricted to numeric addresses as input. | Martin v. Löwis | 2010-08-25 | 1 | -1/+2 |
| | |||||
* | #1194222: make parsedate always return RFC2822 four character years. | R. David Murray | 2010-08-25 | 2 | -0/+4 |
| | | | | | | | | Two character years are now converted to four character years using the Posix standard rule (<68 == 2000, >=68==1900). This makes the parsed date RFC2822 compliant even if the input is not. Patch and test by Jeffrey Finkelstein. | ||||
* | further clarify | Benjamin Peterson | 2010-08-24 | 1 | -2/+2 |
| | |||||
* | Issue 8750: Fixed MutableSet's methods to correctly handle reflexive ↵ | Daniel Stutzbach | 2010-08-24 | 1 | -0/+3 |
| | | | | operations, namely x -= x and x ^= x | ||||
* | only catch AttributeError in hasattr() #9666 | Benjamin Peterson | 2010-08-24 | 2 | -0/+4 |
| | |||||
* | fix issue 9129: adds proper error handling on accept() when smtpd accepts ↵ | Giampaolo Rodolà | 2010-08-23 | 1 | -0/+3 |
| | | | | new incoming connections. | ||||
* | fix issue 9601: ftplib now provides a workaround for invalid response code ↵ | Giampaolo Rodolà | 2010-08-23 | 1 | -1/+7 |
| | | | | returned on MKD and PWD by non-compliant FTPserver implementations such as ISS shipped with Windows server 2003 | ||||
* | fix issue 658749: correctly interprets asyncore's windows errors on connect() | Giampaolo Rodolà | 2010-08-23 | 1 | -0/+3 |
| | |||||
* | Issue #9501: Fixed logging regressions in cleanup code. | Vinay Sajip | 2010-08-23 | 1 | -0/+2 |
| | |||||
* | news note for last change | Benjamin Peterson | 2010-08-23 | 1 | -0/+2 |
| | |||||
* | One of the joys of having test_multiprocessing occasionally execute after | Brett Cannon | 2010-08-22 | 1 | -0/+3 |
| | | | | | | | | | | | test_importlib is that it discovers special little race conditions. For instance, it turns out that importlib would throw an exception if two different Python processes both tried to create the __pycache__ directory as one process would succeed, causing the other process to fail as it didn't expect to get any "help". So now importlib simply stays calm and just accepts someone else did the work of creating the __pycache__ directory for it, moving on with life. Closes issue #9572. | ||||
* | Added myself to Misc/maintainers.rst for topics on which I'd like to be ↵ | Daniel Stutzbach | 2010-08-22 | 1 | -10/+10 |
| | | | | added to the nosy list | ||||
* | Mention that gethostbyaddr now also supports IDNA. | Martin v. Löwis | 2010-08-22 | 1 | -1/+2 |
| | |||||
* | Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and | Martin v. Löwis | 2010-08-22 | 1 | -0/+2 |
| | | | | getaddrinfo. Patch by David Watson. | ||||
* | Updated maintainers.rst to reflect correct Roundup name. | Vinay Sajip | 2010-08-22 | 1 | -1/+1 |
| | |||||
* | Add Daniel Stutzbach. | Martin v. Löwis | 2010-08-22 | 1 | -0/+3 |
| | |||||
* | Issue #9214: Fix set operations on KeysView and ItemsView. | Raymond Hettinger | 2010-08-22 | 1 | -0/+3 |
| | |||||
* | Issue #9617: Signals received during a low-level write operation aren't | Antoine Pitrou | 2010-08-21 | 1 | -0/+3 |
| | | | | ignored by the buffered IO layer anymore. | ||||
* | revert changes made in r84236 committed by accident | Giampaolo Rodolà | 2010-08-21 | 1 | -3/+0 |
| | |||||
* | fix issue #9129: added proper error handling when accepting new connections ↵ | Giampaolo Rodolà | 2010-08-21 | 1 | -0/+3 |
| | | | | in SMTPServer.handle_accept | ||||
* | alias macintosh to mac_roman #843590 | Benjamin Peterson | 2010-08-21 | 1 | -0/+2 |
| | |||||
* | Decode NIS data to fs encoding, using the surrogate error handler. | Martin v. Löwis | 2010-08-19 | 1 | -1/+2 |
| | |||||
* | Create os.fsdecode(): decode from the filesystem encoding with surrogateescape | Victor Stinner | 2010-08-19 | 1 | -0/+3 |
| | | | | | | | | error handler, or strict error handler on Windows. * Rewrite os.fsencode() documentation * Improve os.fsencode and os.fsdecode() tests using the new PYTHONFSENCODING environment variable | ||||
* | #7647: add ST_RDONLY, ST_NOSUID constants to os module. | Andrew M. Kuchling | 2010-08-18 | 2 | -1/+5 |
| | | | | (Also fix a name ordering in the ACKS file.) | ||||
* | Issue #8622: Add PYTHONFSENCODING environment variable to override the | Victor Stinner | 2010-08-18 | 1 | -0/+3 |
| | | | | | | filesystem encoding. initfsencoding() displays also a better error message if get_codeset() failed. | ||||
* | Issue #5737: Add Solaris-specific mnemonics in the errno module. Patch by | Antoine Pitrou | 2010-08-18 | 2 | -0/+4 |
| | | | | Matthew Ahrens. | ||||
* | #5127: Even on narrow unicode builds, the C functions that access the Unicode | Amaury Forgeot d'Arc | 2010-08-18 | 1 | -0/+6 |
| | | | | | | | | | | Database (Py_UNICODE_TOLOWER, Py_UNICODE_ISDECIMAL, and others) now accept and return characters from the full Unicode range (Py_UCS4). The differences from Python code are few: - unicodedata.numeric(), unicodedata.decimal() and unicodedata.digit() now return the correct value for large code points - repr() may consider more characters as printable. | ||||
* | Restore GIL in nis_cat in case of error. | Martin v. Löwis | 2010-08-18 | 1 | -0/+2 |
| | |||||
* | Issue #9425: Create PyModule_GetFilenameObject() function | Victor Stinner | 2010-08-17 | 1 | -0/+5 |
| | | | | | | ... to get the filename as a unicode object, instead of a byte string. Function needed to support unencodable filenames. Deprecate PyModule_GetFilename() in favor on the new function. | ||||
* | Correct library name that Ask will work on. | Martin v. Löwis | 2010-08-17 | 1 | -1/+1 |
| | |||||
* | Add Ask Solem. | Martin v. Löwis | 2010-08-17 | 1 | -0/+4 |
| | |||||
* | Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). | Victor Stinner | 2010-08-17 | 1 | -0/+2 |
| | |||||
* | Issue #3488: Provide convenient shorthand functions `gzip.compress` | Antoine Pitrou | 2010-08-17 | 2 | -0/+4 |
| | | | | and `gzip.decompress`. Original patch by Anand B. Pillai. | ||||
* | Issue #9612: The set object is now 64-bit clean under Windows. | Antoine Pitrou | 2010-08-17 | 1 | -0/+2 |
| | |||||
* | fix issue #8807: adds a context parameter to POP3_SSL class. | Giampaolo Rodolà | 2010-08-17 | 1 | -0/+5 |
| | |||||
* | fix issue #8866: parameters passed to socket.getaddrinfo can now be ↵ | Giampaolo Rodolà | 2010-08-17 | 1 | -0/+3 |
| | | | | specified as single keyword arguments. | ||||
* | Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the ↵ | Nick Coghlan | 2010-08-17 | 1 | -0/+3 |
| | | | | module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory | ||||
* | Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py ↵ | Nick Coghlan | 2010-08-17 | 1 | -0/+3 |
| | | | | compiler flag values before resorting to defining its own | ||||
* | Issue 9147: Add dis.code_info() | Nick Coghlan | 2010-08-17 | 1 | -0/+4 |
| | |||||
* | Document and test the resolution of issue 3445 (tolerate missing attributes ↵ | Nick Coghlan | 2010-08-17 | 1 | -0/+6 |
| | | | | in functools.update_wrapper, previously implemented as a side effect of the __annotations__ copying patch) and implement issue 9567 (add a __wrapped__ attribute when using update_wrapper) | ||||
* | Remove some lingering remnants of the short-lived functools.lfu_cache | Nick Coghlan | 2010-08-17 | 1 | -1/+1 |
| | |||||
* | add support for abstract class and static methods #5867 | Benjamin Peterson | 2010-08-17 | 1 | -0/+2 |
| | |||||
* | Mark myself as assignable for winreg, and put myself down for Windows. | Brian Curtin | 2010-08-16 | 1 | -2/+2 |
| |