Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of last vestiges of BINARY_DIVIDE. | Neal Norwitz | 2006-03-16 | 1 | -5/+0 |
| | |||||
* | Unicode database updated; use SVN instead of CVS | Andrew M. Kuchling | 2006-03-10 | 1 | -2/+7 |
| | |||||
* | Avoid forward-declaring the methods array. | Martin v. Löwis | 2006-03-10 | 1 | -1/+1 |
| | | | | Rename unicodedata.db* to unicodedata.ucd* | ||||
* | Update Unicode database to Unicode 4.1. | Martin v. Löwis | 2006-03-09 | 1 | -3/+12 |
| | |||||
* | Write a section | Andrew M. Kuchling | 2006-03-09 | 1 | -1/+61 |
| | |||||
* | Markup fix | Andrew M. Kuchling | 2006-03-09 | 1 | -1/+1 |
| | |||||
* | Write a section | Andrew M. Kuchling | 2006-03-09 | 1 | -1/+85 |
| | |||||
* | typo | Georg Brandl | 2006-03-09 | 1 | -1/+1 |
| | |||||
* | Bug #1445901: os.path.realpath() is available on Win/Mac too. | Georg Brandl | 2006-03-08 | 1 | -2/+2 |
| | |||||
* | Patch #1434038: property() now uses the getter's docstring if there is | Georg Brandl | 2006-03-08 | 1 | -0/+5 |
| | | | | | no "doc" argument given. This makes it possible to legitimately use property() as a decorator to produce a read-only property. | ||||
* | Move version added tag from PyObject_Length/Size to PyNumber_Index. | Neal Norwitz | 2006-03-08 | 1 | -1/+1 |
| | |||||
* | Add section | Andrew M. Kuchling | 2006-03-08 | 1 | -0/+6 |
| | |||||
* | Some edits; add empty sections | Andrew M. Kuchling | 2006-03-07 | 1 | -35/+68 |
| | |||||
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 3 | -0/+17 |
| | | | | | | This was mostly written by Travis Oliphant. I've inspected it all; Neal Norwitz and MvL have also looked at it (in an earlier incarnation). | ||||
* | Bug #1440831: fix csv UnicodeWriter example | Georg Brandl | 2006-03-07 | 1 | -2/+2 |
| | |||||
* | SF patch #1443865; gc.get_count() added and optional argument 'generation' | Barry Warsaw | 2006-03-07 | 1 | -3/+13 |
| | | | | | | added to gc.collect(). Updated docs, unit test, and NEWS entry. (Also, fixed a typo in NEWS.) | ||||
* | Fix SF #1442937, Bad Coroutine link | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
| | |||||
* | SF #1442767, docs for os.statvfs miss f_bsize parameter. Will backport. | Neal Norwitz | 2006-03-03 | 1 | -0/+1 |
| | |||||
* | Fix latex typos as spotted by George Yoshida. | Brett Cannon | 2006-03-02 | 1 | -1/+3 |
| | |||||
* | Patch #1440601: Add col_offset attribute to AST nodes. | Martin v. Löwis | 2006-03-01 | 1 | -1/+7 |
| | |||||
* | Document PEP 352 changes. Also added GeneratorExit. | Brett Cannon | 2006-03-01 | 3 | -67/+61 |
| | |||||
* | Fix warning that texcheck complained about. | Martin v. Löwis | 2006-03-01 | 1 | -1/+1 |
| | |||||
* | markup glitch (spotted by George Yoshida) | Fredrik Lundh | 2006-03-01 | 1 | -1/+1 |
| | |||||
* | Document new Py_ssize_t API. | Martin v. Löwis | 2006-03-01 | 2 | -1/+27 |
| | |||||
* | Add tool to check documentation against declaration. | Martin v. Löwis | 2006-03-01 | 1 | -0/+157 |
| | |||||
* | Make documentation match the implementation. | Martin v. Löwis | 2006-03-01 | 6 | -167/+168 |
| | |||||
* | George Yoshida points out that the special characters | Neal Norwitz | 2006-02-28 | 1 | -1/+1 |
| | | | | | from Tools/compiler/ast.txt are not used anywhere else in asttable.txt. So remove "\&". | ||||
* | markup glitch (spotted by George Yoshida) | Fredrik Lundh | 2006-02-28 | 1 | -1/+1 |
| | |||||
* | XXX something for amk's attention | Anthony Baxter | 2006-02-28 | 1 | -0/+1 |
| | |||||
* | Add generation of the version. | Martin v. Löwis | 2006-02-28 | 1 | -0/+5 |
| | |||||
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 2 | -0/+11 |
| | | | | | | | | | | | | | 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). | ||||
* | Note version added for conditional expressions | Neal Norwitz | 2006-02-27 | 1 | -1/+1 |
| | |||||
* | Create _ast module. | Martin v. Löwis | 2006-02-27 | 2 | -0/+47 |
| | | | | Cleanup Python-ast.c generation. | ||||
* | PEP 308 implementation, including minor refdocs and some testcases. It | Thomas Wouters | 2006-02-27 | 1 | -3/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | breaks the parser module, because it adds the if/else construct as well as two new grammar rules for backward compatibility. If no one else fixes parsermodule, I guess I'll go ahead and fix it later this week. The TeX code was checked with texcheck.py, but not rendered. There is actually a slight incompatibility: >>> (x for x in lambda:0) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: iteration over non-sequence changes into >>> (x for x in lambda: 0) File "<stdin>", line 1 (x for x in lambda: 0) ^ SyntaxError: invalid syntax Since there's no way the former version can be useful, it's probably a bugfix ;) | ||||
* | - Patch 1433928: | Guido van Rossum | 2006-02-25 | 3 | -6/+64 |
| | | | | | | | | - 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). | ||||
* | Fix casing of function names. | Georg Brandl | 2006-02-22 | 1 | -3/+3 |
| | |||||
* | George Yoshida's fix. | Neal Norwitz | 2006-02-22 | 1 | -1/+1 |
| | |||||
* | fix typo | Georg Brandl | 2006-02-21 | 1 | -1/+1 |
| | |||||
* | Document "multifile" as deprecated. | Georg Brandl | 2006-02-21 | 1 | -0/+4 |
| | |||||
* | At Brian Wichmann's request, added words warning against | Tim Peters | 2006-02-21 | 1 | -4/+13 |
| | | | | | | | | | | | | using the old Wichmann-Hill generator, Also pointed to a newer version of his generator, and weakened the claim about what jumpahead() does now. Note sure I got the LaTeX entirely correct for \seeurl. If it's broken, please fix it ;-) Bugfix candidate! (These changes make just as much sense for 2.4.) | ||||
* | Fix table header. | Walter Dörwald | 2006-02-21 | 1 | -1/+1 |
| | |||||
* | Trimmed trailing whitespace. | Tim Peters | 2006-02-21 | 1 | -4/+4 |
| | |||||
* | Bug #947571: By default, urllib.urlopen() does not raise IOErrors | Georg Brandl | 2006-02-20 | 1 | -1/+8 |
| | | | | on server error codes. Make this clear. | ||||
* | Bug #1102649: add a note to pickle docs that pickle files should be | Georg Brandl | 2006-02-20 | 1 | -1/+10 |
| | | | | opened in binary mode. | ||||
* | Bug #1013800: document PyFunction_* functions | Georg Brandl | 2006-02-20 | 2 | -11/+112 |
| | |||||
* | Bug #1323369: document possible values of sys.getwindowsversion() | Georg Brandl | 2006-02-20 | 1 | -4/+4 |
| | | | | platform field | ||||
* | Bug #1413790: zipfile now sanitizes absolute archive names that are | Georg Brandl | 2006-02-20 | 1 | -2/+5 |
| | | | | not allowed by the specs. | ||||
* | Fix typpo. | Thomas Wouters | 2006-02-19 | 1 | -1/+1 |
| | |||||
* | Minor tweaks | Neal Norwitz | 2006-02-19 | 1 | -1/+4 |
| | |||||
* | Clarify how hook_compressed determines how to open a file. | Georg Brandl | 2006-02-19 | 1 | -2/+3 |
| |