summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* update Misc/NEWS to include issue #9706 changesGiampaolo Rodolà2010-08-291-0/+3
|
* Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() privateAntoine Pitrou2010-08-281-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 byAntoine Pitrou2010-08-281-0/+3
| | | | getting rid of the cached copy of thread-local attribute dictionary.
* Issue #1512791: In setframerate method of Wave_write, round non-integralMark Dickinson2010-08-282-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 Kumaran2010-08-261-0/+3
|
* basicsize and itemsize are Py_ssize_t #9688Benjamin Peterson2010-08-251-0/+2
|
* Issue 8781: Define SIZEOF_WCHAR_T on WindowsDaniel Stutzbach2010-08-251-0/+3
|
* Issue #1027206: getnameinfo is now restricted to numeric addresses as input.Martin v. Löwis2010-08-251-1/+2
|
* #1194222: make parsedate always return RFC2822 four character years.R. David Murray2010-08-252-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 clarifyBenjamin Peterson2010-08-241-2/+2
|
* Issue 8750: Fixed MutableSet's methods to correctly handle reflexive ↵Daniel Stutzbach2010-08-241-0/+3
| | | | operations, namely x -= x and x ^= x
* only catch AttributeError in hasattr() #9666Benjamin Peterson2010-08-242-0/+4
|
* fix issue 9129: adds proper error handling on accept() when smtpd accepts ↵Giampaolo Rodolà2010-08-231-0/+3
| | | | new incoming connections.
* fix issue 9601: ftplib now provides a workaround for invalid response code ↵Giampaolo Rodolà2010-08-231-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-231-0/+3
|
* Issue #9501: Fixed logging regressions in cleanup code.Vinay Sajip2010-08-231-0/+2
|
* news note for last changeBenjamin Peterson2010-08-231-0/+2
|
* One of the joys of having test_multiprocessing occasionally execute afterBrett Cannon2010-08-221-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 Stutzbach2010-08-221-10/+10
| | | | added to the nosy list
* Mention that gethostbyaddr now also supports IDNA.Martin v. Löwis2010-08-221-1/+2
|
* Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex andMartin v. Löwis2010-08-221-0/+2
| | | | getaddrinfo. Patch by David Watson.
* Updated maintainers.rst to reflect correct Roundup name.Vinay Sajip2010-08-221-1/+1
|
* Add Daniel Stutzbach.Martin v. Löwis2010-08-221-0/+3
|
* Issue #9214: Fix set operations on KeysView and ItemsView.Raymond Hettinger2010-08-221-0/+3
|
* Issue #9617: Signals received during a low-level write operation aren'tAntoine Pitrou2010-08-211-0/+3
| | | | ignored by the buffered IO layer anymore.
* revert changes made in r84236 committed by accidentGiampaolo Rodolà2010-08-211-3/+0
|
* fix issue #9129: added proper error handling when accepting new connections ↵Giampaolo Rodolà2010-08-211-0/+3
| | | | in SMTPServer.handle_accept
* alias macintosh to mac_roman #843590Benjamin Peterson2010-08-211-0/+2
|
* Decode NIS data to fs encoding, using the surrogate error handler.Martin v. Löwis2010-08-191-1/+2
|
* Create os.fsdecode(): decode from the filesystem encoding with surrogateescapeVictor Stinner2010-08-191-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. Kuchling2010-08-182-1/+5
| | | | (Also fix a name ordering in the ACKS file.)
* Issue #8622: Add PYTHONFSENCODING environment variable to override theVictor Stinner2010-08-181-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 byAntoine Pitrou2010-08-182-0/+4
| | | | Matthew Ahrens.
* #5127: Even on narrow unicode builds, the C functions that access the UnicodeAmaury Forgeot d'Arc2010-08-181-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öwis2010-08-181-0/+2
|
* Issue #9425: Create PyModule_GetFilenameObject() functionVictor Stinner2010-08-171-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öwis2010-08-171-1/+1
|
* Add Ask Solem.Martin v. Löwis2010-08-171-0/+4
|
* Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().Victor Stinner2010-08-171-0/+2
|
* Issue #3488: Provide convenient shorthand functions `gzip.compress`Antoine Pitrou2010-08-172-0/+4
| | | | and `gzip.decompress`. Original patch by Anand B. Pillai.
* Issue #9612: The set object is now 64-bit clean under Windows.Antoine Pitrou2010-08-171-0/+2
|
* fix issue #8807: adds a context parameter to POP3_SSL class.Giampaolo Rodolà2010-08-171-0/+5
|
* fix issue #8866: parameters passed to socket.getaddrinfo can now be ↵Giampaolo Rodolà2010-08-171-0/+3
| | | | specified as single keyword arguments.
* Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the ↵Nick Coghlan2010-08-171-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 Coghlan2010-08-171-0/+3
| | | | compiler flag values before resorting to defining its own
* Issue 9147: Add dis.code_info()Nick Coghlan2010-08-171-0/+4
|
* Document and test the resolution of issue 3445 (tolerate missing attributes ↵Nick Coghlan2010-08-171-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_cacheNick Coghlan2010-08-171-1/+1
|
* add support for abstract class and static methods #5867Benjamin Peterson2010-08-171-0/+2
|
* Mark myself as assignable for winreg, and put myself down for Windows.Brian Curtin2010-08-161-2/+2
|