Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman | Neal Norwitz | 2002-10-18 | 2 | -1/+17 |
| | | | | Don't crash when getting value of a property raises an exception | ||||
* | Update to Unicode 3.2 database. | Martin v. Löwis | 2002-10-18 | 8 | -9410/+13977 |
| | |||||
* | Update docs. Remove old classes.doc. | Guido van Rossum | 2002-10-18 | 2 | -112/+1 |
| | |||||
* | Add description of the cgi directory. | Guido van Rossum | 2002-10-18 | 1 | -0/+2 |
| | |||||
* | Add description of what's here. | Guido van Rossum | 2002-10-18 | 1 | -0/+11 |
| | |||||
* | Added cross-references to related material on exceptions. | Fred Drake | 2002-10-18 | 1 | -9/+13 |
| | | | | | | | Closes SF bug #217195. Make sure section numbers wrap together with the preceeding word ("section"). | ||||
* | Added cross-references to related material on exceptions. | Fred Drake | 2002-10-18 | 1 | -0/+3 |
| | | | | Closes SF bug #217195. | ||||
* | Make sure section numbers wrap together with the preceeding word | Fred Drake | 2002-10-18 | 1 | -2/+3 |
| | | | | ("section"). | ||||
* | Fix (real! :-) memory leaks in half_cmp and half_binop. | Guido van Rossum | 2002-10-18 | 1 | -1/+4 |
| | | | | Perhaps found by NealN and valgrind. Will forward port. | ||||
* | Sigh. That wasn't a memory leak, that was Guido committing before | Guido van Rossum | 2002-10-18 | 1 | -5/+2 |
| | | | | running tests. Withdraw 2.183 and its backport. | ||||
* | Fix memory leak in add_subclass() found by NealN with valgrind. | Guido van Rossum | 2002-10-18 | 1 | -2/+5 |
| | | | | Will backport. | ||||
* | Patch #624936: Implement __contains__. | Martin v. Löwis | 2002-10-18 | 1 | -1/+4 |
| | |||||
* | Try to fix the broken links caused by multiple \ref on the same line. | Neal Norwitz | 2002-10-18 | 1 | -1/+1 |
| | | | | | | | | SF bug #217195. Not sure if chomp() is correct, but chop() definitely has problems. This change seems to have no ill effects. Backport candidate if Fred agrees. | ||||
* | Add new encoding for Ukrainian Cyrillic | Neal Norwitz | 2002-10-17 | 2 | -0/+55 |
| | |||||
* | Continue to work even though the test can be named test.test_regex | Fred Drake | 2002-10-17 | 1 | -1/+1 |
| | | | | these days. | ||||
* | Don't call warnings.resetwarnings(); that does bad things that cause | Fred Drake | 2002-10-17 | 1 | -5/+4 |
| | | | | | | other tests to generate warning when they didn't before. In particular, this cancels not only filters set by -W, but also from test.regrtest. | ||||
* | Refactor cmd_view(): move line formatting to a helper method. | Guido van Rossum | 2002-10-17 | 1 | -13/+15 |
| | |||||
* | In cmd_create(), use a redirect directive instead of viewing the page; | Guido van Rossum | 2002-10-17 | 1 | -2/+9 |
| | | | | | | this avoids resubmitting POST data. Remove redundant 'Page' from label passed from cmd_new(). | ||||
* | If we have a filename and __main__.__file__ hasn't already been set, | Fred Drake | 2002-10-17 | 1 | -1/+11 |
| | | | | | set it. Closes SF issue #624729. | ||||
* | Fix minor whitespace nit, for consistency with Python's C style rules. | Fred Drake | 2002-10-17 | 1 | -1/+1 |
| | |||||
* | Remove spurious cruft from the output. | Fred Drake | 2002-10-17 | 1 | -1/+1 |
| | |||||
* | Clean up some whitespace to be consistent with Python's C style. | Fred Drake | 2002-10-17 | 1 | -4/+4 |
| | |||||
* | Remove redundant load() call. | Guido van Rossum | 2002-10-17 | 1 | -1/+0 |
| | |||||
* | Typo(!): "normal" -> "number" | Fred Drake | 2002-10-17 | 1 | -1/+1 |
| | |||||
* | Grammar repair in comment. | Guido van Rossum | 2002-10-17 | 1 | -1/+1 |
| | |||||
* | Use tempfile.gettempdir() to get the temp directory rather than | Guido van Rossum | 2002-10-17 | 1 | -2/+2 |
| | | | | hardcoding "/tmp". | ||||
* | Must catch TypeError from int(length). | Guido van Rossum | 2002-10-17 | 1 | -1/+1 |
| | |||||
* | Restructure: move all wiki code into a separate module. | Guido van Rossum | 2002-10-17 | 2 | -113/+116 |
| | |||||
* | Add trailing newline when saving. | Guido van Rossum | 2002-10-17 | 1 | -0/+2 |
| | |||||
* | Security fixes: reject non-wiki-word page names; set homedir to /tmp. | Guido van Rossum | 2002-10-17 | 1 | -6/+13 |
| | | | | | | Show errors returned by store(). A few nits. | ||||
* | Added missing entries to __all__. | Fred Drake | 2002-10-16 | 1 | -1/+2 |
| | |||||
* | Make sure we test urlsplit() / urlunsplit() directly, rather than | Fred Drake | 2002-10-16 | 1 | -12/+40 |
| | | | | | | guessing that urlparse() / urlunparse() use them. Add tests of urldefrag(). | ||||
* | Some really simple cgi examples. cgi3 is a MiniWiki. | Guido van Rossum | 2002-10-16 | 4 | -0/+157 |
| | |||||
* | Patch #623780: Replace obsolete struct macros. | Martin v. Löwis | 2002-10-16 | 5 | -34/+14 |
| | |||||
* | Document urldefrag(). | Fred Drake | 2002-10-16 | 1 | -0/+7 |
| | |||||
* | Add n_unnamed_fields into the type. | Martin v. Löwis | 2002-10-16 | 1 | -5/+15 |
| | |||||
* | Correct stat_result float time stamps entry. | Martin v. Löwis | 2002-10-16 | 1 | -1/+2 |
| | |||||
* | Add PyStructSequence_UnnamedField. Add stat_float_times. | Martin v. Löwis | 2002-10-16 | 5 | -18/+151 |
| | | | | Use integers in stat tuple, optionally floats in named fields. | ||||
* | Recreated after source changes. | Thomas Heller | 2002-10-16 | 1 | -319/+319 |
| | |||||
* | posix_execve(): add missing argument for "et" format in PyArg_Parse() | Guido van Rossum | 2002-10-16 | 1 | -0/+1 |
| | | | | | call. This caused mysterious crashes (hard to debug because it was happening in a child process). | ||||
* | Use string methods. Re-organize imports to Python Normal Form. | Fred Drake | 2002-10-16 | 1 | -3/+4 |
| | |||||
* | Only reset _is_empty if needed. | Fred Drake | 2002-10-16 | 1 | -1/+1 |
| | |||||
* | Modernization: Use string methods, use str instead of | Fred Drake | 2002-10-16 | 1 | -17/+14 |
| | | | | | types.StringType, inherit from list instead of UserList. | ||||
* | Use string methods. | Fred Drake | 2002-10-16 | 7 | -23/+18 |
| | |||||
* | Use string methods. Organize the imports in Python Normal Form. | Fred Drake | 2002-10-16 | 1 | -5/+5 |
| | |||||
* | Use string methods; minor code cleanup. | Fred Drake | 2002-10-16 | 1 | -21/+26 |
| | |||||
* | Recreated after source changes. | Thomas Heller | 2002-10-15 | 1 | -315/+315 |
| | |||||
* | Patch #572628: Optional timeouts for put and get. | Martin v. Löwis | 2002-10-15 | 4 | -36/+137 |
| | |||||
* | Revert the previous checkin - it didn't work anyway. | Thomas Heller | 2002-10-15 | 1 | -4/+3 |
| | |||||
* | For some reason (probably cut and paste), __ipow__ for new-style | Guido van Rossum | 2002-10-15 | 2 | -2/+13 |
| | | | | | | | | | | | | | | classes was called with three arguments. This makes no sense, there's no way to pass in the "modulo" 3rd argument as for __pow__, and classic classes don't do this. [SF bug 620179] I don't want to backport this to 2.2.2, because it could break existing code that has developed a work-around. Code in 2.2.2 that wants to use __ipow__ and wants to be forward compatible with 2.3 should be written like this: def __ipow__(self, exponent, modulo=None): ... |