summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Mention how __coerce__ has been removed.Brett Cannon2006-04-151-0/+2
|
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-0/+8
|
* Remove staticforward and statichereNeal Norwitz2006-03-221-0/+2
|
* remove test fileBarry Warsaw2006-03-211-1/+0
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-1/+1
|
* testing svn emailsBarry Warsaw2006-03-211-0/+1
|
* Some more TODO items of things I'd like to start with.Guido van Rossum2006-03-201-1/+17
| | | | Mention the builtins that Neal killed.
* Get rid of xreadlines() (methods).Neal Norwitz2006-03-171-1/+1
|
* Get rid of a bunch more raw_input referencesNeal Norwitz2006-03-173-19/+9
|
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-6200/+13
| | | | | | | | - all classes are new-style (but ripping out classobject.[ch] isn't done) - int/int -> float - all exceptions must derive from BaseException - absolute import - 'as' and 'with' are keywords
* Bug #1448490: Fix a bug that ISO-2022 codecs could not handleHye-Shik Chang2006-03-131-0/+3
| | | | SS2 (single-shift 2) escape sequences correctly.
* Add regrtest -w option.Martin v. Löwis2006-03-101-0/+2
|
* Update Unicode database to Unicode 4.1.Martin v. Löwis2006-03-091-0/+4
|
* Move entry to correct section.Georg Brandl2006-03-091-3/+3
|
* Patch #1446372: quit and exit can now be called from the interactiveGeorg Brandl2006-03-091-0/+3
| | | | interpreter to exit.
* Patch #1434038: property() now uses the getter's docstring if there isGeorg Brandl2006-03-081-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 Rossum2006-03-071-0/+5
|
* SF patch #1443865; gc.get_count() added and optional argument 'generation'Barry Warsaw2006-03-071-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 fixesNeal Norwitz2006-03-071-0/+2
|
* Ignore leaks from the socket test too. Sigh, this list is getting long. :-(Neal Norwitz2006-03-061-1/+1
|
* Import bdist_msiMartin v. Löwis2006-03-051-0/+3
|
* Remove test for timing (already not built since commented out in setup.py).Neal Norwitz2006-03-041-0/+3
| | | | Add note to NEWS.
* Provide checkin access to Ronald and BobNeal Norwitz2006-03-031-0/+7
|
* Add test_quopri to know spurious leakersNeal Norwitz2006-03-031-1/+1
|
* Spell threading write, not thraeadingNeal Norwitz2006-03-021-1/+1
|
* Remove duplicate entryNeal Norwitz2006-03-021-3/+0
|
* Update for 'with' statement.Brett Cannon2006-03-013-17/+24
|
* Add Misc/NEWS entry for Misc/Vim/vim_syntax.py . Also use conditionalBrett Cannon2006-03-012-4/+5
| | | | expression for the hell of it.
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-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 Rossum2006-02-281-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 Peters2006-02-281-3/+3
|
* Note that as generates a warning tooNeal Norwitz2006-02-281-0/+2
|
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-1/+2
| | | | Neal.
* Wups, add NEWS item I'd written but not checked in.Thomas Wouters2006-02-281-0/+6
|
* Check the return code for PyErr_Warn() when warning about raising stringBrett Cannon2006-02-271-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 Norwitz2006-02-271-0/+3
|
* PEP 343 -- the with-statement.Guido van Rossum2006-02-272-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).
* Skip over doc strings.Martin v. Löwis2006-02-271-0/+2
|
* Patch 1413181, by Gabriel Becedillas.Tim Peters2006-02-271-0/+6
| | | | | | | | | PyThreadState_Delete(): if the auto-GIL-state machinery knows about the thread state, forget it (since the thread state is being deleted, continuing to remember it can't help, but can hurt if another thread happens to get created with the same thread id). I'll backport to 2.4 next.
* Trimmed trailing whitespace.Tim Peters2006-02-271-1/+1
|
* Add an entry for 308Neal Norwitz2006-02-271-0/+2
|
* Create _ast module.Martin v. Löwis2006-02-271-1/+1
| | | | Cleanup Python-ast.c generation.
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-1/+3
| | | | a tree of Python objects. Expose this through compile().
* Remove line meant to test trailing whitespace since that kind of whitespace isBrett Cannon2006-02-261-19/+40
| | | | | | automatically removed. Also annotate what each line is meant to test.
* Whitespace normalization.Tim Peters2006-02-262-2/+2
|