Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Add Tim Golden as interested in Windows | Tim Golden | 2010-08-16 | 1 | -1/+1 |
| | |||||
* | Issue #665761: functools.reduce() will no longer mask exceptions other | Alexander Belopolsky | 2010-08-16 | 1 | -0/+3 |
| | | | | | than TypeError raised by the iterator argument. Also added a test to check that zip() already behaves similarly. | ||||
* | Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() | Victor Stinner | 2010-08-16 | 1 | -0/+4 |
| | | | | | Write a message formatted by PyUnicode_FromFormatV() to sys.stdout and sys.stderr. | ||||
* | Don't run pgen twice when using make -j. | Martin v. Löwis | 2010-08-15 | 1 | -0/+5 |
| | |||||
* | Oops, fix a typo in NEWS: surrogateespace => surrogateescape | Victor Stinner | 2010-08-15 | 1 | -1/+1 |
| | |||||
* | Issue #9605: posix.getlogin() decodes the username with file filesystem | Victor Stinner | 2010-08-15 | 1 | -1/+4 |
| | | | | | | encoding and surrogateescape error handler. Patch written by David Watson. Reindent also posix_getlogin(), and fix a typo in the NEWS file. | ||||
* | Issue #9604: posix.initgroups() encodes the username using the fileystem | Victor Stinner | 2010-08-15 | 1 | -0/+3 |
| | | | | encoding and surrogateescape error handler. Patch written by David Watson. | ||||
* | Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal name | Victor Stinner | 2010-08-15 | 1 | -0/+4 |
| | | | | | using the filesystem encoding and surrogateescape error handler. Patch written by David Watson. | ||||
* | Convert to spaces. | Florent Xicluna | 2010-08-14 | 1 | -32/+32 |
| | |||||
* | Fix order. | Florent Xicluna | 2010-08-14 | 1 | -1/+1 |
| | |||||
* | List Misc/python-config.in in Misc/README. Fix few typos. | Florent Xicluna | 2010-08-14 | 3 | -9/+11 |
| | |||||
* | fix issue #8857: provide a test case for socket.getaddrinfo | Giampaolo Rodolà | 2010-08-14 | 1 | -0/+2 |
| | |||||
* | Fix format. | Georg Brandl | 2010-08-14 | 1 | -1/+1 |
| | |||||
* | Typo fix. | Georg Brandl | 2010-08-14 | 1 | -1/+1 |
| | |||||
* | Add some maintainers. | Georg Brandl | 2010-08-14 | 1 | -8/+9 |
| | |||||
* | Add myself to threads topic (suggested by Ezio) | Antoine Pitrou | 2010-08-14 | 1 | -1/+1 |
| | |||||
* | Add myself for the bug tracker (and for re). | Ezio Melotti | 2010-08-14 | 1 | -2/+2 |
| | |||||
* | Revert r82831 as discussed at EP now that the wording of maintainers.rst has ↵ | Ezio Melotti | 2010-08-14 | 1 | -9/+9 |
| | | | | been clarified. | ||||
* | Let's commit | Éric Araujo | 2010-08-14 | 1 | -1/+1 |
| | |||||
* | Manually merge r83995: Fix version{added,changed} and spacing in NEWS | Éric Araujo | 2010-08-14 | 1 | -1/+1 |
| | |||||
* | Use a marker in generated MANIFEST files, don't touch files without it. ↵ | Éric Araujo | 2010-08-14 | 1 | -0/+4 |
| | | | | Fixes #8688. | ||||
* | Issue #9542: Create PyUnicode_FSDecoder() function | Victor Stinner | 2010-08-13 | 1 | -0/+4 |
| | | | | | | | | | | | | It's a ParseTuple converter: decode bytes objects to unicode using PyUnicode_DecodeFSDefaultAndSize(); str objects are output as-is. * Don't specify surrogateescape error handler in the comments nor the documentation, but PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_EncodeFSDefault() because these functions use strict error handler for the mbcs encoding (on Windows). * Remove PyUnicode_FSConverter() comment in unicodeobject.c to avoid inconsistency with unicodeobject.h. | ||||
* | Issue #9203: Computed gotos are now enabled by default on supported | Antoine Pitrou | 2010-08-13 | 1 | -0/+4 |
| | | | | | compilers (which are detected by the configure script). They can still be disable selectively by specifying --without-computed-gotos. | ||||
* | Per request, make 'nosy' vs 'assign' explicit in maintainers.rst. | R. David Murray | 2010-08-13 | 1 | -1/+5 |
| | | | | Also add myself as assignable for email issues. | ||||
* | Reapply r83877. | Antoine Pitrou | 2010-08-13 | 1 | -2/+2 |
| | |||||
* | Issue #9425: Create PyErr_WarnFormat() function | Victor Stinner | 2010-08-13 | 1 | -1/+4 |
| | | | | | | | Similar to PyErr_WarnEx() but use PyUnicode_FromFormatV() to format the warning message. Strip also some trailing spaces. | ||||
* | Typo. | Antoine Pitrou | 2010-08-12 | 1 | -2/+2 |
| | |||||
* | Issue #7467: when a file from a ZIP archive, its CRC is checked and a | Antoine Pitrou | 2010-08-12 | 1 | -0/+4 |
| | | | | | BadZipfile error is raised if it doesn't match (as used to be the case in Python 2.5 and earlier). | ||||
* | use pep 383 decoding for mknod and mkfifo #9570 | Benjamin Peterson | 2010-08-11 | 1 | -0/+2 |
| | | | | Patch by David Watson. | ||||
* | Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 | Alexander Belopolsky | 2010-08-11 | 1 | -0/+4 |
| | | | | | va_copy, but available on all python platforms. Untabified a few unrelated files. | ||||
* | Issue #9550: a BufferedReader could issue an additional read when the | Antoine Pitrou | 2010-08-11 | 2 | -0/+6 |
| | | | | | | original read request had been satisfied, which can block indefinitely when the underlying raw IO channel is e.g. a socket. Report and original patch by Jason V. Miller. | ||||
* | Add George Boutsioukis, from the GSoC project. | Martin v. Löwis | 2010-08-11 | 1 | -0/+3 |
| | |||||
* | Note that Éric Araujo has been given commit privileges. | Brett Cannon | 2010-08-11 | 1 | -0/+3 |
| | |||||
* | Issue #8834: Added a comment describing the order of entries in Misc/ACKS. | Alexander Belopolsky | 2010-08-10 | 1 | -4/+10 |
| | | | | Added names from release27-maint branch that were missing from py3k. | ||||
* | Issue #6915: Under Windows, os.listdir() didn't release the Global | Antoine Pitrou | 2010-08-09 | 2 | -0/+4 |
| | | | | Interpreter Lock around all system calls. Original patch by Ryan Kelly. | ||||
* | Issue #3757: thread-local objects now support cyclic garbage collection. | Antoine Pitrou | 2010-08-09 | 1 | -0/+4 |
| | | | | | Thread-local objects involved in reference cycles will be deallocated timely by the cyclic GC, even if the underlying thread is still running. | ||||
* | Followup to r83869 and issue #8524: rename socket.forget() to socket.detach() | Antoine Pitrou | 2010-08-09 | 1 | -1/+1 |
| | | | | and make it return the file descriptor. | ||||
* | issue #9452: | Fred Drake | 2010-08-09 | 1 | -0/+3 |
| | | | | | Add read_file, read_string, and read_dict to the configparser API; new source attribute to exceptions. | ||||
* | Fix ``Tools/scripts/checkpyc.py`` after PEP 3147. | Florent Xicluna | 2010-08-09 | 1 | -0/+2 |
| | |||||
* | Revert r83877 in order to fix compilation | Antoine Pitrou | 2010-08-09 | 1 | -2/+2 |
| |