Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update an example to use the DOM implementation object. Explain that | Fred Drake | 2002-10-24 | 1 | -8/+28 |
| | | | | | the parse() and parseString() functions use a separate parser, not actually implement a parser. (This is a common question.) | ||||
* | Clean up some really minor Perl warnings. | Fred Drake | 2002-10-24 | 1 | -8/+8 |
| | |||||
* | Point to the PyXML package as an extended version of the "xml" package | Fred Drake | 2002-10-23 | 1 | -0/+19 |
| | | | | | | | that can provide this fuctionality. Note that the docs for the xml.dom and xml.sax packages are the definitiona of the Python bindings for the DOM and SAX interfaces. | ||||
* | Fix for bug #626172: crash using unicode latin1 single char | Marc-André Lemburg | 2002-10-23 | 2 | -3/+7 |
| | | | | Python 2.2.3 candidate. | ||||
* | Implement Restoring Breakpoints in Subprocess Debugger | Kurt B. Kaiser | 2002-10-23 | 3 | -74/+110 |
| | | | | | | | | | | | | | | | | | | | | M Debugger.py M EditorWindow.py M PyShell.py 0. Polish PyShell.linecache_checkcache() 1. Move break clearing code to PyShell.PyShellEditorWindow from EditorWindow. 2. Add PyShellEditorWindow.breakpoints attribute to __init__, a list of line numbers which are breakpoints for that edit window. 3. Remove the code in Debugger which removes all module breakpoints when debugger is closed. Want to be able to reload into debugger when restarted. 4. Moved the code which sets EditorWindow.text breakpoints from Debugger to PyShell.PyShellEditorWindow and refactored. 5. Implement reloading subprocess debugger with breakpoints from all open PyShellEditorWindows when debugger is opened or subprocess restarted. 6. Eliminate the break_set attribute, use the breakpoint list instead. | ||||
* | Moved description of _urlopener adjacent to the related functions. | Fred Drake | 2002-10-22 | 1 | -18/+35 |
| | | | | | | | Added missing import to example code. Added documentation for pathname2url(), url2pathname(). Closes SF bug #623196. | ||||
* | Describe __path__ along with the rest of the package description. | Fred Drake | 2002-10-22 | 1 | -1/+12 |
| | | | | Closes SF bug #626554. | ||||
* | Modify example to use string methods instead of the string module. | Fred Drake | 2002-10-22 | 1 | -4/+2 |
| | |||||
* | Clarified the error cases and Unicode handling of PyString_AsString(), | Fred Drake | 2002-10-22 | 1 | -8/+17 |
| | | | | | PyString_AsStringAndSize(), and PyString_AS_STRING(). Closes SF bug #606463. | ||||
* | Add comment about inability to handle Unicode strings (hopefully a | Greg Ward | 2002-10-22 | 1 | -0/+3 |
| | | | | temporary condition). | ||||
* | terminology | Fredrik Lundh | 2002-10-22 | 1 | -1/+1 |
| | |||||
* | add support for basic authentication, based on patch #624180 | Fredrik Lundh | 2002-10-22 | 2 | -12/+51 |
| | | | | by Phillip J. Eby | ||||
* | Clarify what versions of Windows are supported, and add Linux | Fred Drake | 2002-10-22 | 1 | -1/+1 |
| | | | | specifically. | ||||
* | Patches #626105: | Raymond Hettinger | 2002-10-22 | 1 | -13/+6 |
| | | | | | | | | | Replaces the _center function in the calendar module with the center method for strings. For situations with uneven padding, the behavior is slightly different in that the center method puts the extra space on the right instead of the left. | ||||
* | (py-parse-state-re): Remove the "if" from the regular expression. | Barry Warsaw | 2002-10-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | This fixes an indentation bug reported by Jeremy when seeing multiple list comprehensions like so: [x for x in seq if blah(x)] # ... [y for y in seq if blah(y)] The reason this broke is because this regexp caused the "find a safe parsing start location higher up in the file" test to erroneously find the if in the listcomp. I think the other keywords in this regexp are fine and good enough. After a weekend of testing, I can't find any adverse effects. | ||||
* | FILETYPES: Newer XFree86 rgb.txt files use the key Xorg instead of | Barry Warsaw | 2002-10-21 | 1 | -67/+68 |
| | | | | XConsortium. Now we can recognize these files! | ||||
* | Some fixes based on feedback from Hans Petter Langtangen. | Barry Warsaw | 2002-10-21 | 1 | -41/+44 |
| | | | | | | | | | | | | | | build(): Fix the logic here for calculating fallbacks if the dbfile isn't parseable. main(): Fix the semantics for -d/--database; this should override any database value found in the .pynche file. Update some comments, and author contact info. Bump to v1.4 Whitespace normalization. | ||||
* | Fix a typo, update (only one) style improvement, whitespace | Barry Warsaw | 2002-10-21 | 1 | -5/+5 |
| | | | | normalization. | ||||
* | test_body_encoding(): a new test for Charset.body_encode(), especially | Barry Warsaw | 2002-10-21 | 1 | -0/+14 |
| | | | | one that tests the obscure bug reported in SF # 625509. | ||||
* | test_body_encoding(): a new test | Barry Warsaw | 2002-10-21 | 1 | -0/+23 |
| | |||||
* | body_encode(): Fixed typo reported by Chris Lawrence, closing SF bug | Barry Warsaw | 2002-10-21 | 1 | -1/+1 |
| | | | | | | #625509. This isn't a huge problem because at the moment there are no built-in charsets for which header_encoding is QP but body_encoding is not. | ||||
* | Explicitly use floor division | Raymond Hettinger | 2002-10-21 | 1 | -1/+1 |
| | |||||
* | Eliminate unused instance variable | Raymond Hettinger | 2002-10-21 | 1 | -5/+5 |
| | |||||
* | cd to users home dir if no current dir has been set. Fixes bug #625734 | Just van Rossum | 2002-10-20 | 1 | -0/+5 |
| | |||||
* | Made MacOS.Error a class style exception (at last!). | Jack Jansen | 2002-10-19 | 1 | -1/+1 |
| | |||||
* | Added a paragraph to explain that SchedParams(0, 0) is usually what | Jack Jansen | 2002-10-19 | 1 | -0/+3 |
| | | | | you want. | ||||
* | fixed the mail address in the documentation, too... | Fredrik Lundh | 2002-10-19 | 2 | -2/+2 |
| | |||||
* | point people to the Python bug tracker, rather than to a mail | Fredrik Lundh | 2002-10-19 | 2 | -20/+7 |
| | | | | account I hardly ever use... | ||||
* | Remove reference to deleted 'www' directory. | Guido van Rossum | 2002-10-18 | 1 | -1/+0 |
| | |||||
* | Note lack of speedup. Remove Irix reference. Remove silly extra | Guido van Rossum | 2002-10-18 | 1 | -5/+6 |
| | | | | | '/tmp' arg. Change predicate to look for world-writable non-symlink files. | ||||
* | Fix markup for tilde in URL. | Fred Drake | 2002-10-18 | 1 | -1/+1 |
| | |||||
* | Verify that lower-higher case delta are 16-bit. | Martin v. Löwis | 2002-10-18 | 1 | -3/+11 |
| | |||||
* | Fix reference to the Fetchmail FAQ: | Fred Drake | 2002-10-18 | 1 | -6/+8 |
| | | | | | | | | | | | - URL was missing an "m" - markup for tilde was wrong - URL was marked as the title - actual title was omitted "make webcheck" didn't catch this; not sure why. Removed some spurious end-of-line whitespace. | ||||
* | Make lower/upper/title work for non-BMP characters. | Martin v. Löwis | 2002-10-18 | 1 | -24/+15 |
| | |||||
* | Fix markup for tilde in URL. | Fred Drake | 2002-10-18 | 1 | -1/+1 |
| | |||||
* | 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. |