Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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). | ||||
* | Skip over doc strings. | Martin v. Löwis | 2006-02-27 | 1 | -0/+2 |
| | |||||
* | Patch 1413181, by Gabriel Becedillas. | Tim Peters | 2006-02-27 | 1 | -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 Peters | 2006-02-27 | 1 | -1/+1 |
| | |||||
* | Add an entry for 308 | Neal Norwitz | 2006-02-27 | 1 | -0/+2 |
| | |||||
* | Create _ast module. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
| | | | | Cleanup Python-ast.c generation. | ||||
* | Generate code to recursively copy an AST into | Martin v. Löwis | 2006-02-26 | 1 | -1/+3 |
| | | | | a tree of Python objects. Expose this through compile(). | ||||
* | Remove line meant to test trailing whitespace since that kind of whitespace is | Brett Cannon | 2006-02-26 | 1 | -19/+40 |
| | | | | | | automatically removed. Also annotate what each line is meant to test. | ||||
* | Whitespace normalization. | Tim Peters | 2006-02-26 | 2 | -2/+2 |
| | |||||
* | - Patch 1433928: | Guido van Rossum | 2006-02-25 | 1 | -0/+8 |
| | | | | | | | | - The copy module now "copies" function objects (as atomic objects). - dict.__getitem__ now looks for a __missing__ hook before raising KeyError. - Added a new type, defaultdict, to the collections module. This uses the new __missing__ hook behavior added to dict (see above). | ||||
* | Move the vimrc file to the newly created Vim/ directory. | Brett Cannon | 2006-02-25 | 1 | -0/+0 |
| | |||||
* | Add a script that auto-generates a Vim syntax highlighting file for Python. | Brett Cannon | 2006-02-25 | 3 | -0/+413 |
| | | | | | | | Just symlink or copy python.vim to ~/.vim/syntax/ . Also included is a sample Python file with basic expressions to make sure they are highlighted. Also add a Vim directory in Misc to hold all Vim configuration files. | ||||
* | Bug #854823: socketmodule now builds on Sun platforms even when | Georg Brandl | 2006-02-20 | 1 | -0/+3 |
| | | | | INET_ADDRSTRLEN is not defined. | ||||
* | Bug #1413790: zipfile now sanitizes absolute archive names that are | Georg Brandl | 2006-02-20 | 1 | -0/+6 |
| | | | | not allowed by the specs. | ||||
* | Ignore the tests which report leaks sporadically. | Neal Norwitz | 2006-02-19 | 1 | -3/+8 |
| | | | | | | | | This should cause few enough spurious warnings to send to python-checkins now. If a test leaks that is not in the ignore list (LEAKY_TESTS), all tests which leak will be reported. This includes those in the ignore list. Hopefully that will prompt someone to fix the flakiness. | ||||
* | Fix the encodings package codec search function to only search | Marc-André Lemburg | 2006-02-19 | 1 | -0/+6 |
| | | | | | | inside its own package. Fixes problem reported in patch #1433198. Add codec search function for codec test codec. | ||||
* | Patch #1215184: FileInput now can be given an opening hook which can | Georg Brandl | 2006-02-19 | 1 | -0/+3 |
| | | | | be used to control how files are opened. | ||||
* | Patch #1212287: fileinput.input() now has a mode parameter for | Georg Brandl | 2006-02-19 | 1 | -0/+3 |
| | | | | specifying the file mode input files should be opened with. | ||||
* | Patch #1215184: fileinput now has a fileno() function for getting the | Georg Brandl | 2006-02-19 | 1 | -0/+3 |
| | | | | current file number. | ||||
* | Patch #1349274: gettext.install() now optionally installs additional | Georg Brandl | 2006-02-19 | 1 | -0/+3 |
| | | | | translation functions other than _() in the builtin namespace. | ||||
* | Patch #1337756: fileinput now accepts Unicode filenames. | Georg Brandl | 2006-02-19 | 1 | -0/+2 |
| | |||||
* | Patch #1393157: os.startfile() now has an optional argument to specify | Georg Brandl | 2006-02-18 | 1 | -0/+3 |
| | | | | a "command verb" to invoke on the file. | ||||
* | Patch #1373643: The chunk module can now read chunks larger than | Georg Brandl | 2006-02-18 | 1 | -0/+3 |
| | | | | two gigabytes. | ||||
* | Add NEWS entry to previous checkin. | Georg Brandl | 2006-02-17 | 1 | -0/+2 |
| | |||||
* | Bug #1430298: It is now possible to send a mail with an empty | Georg Brandl | 2006-02-17 | 1 | -0/+3 |
| | | | | return address using smtplib. | ||||
* | Add bug number to NEWS entry. | Georg Brandl | 2006-02-17 | 1 | -1/+2 |
| | |||||
* | The names of lambda functions are now properly displayed in pydoc. | Georg Brandl | 2006-02-17 | 1 | -0/+2 |
| | |||||
* | Patch #1432345: Make python compile on DragonFly. | Martin v. Löwis | 2006-02-17 | 1 | -0/+2 |
| | |||||
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -0/+2 |
| |