summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #9759: GzipFile now raises ValueError when an operation is attemptedAntoine Pitrou2010-10-061-0/+3
| | | | after the file is closed. Patch by Jeffrey Finkelstein.
* Fix news entry formatting nitsÉric Araujo2010-10-051-2/+2
|
* Fix interaction of custom translation classes and caching (#9042)Éric Araujo2010-10-041-0/+3
|
* Recode developers.txt to UTF-8, as discussed on python-dev.Éric Araujo2010-10-041-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.dispatcherGiampaolo Rodolà2010-10-041-0/+6
|
* Add Tal Einat.Martin v. Löwis2010-10-041-0/+3
|
* Issue #9065: no longer use "root" as the default for theLars Gustäbel2010-10-041-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 nameTarek Ziadé2010-10-031-1/+1
|
* Fixed #8980: distutils.command.check was failing w/ docutils installedTarek Ziadé2010-10-031-0/+3
|
* add a test and a note about metaclasses now being abcsBenjamin Peterson2010-10-021-2/+3
|
* #1050268: make parseaddr 'quote' the contents of quoted strings in addresses.R. David Murray2010-10-021-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 r85174Victor Stinner2010-10-021-0/+2
|
* Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replaceVictor Stinner2010-10-021-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 #10006Benjamin Peterson2010-10-021-0/+2
|
* #10004: in Q encoded word ignore '=xx' when xx is not valid hex.R. David Murray2010-10-011-0/+3
| | | | Bug report and fix by Thomas Guettler.
* Fix #10003. Add SIGBREAK to the set of valid signals on Windows.Brian Curtin2010-10-011-0/+3
| | | | This fixes a regression noticed by bzr, introduced by issue #9324.
* Issue #6608: time.asctime is now checking struct tm fields its inputAlexander Belopolsky2010-10-012-1/+5
| | | | before passing it to the system asctime. Patch by MunSic Jeong.
* Issue1491 - BaseHTTPServer incorrectly implements response code 100Senthil Kumaran2010-09-301-0/+3
|
* Issue #9360: Cleanup and improvements to the nntplib module. The APIAntoine Pitrou2010-09-291-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 Pitrou2010-09-291-0/+2
|
* Issue #9979: Create function PyUnicode_AsWideCharString().Victor Stinner2010-09-291-0/+2
|
* #7110: have regrtest print test failures and tracebacks to stderr not stdout.R. David Murray2010-09-292-0/+4
| | | | Patch by Sandro Tosi.
* #9628: fix runtests.sh -x option so more than one test can be excluded.R. David Murray2010-09-281-0/+2
|
* Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or EAGAIN,Antoine Pitrou2010-09-281-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 Yamamoto2010-09-281-0/+2
|
* Fix for issue #9568.Ronald Oussoren2010-09-281-0/+2
|
* Add support for the ZSH shell to the "Update Shell Profile" scriptRonald Oussoren2010-09-281-0/+4
| | | | | | on MacOSX. Patch by Sylvain Mora, issue #9701.
* Issue #9599: Tweak loghelper algorithm to return slightly improved results ↵Mark Dickinson2010-09-281-0/+3
| | | | for powers of 2.
* Since __import__ is not designed for general use, have its docstring pointBrett Cannon2010-09-271-0/+3
| | | | | | people towards importlib.import_module(). Closes issue #7397.
* Implement #8521. Added named argument handling to winreg's CreateKeyEx,Brian Curtin2010-09-271-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 isAntoine Pitrou2010-09-271-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 Sajip2010-09-251-0/+2
|
* Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler.Vinay Sajip2010-09-251-0/+2
|
* revert r85003, poorly considered; breaks testsBenjamin Peterson2010-09-251-3/+0
|
* don't count keyword arguments as positional #9943Benjamin Peterson2010-09-251-0/+3
|
* Issue #9936: Fixed executable lines' search in the trace module.Alexander Belopolsky2010-09-241-0/+2
|
* Fix #9790: Rework the imports necessary for ntpath.samefile andBrian Curtin2010-09-231-0/+3
| | | | ntpath.sameopenfile.
* Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r;Mark Dickinson2010-09-231-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 Curtin2010-09-231-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 Pitrou2010-09-231-0/+2
|
* Issue #1675951: Allow GzipFile to work with unseekable file objects.Antoine Pitrou2010-09-232-0/+4
| | | | Patch by Florian Festi.
* logging: added QueueListener and documentation.Vinay Sajip2010-09-231-0/+3
|
* Issue 9916: Add some missing errno symbols.Barry Warsaw2010-09-221-2/+4
|
* fix newsBenjamin Peterson2010-09-211-0/+8
|
* Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)Hirokazu Yamamoto2010-09-211-0/+2
|
* Issue #9908: Fix os.stat() on bytes paths under Windows 7.Antoine Pitrou2010-09-211-0/+2
|
* Issue #9899: Fix test_tkinter.test_font on various platforms. Patch byAntoine Pitrou2010-09-211-0/+3
| | | | Ned Deily.
* Issue #2643: msync() is not called anymore when deallocating an open mmapAntoine Pitrou2010-09-211-0/+3
| | | | object, only munmap().
* Revert r84902 before committing better solution.Hirokazu Yamamoto2010-09-211-2/+0
|
* Issue #1633863: Don't ignore $CC under AIX.Antoine Pitrou2010-09-211-0/+2
|