Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #9759: GzipFile now raises ValueError when an operation is attempted | Antoine Pitrou | 2010-10-06 | 1 | -0/+3 |
| | | | | after the file is closed. Patch by Jeffrey Finkelstein. | ||||
* | Fix news entry formatting nits | Éric Araujo | 2010-10-05 | 1 | -2/+2 |
| | |||||
* | Fix interaction of custom translation classes and caching (#9042) | Éric Araujo | 2010-10-04 | 1 | -0/+3 |
| | |||||
* | Recode developers.txt to UTF-8, as discussed on python-dev. | Éric Araujo | 2010-10-04 | 1 | -10/+13 |
| | | | | | Fix Łukasz’ name and also remove trailing whitespace. See thread at http://mail.python.org/pipermail/python-dev/2010-September/103584.html | ||||
* | Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcher | Giampaolo Rodolà | 2010-10-04 | 1 | -0/+6 |
| | |||||
* | Add Tal Einat. | Martin v. Löwis | 2010-10-04 | 1 | -0/+3 |
| | |||||
* | Issue #9065: no longer use "root" as the default for the | Lars Gustäbel | 2010-10-04 | 1 | -0/+3 |
| | | | | | | | | | | | | | | uname and gname field. If tarfile creates a new archive and adds a file with a uid/gid that doesn't have a corresponding name on the system (e.g. because the user/group account was deleted) it uses the empty string in the uname/gname field now instead of "root". Using "root" as the default was a bad idea because on extraction the uname/gname fields are supposed to override the uid/gid fields. So, all archive members with nameless uids/gids belonged to the root user after extraction. | ||||
* | typo in Arfrever name | Tarek Ziadé | 2010-10-03 | 1 | -1/+1 |
| | |||||
* | Fixed #8980: distutils.command.check was failing w/ docutils installed | Tarek Ziadé | 2010-10-03 | 1 | -0/+3 |
| | |||||
* | add a test and a note about metaclasses now being abcs | Benjamin Peterson | 2010-10-02 | 1 | -2/+3 |
| | |||||
* | #1050268: make parseaddr 'quote' the contents of quoted strings in addresses. | R. David Murray | 2010-10-02 | 1 | -0/+3 |
| | | | | | | Also made the doc string for email._parseaddr's 'quote' function more accurate; I'd love to make the function match the old docstring instead, but other code uses it according the existing semantics. | ||||
* | Update changelog for r85174 | Victor Stinner | 2010-10-02 | 1 | -0/+2 |
| | |||||
* | Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace | Victor Stinner | 2010-10-02 | 1 | -1/+5 |
| | | | | | UTF-16 surrogate pairs by single non-BMP characters for 16 bits Py_UNICODE and 32 bits wchar_t (eg. Linux in narrow build). | ||||
* | type.__abstractmethods__ should raise an AttributeError #10006 | Benjamin Peterson | 2010-10-02 | 1 | -0/+2 |
| | |||||
* | #10004: in Q encoded word ignore '=xx' when xx is not valid hex. | R. David Murray | 2010-10-01 | 1 | -0/+3 |
| | | | | Bug report and fix by Thomas Guettler. | ||||
* | Fix #10003. Add SIGBREAK to the set of valid signals on Windows. | Brian Curtin | 2010-10-01 | 1 | -0/+3 |
| | | | | This fixes a regression noticed by bzr, introduced by issue #9324. | ||||
* | Issue #6608: time.asctime is now checking struct tm fields its input | Alexander Belopolsky | 2010-10-01 | 2 | -1/+5 |
| | | | | before passing it to the system asctime. Patch by MunSic Jeong. | ||||
* | Issue1491 - BaseHTTPServer incorrectly implements response code 100 | Senthil Kumaran | 2010-09-30 | 1 | -0/+3 |
| | |||||
* | Issue #9360: Cleanup and improvements to the nntplib module. The API | Antoine Pitrou | 2010-09-29 | 1 | -0/+4 |
| | | | | | now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added. | ||||
* | Issue #9962: GzipFile now has the peek() method. | Antoine Pitrou | 2010-09-29 | 1 | -0/+2 |
| | |||||
* | Issue #9979: Create function PyUnicode_AsWideCharString(). | Victor Stinner | 2010-09-29 | 1 | -0/+2 |
| | |||||
* | #7110: have regrtest print test failures and tracebacks to stderr not stdout. | R. David Murray | 2010-09-29 | 2 | -0/+4 |
| | | | | Patch by Sandro Tosi. | ||||
* | #9628: fix runtests.sh -x option so more than one test can be excluded. | R. David Murray | 2010-09-28 | 1 | -0/+2 |
| | |||||
* | Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or EAGAIN, | Antoine Pitrou | 2010-09-28 | 1 | -0/+5 |
| | | | | | | retry the select() loop instead of bailing out. This is because select() can incorrectly report a socket as ready for reading (for example, if it received some data with an invalid checksum). | ||||
* | Issue #3612: Added new types to ctypes.wintypes. (CHAR and pointers) | Hirokazu Yamamoto | 2010-09-28 | 1 | -0/+2 |
| | |||||
* | Fix for issue #9568. | Ronald Oussoren | 2010-09-28 | 1 | -0/+2 |
| | |||||
* | Add support for the ZSH shell to the "Update Shell Profile" script | Ronald Oussoren | 2010-09-28 | 1 | -0/+4 |
| | | | | | | on MacOSX. Patch by Sylvain Mora, issue #9701. | ||||
* | Issue #9599: Tweak loghelper algorithm to return slightly improved results ↵ | Mark Dickinson | 2010-09-28 | 1 | -0/+3 |
| | | | | for powers of 2. | ||||
* | Since __import__ is not designed for general use, have its docstring point | Brett Cannon | 2010-09-27 | 1 | -0/+3 |
| | | | | | | people towards importlib.import_module(). Closes issue #7397. | ||||
* | Implement #8521. Added named argument handling to winreg's CreateKeyEx, | Brian Curtin | 2010-09-27 | 1 | -0/+3 |
| | | | | | | | | DeleteKeyEx, and OpenKeyEx. Note that CKE and DKE are new functions for 3.2 so I didn't give them a versionchanged because of the existing versionadded. OpenKeyEx already existed so it gets a versionchanged tag. | ||||
* | Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is | Antoine Pitrou | 2010-09-27 | 1 | -0/+5 |
| | | | | | | received. Now sendall() properly calls signal handlers if necessary, and retries sending if these returned successfully, including on sockets with a timeout. | ||||
* | Issue #9947: logging: Fixed locking bug in stopListening. | Vinay Sajip | 2010-09-25 | 1 | -0/+2 |
| | |||||
* | Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler. | Vinay Sajip | 2010-09-25 | 1 | -0/+2 |
| | |||||
* | revert r85003, poorly considered; breaks tests | Benjamin Peterson | 2010-09-25 | 1 | -3/+0 |
| | |||||
* | don't count keyword arguments as positional #9943 | Benjamin Peterson | 2010-09-25 | 1 | -0/+3 |
| | |||||
* | Issue #9936: Fixed executable lines' search in the trace module. | Alexander Belopolsky | 2010-09-24 | 1 | -0/+2 |
| | |||||
* | Fix #9790: Rework the imports necessary for ntpath.samefile and | Brian Curtin | 2010-09-23 | 1 | -0/+3 |
| | | | | ntpath.sameopenfile. | ||||
* | Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r; | Mark Dickinson | 2010-09-23 | 1 | -0/+4 |
| | | | | | this was causing reversed method calls like float.__radd__(3.0, 1) to return NotImplemented instead of the expected numeric value. | ||||
* | #9808. Implement os.getlogin for Windows, completed by Jon Anglin. | Brian Curtin | 2010-09-23 | 1 | -0/+2 |
| | | | | | | | The test is semi-dumb, it just makes sure something comes back since we don't have a solid source to validate the returned login. We can't be 100% sure that the USERNAME env var will always match what os.getlogin() returns, so we don't make any specific assertion there. | ||||
* | Issue #9928: Properly initialize the types exported by the bz2 module. | Antoine Pitrou | 2010-09-23 | 1 | -0/+2 |
| | |||||
* | Issue #1675951: Allow GzipFile to work with unseekable file objects. | Antoine Pitrou | 2010-09-23 | 2 | -0/+4 |
| | | | | Patch by Florian Festi. | ||||
* | logging: added QueueListener and documentation. | Vinay Sajip | 2010-09-23 | 1 | -0/+3 |
| | |||||
* | Issue 9916: Add some missing errno symbols. | Barry Warsaw | 2010-09-22 | 1 | -2/+4 |
| | |||||
* | fix news | Benjamin Peterson | 2010-09-21 | 1 | -0/+8 |
| | |||||
* | Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows) | Hirokazu Yamamoto | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | Issue #9908: Fix os.stat() on bytes paths under Windows 7. | Antoine Pitrou | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by | Antoine Pitrou | 2010-09-21 | 1 | -0/+3 |
| | | | | Ned Deily. | ||||
* | Issue #2643: msync() is not called anymore when deallocating an open mmap | Antoine Pitrou | 2010-09-21 | 1 | -0/+3 |
| | | | | object, only munmap(). | ||||
* | Revert r84902 before committing better solution. | Hirokazu Yamamoto | 2010-09-21 | 1 | -2/+0 |
| | |||||
* | Issue #1633863: Don't ignore $CC under AIX. | Antoine Pitrou | 2010-09-21 | 1 | -0/+2 |
| |