Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Preserve command name, for later printing of active | Martin v. Löwis | 2006-03-23 | 1 | -0/+2 |
| | | | | | commands. If there are active commands when the tests start, fail, printing these commands. | ||||
* | Patch #1396919: Reenable the system scope threads on FreeBSD 5.4 | Hye-Shik Chang | 2006-03-23 | 1 | -0/+3 |
| | | | | | and later versions because they bumped the default setting to get our basic tests to run correctly.. | ||||
* | Forward port MvL's fix in 43227: | Neal Norwitz | 2006-03-23 | 1 | -0/+3 |
| | | | | | Fix crash when a Unicode string containing an encoding declaration is compile()d. Fixes #1115379. | ||||
* | ctypes was added. | Thomas Heller | 2006-03-22 | 1 | -0/+2 |
| | |||||
* | Change NEWS entry for recent socket API change | Georg Brandl | 2006-03-22 | 1 | -1/+1 |
| | |||||
* | News about email 4.0. | Barry Warsaw | 2006-03-22 | 1 | -0/+8 |
| | |||||
* | remove test file | Barry Warsaw | 2006-03-21 | 1 | -1/+0 |
| | |||||
* | py trunk svn test | Barry Warsaw | 2006-03-21 | 1 | -1/+1 |
| | |||||
* | py trunk svn test | Barry Warsaw | 2006-03-21 | 1 | -1/+1 |
| | |||||
* | py trunk svn test | Barry Warsaw | 2006-03-21 | 1 | -0/+1 |
| | |||||
* | moved older releases into HISTORY | Anthony Baxter | 2006-03-20 | 2 | -5287/+5287 |
| | |||||
* | Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. ↵ | Neal Norwitz | 2006-03-20 | 2 | -0/+3 |
| | | | | | | | | Schroeder. This was a fair amount of rework of the patch. Refactored test_fork1 so it could be reused by the new tests for wait3/4. Also made them into new style unittests (derive from unittest.TestCase). | ||||
* | SF [ 1231053 ] audioop - alaw encoding/decoding added, code updated | Anthony Baxter | 2006-03-20 | 1 | -0/+3 |
| | | | | | | | | | This patch adds a-LAW encoding to audioop and replaces the old u-LAW encoding/decoding code with the current code from sox. Possible issues: the code from sox uses int16_t. Code by Lars Immisch | ||||
* | Previously, Python code had no easy way to access the contents of a | Georg Brandl | 2006-03-18 | 1 | -0/+4 |
| | | | | | cell object. Now, a ``cell_contents`` attribute has been added (closes patch #1170323). | ||||
* | RFE #567972: Socket objects' family, type and proto properties are | Georg Brandl | 2006-03-17 | 1 | -0/+3 |
| | | | | now exposed via new get...() methods. | ||||
* | Update/expand on comments about leaking tests. | Neal Norwitz | 2006-03-17 | 1 | -4/+5 |
| | |||||
* | Ignore ctypes leaks, but add a test case so we do not forget. | Neal Norwitz | 2006-03-17 | 1 | -1/+1 |
| | |||||
* | Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. | Neal Norwitz | 2006-03-16 | 3 | -6/+8 |
| | |||||
* | Add a news entry about the sre/re swap. | Neal Norwitz | 2006-03-16 | 1 | -0/+3 |
| | |||||
* | Merge the tim-obmalloc branch to the trunk. | Tim Peters | 2006-03-16 | 1 | -0/+12 |
| | | | | | | | This is a heavily altered derivative of SF patch 1123430, Evan Jones's heroic effort to make obmalloc return unused arenas to the system free(), with some heuristic strategies to make it more likley that arenas eventually _can_ be freed. | ||||
* | Document the other change from patch #1359365. | Walter Dörwald | 2006-03-15 | 1 | -2/+4 |
| | |||||
* | SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError | Walter Dörwald | 2006-03-15 | 1 | -0/+3 |
| | | | | now if close() has been called before (like file and StringIO.StringIO do) | ||||
* | Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass | Walter Dörwald | 2006-03-15 | 1 | -0/+6 |
| | | | | | | | of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added. | ||||
* | Bug #1448490: Fix a bug that ISO-2022 codecs could not handle | Hye-Shik Chang | 2006-03-13 | 1 | -0/+3 |
| | | | | SS2 (single-shift 2) escape sequences correctly. | ||||
* | Add regrtest -w option. | Martin v. Löwis | 2006-03-10 | 1 | -0/+2 |
| | |||||
* | Update Unicode database to Unicode 4.1. | Martin v. Löwis | 2006-03-09 | 1 | -0/+4 |
| | |||||
* | Move entry to correct section. | Georg Brandl | 2006-03-09 | 1 | -3/+3 |
| | |||||
* | Patch #1446372: quit and exit can now be called from the interactive | Georg Brandl | 2006-03-09 | 1 | -0/+3 |
| | | | | interpreter to exit. | ||||
* | Patch #1434038: property() now uses the getter's docstring if there is | Georg Brandl | 2006-03-08 | 1 | -0/+4 |
| | | | | | no "doc" argument given. This makes it possible to legitimately use property() as a decorator to produce a read-only property. | ||||
* | Add note about PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -0/+5 |
| | |||||
* | SF patch #1443865; gc.get_count() added and optional argument 'generation' | Barry Warsaw | 2006-03-07 | 1 | -1/+4 |
| | | | | | | added to gc.collect(). Updated docs, unit test, and NEWS entry. (Also, fixed a typo in NEWS.) | ||||
* | Add a note about the bug fixes | Neal Norwitz | 2006-03-07 | 1 | -0/+2 |
| | |||||
* | Ignore leaks from the socket test too. Sigh, this list is getting long. :-( | Neal Norwitz | 2006-03-06 | 1 | -1/+1 |
| | |||||
* | Import bdist_msi | Martin v. Löwis | 2006-03-05 | 1 | -0/+3 |
| | |||||
* | Remove test for timing (already not built since commented out in setup.py). | Neal Norwitz | 2006-03-04 | 1 | -0/+3 |
| | | | | Add note to NEWS. | ||||
* | Provide checkin access to Ronald and Bob | Neal Norwitz | 2006-03-03 | 1 | -0/+7 |
| | |||||
* | Add test_quopri to know spurious leakers | Neal Norwitz | 2006-03-03 | 1 | -1/+1 |
| | |||||
* | Spell threading write, not thraeading | Neal Norwitz | 2006-03-02 | 1 | -1/+1 |
| | |||||
* | Remove duplicate entry | Neal Norwitz | 2006-03-02 | 1 | -3/+0 |
| | |||||
* | Update for 'with' statement. | Brett Cannon | 2006-03-01 | 3 | -17/+24 |
| | |||||
* | Add Misc/NEWS entry for Misc/Vim/vim_syntax.py . Also use conditional | Brett Cannon | 2006-03-01 | 2 | -4/+5 |
| | | | | expression for the hell of it. | ||||
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -0/+5 |
| | | | | | | | | | added message attribute compared to the previous version of Exception. It is also a new-style class, making all exceptions now new-style. KeyboardInterrupt and SystemExit inherit from BaseException directly. String exceptions now raise DeprecationWarning. Applies patch 1104669, and closes bugs 1012952 and 518846. | ||||
* | Updates to the with-statement: | Guido van Rossum | 2006-02-28 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | - New semantics for __exit__() -- it must re-raise the exception if type is not None; the with-statement itself doesn't do this. (See the updated PEP for motivation.) - Added context managers to: - file - thread.LockType - threading.{Lock,RLock,Condition,Semaphore,BoundedSemaphore} - decimal.Context - Added contextlib.py, which defines @contextmanager, nested(), closing(). - Unit tests all around; bot no docs yet. | ||||
* | Its right now. | Tim Peters | 2006-02-28 | 1 | -3/+3 |
| | |||||
* | Note that as generates a warning too | Neal Norwitz | 2006-02-28 | 1 | -0/+2 |
| | |||||
* | from __future__ import with_statement addon for 'with', mostly written by | Thomas Wouters | 2006-02-28 | 1 | -1/+2 |
| | | | | Neal. | ||||
* | Wups, add NEWS item I'd written but not checked in. | Thomas Wouters | 2006-02-28 | 1 | -0/+6 |
| | |||||
* | Check the return code for PyErr_Warn() when warning about raising string | Brett Cannon | 2006-02-27 | 1 | -0/+4 |
| | | | | | exceptions. This was triggered when 'warnings' had a filter set to "error" that caught the string exception deprecation warning. | ||||
* | Finish removal of CO_GENERATOR_ALLOWED. | Neal Norwitz | 2006-02-27 | 1 | -0/+3 |
| | |||||
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 2 | -0/+3 |
| | | | | | | | | | | | | | This was started by Mike Bland and completed by Guido (with help from Neal). This still needs a __future__ statement added; Thomas is working on Michael's patch for that aspect. There's a small amount of code cleanup and refactoring in ast.c, compile.c and ceval.c (I fixed the lltrace behavior when EXT_POP is used -- however I had to make lltrace a static global). |