summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-0/+2
|
* Work around deadlock risk. Will backport.Martin v. Löwis2006-05-011-0/+3
|
* Patch #1472854: make the rlcompleter.Completer class usable on non-Georg Brandl2006-04-301-0/+3
| | | | UNIX platforms.
* Patch #1470846: fix urllib2 ProxyBasicAuthHandler.Georg Brandl2006-04-301-0/+2
|
* Further changes for #1471883: Edit Misc/NEWS, andMartin v. Löwis2006-04-291-0/+2
| | | | add expat_config.h.
* Added SVN access for Steven Bethard and Talin, for PEP updating.David Goodger2006-04-271-0/+7
|
* 2.5a2v2.5a2Anthony Baxter2006-04-271-1/+1
|
* 2.5a2Anthony Baxter2006-04-271-1/+1
|
* Fix build on MIPS for libffi. I haven't tested this yet because IHye-Shik Chang2006-04-261-0/+2
| | | | don't have an access on MIPS machines. Will be tested by buildbot. :)
* The result of SF patch #1471578: big-memory tests for strings, lists andThomas Wouters2006-04-261-0/+5
| | | | | | tuples. Lots to be added, still, but this will give big-memory people something to play with in 2.5 alpha 2, and hopefully get more people to write these tests.
* SF bug/patch #1433877: string parameter to ioctl not null terminatedThomas Wouters2006-04-251-0/+1
| | | | | | | The new char-array used in ioctl calls wasn't explicitly NUL-terminated; quite probably the cause for the test_pty failures on Solaris that we circumvented earlier. (I wasn't able to reproduce it with this patch, but it has been somewhat elusive to start with.)
* Restore Walters nameNeal Norwitz2006-04-251-1/+1
|
* Patch #1475231: add a new SKIP doctest option, thanks toTim Peters2006-04-251-0/+4
| | | | Edward Loper.
* Revert addition of setuptoolsPhillip J. Eby2006-04-241-3/+0
|
* Fix contextlib.nested to cope with exit methods raising and handling exceptionsNick Coghlan2006-04-241-0/+6
|
* Add unit tests for the -m and -c command line switchesNick Coghlan2006-04-241-0/+2
|
* Note changes made to PEP 343 related documentationNick Coghlan2006-04-241-1/+5
|
* Bug #1337990: clarified that `doctest` does not support examplesTim Peters2006-04-241-0/+2
| | | | | | requiring both expected output and an exception. I'll backport to 2.4 next.
* Backdated NEWS entry to record the implementation of PEP 338 for alpha 1Nick Coghlan2006-04-231-0/+7
|
* Update optparse to Optik 1.5.1.Greg Ward2006-04-231-0/+5
|
* Add Gregory K. Johnson's revised version of mailbox.py (funded byAndrew M. Kuchling2006-04-222-2/+7
| | | | | | | | | | | | | | | | | the 2005 Summer of Code). The revision adds a number of new mailbox classes that support adding and removing messages; these classes also support mailbox locking and default to using email.Message instead of rfc822.Message. The old mailbox classes are largely left alone for backward compatibility. The exception is the Maildir class, which was present in the old module and now inherits from the new classes. The Maildir class's interface is pretty simple, though, so I think it'll be compatible with existing code. (The change to the NEWS file also adds a missing word to a different news item, which unfortunately required rewrapping the line.)
* SF bug #1473760 TempFile can hang on Windows.Tim Peters2006-04-211-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Python 2.4 changed ntpath.abspath to do an import inside the function. As a result, due to Python's import lock, anything calling abspath on Windows (directly, or indirectly like tempfile.TemporaryFile) hung when it was called from a thread spawned as a side effect of importing a module. This is a depressingly frequent problem, and deserves a more general fix. I'm settling for a micro-fix here because this specific one accounts for a report of Zope Corp's ZEO hanging on Windows, and it was an odd way to change abspath to begin with (ntpath needs a different implementation depending on whether we're actually running on Windows, and the _obvious_ way to arrange for that is not to bury a possibly-failing import _inside_ the function). Note that if/when other micro-fixes of this kind get made, the new Lib/test/threaded_import_hangers.py is a convenient place to add tests for them.
* Allow pstats.Stats creator to specify an alternate to stdout.Skip Montanaro2006-04-211-0/+3
|
* Document r43622.Martin v. Löwis2006-04-201-0/+4
|
* Add news item for pybench addition.Marc-André Lemburg2006-04-191-0/+5
|
* SF Patch #1062014: AF_UNIX sockets under Linux have a specialArmin Rigo2006-04-191-0/+3
| | | | abstract namespace that is now fully supported.
* Change those parts of the Python-api that were functions in 2.4, andThomas Heller2006-04-181-0/+9
| | | | | | are now macros to exported functions again. Fixes [ 1465834 ] bdist_wininst preinstall script support is broken in 2.5a1.
* add info re: pydoc, pkgutil, and setuptools additionsPhillip J. Eby2006-04-181-0/+11
|
* Typo fixAndrew M. Kuchling2006-04-181-1/+1
|
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-0/+2
| | | | | and unlist_types_without_objects is set. Give dump_counts a FILE* argument.
* At least test_threading_local doesn't leak any more.Tim Peters2006-04-181-1/+1
|
* local.__del__(): This didn't actually do anything, because of tooTim Peters2006-04-171-0/+3
| | | | | | much convolution <0.5 wink>. Simplified to the point that it works, and test_threading_local no longer reports leaks under -R. Thanks to Thomas Wouters for initial analysis.
* Add reindent target.Martin v. Löwis2006-04-171-0/+3
|
* Patch #790710: Add breakpoint command lists in pdb.Martin v. Löwis2006-04-171-0/+2
|
* Add some notes about a couple of poorly behaved testsNeal Norwitz2006-04-171-0/+6
|
* test_cmd_line should not leak any more, ensure an empty reflog file exists ↵Neal Norwitz2006-04-171-1/+3
| | | | if no leaks are found
* Patch #1063914: Add clipboard_get.Martin v. Löwis2006-04-161-0/+2
|
* Initialize structseq types only once.Martin v. Löwis2006-04-161-0/+4
|
* Update instructions for EXTRA_CFLAGS: configure ignoresMartin v. Löwis2006-04-161-2/+2
| | | | them; they have to be passed to make.
* Patch #1470875: Building Python with MS Free Compiler.Martin v. Löwis2006-04-151-0/+3
|
* Patch #1191700: Adjust column alignment in bdb breakpoint lists.Martin v. Löwis2006-04-151-0/+2
| | | | Backported to 2.4.
* Patch #1191065: Fix preprocessor problems on systems where recvfromMartin v. Löwis2006-04-151-0/+3
| | | | is a macro.
* Patch #1161914: Add python-config.Martin v. Löwis2006-04-152-0/+51
|
* Typo fixAndrew M. Kuchling2006-04-141-1/+1
|
* Patch #1324762: Change --with-cxx to --with-cxx-main.Martin v. Löwis2006-04-141-0/+5
|
* SF Bug #1454485, array.array('u') could crash the interpreter whenNeal Norwitz2006-04-141-0/+7
| | | | | | | | passing a string. Martin already fixed the actual crash by ensuring Py_UNICODE is unsigned. As discussed on python-dev, this fix removes the possibility of creating a unicode string from a raw buffer. There is an outstanding question of how to fix the crash in 2.4.
* Added George Yoshida.Tim Peters2006-04-141-0/+6
|
* raise the minimum supported BerkeleyDB version to 3.3 and add notes toGregory P. Smith2006-04-131-1/+10
| | | | news about this and a couple other recent fixes.
* reverting r45321: Patch #860326: traceback.format_exception_only() nowAnthony Baxter2006-04-131-4/+0
| | | | | | | | prepends the exception's module name to non-builtin exceptions, like the interpreter itself does. broke a number of doctests. should be discussed before checking in (see discussion on python-dev).
* Patch #860326: traceback.format_exception_only() now prepends theGeorg Brandl2006-04-121-0/+4
| | | | | exception's module name to non-builtin exceptions, like the interpreter itself does.