Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #512981: Update readline input stream on sys.stdin/out change. | Martin v. Löwis | 2002-10-26 | 5 | -22/+42 |
| | |||||
* | Patch #623771: Properly use autoconf 2.5x macros. | Martin v. Löwis | 2002-10-26 | 2 | -18/+36 |
| | |||||
* | Remove duplicate definitions of _XOPEN_SOURCE_EXTENDED. | Martin v. Löwis | 2002-10-26 | 1 | -2/+0 |
| | |||||
* | Patch #628898: Define _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE. | Martin v. Löwis | 2002-10-26 | 3 | -3/+31 |
| | |||||
* | Clarify packages in tutorial. Closes SF bug #616211. | Raymond Hettinger | 2002-10-26 | 1 | -0/+3 |
| | |||||
* | Implement a safer and more predictable interpolation approach. | Fred Drake | 2002-10-25 | 3 | -1/+74 |
| | | | | Closes SF bug #511737. | ||||
* | Add tests for both raw and non-raw versions of the items() methods. | Fred Drake | 2002-10-25 | 1 | -0/+26 |
| | |||||
* | According to the docs, __name__ is not exposed via the API except | Fred Drake | 2002-10-25 | 1 | -2/+8 |
| | | | | | | | | indirectly via %(__name__)s. Not sure why, but maintain the documented behavior for the new items() method. Be a little more efficient about how we compute the list of options in the ConfigParser.items() method. | ||||
* | Update to reflect the refactoring into the RawConfigParser and | Fred Drake | 2002-10-25 | 1 | -18/+41 |
| | | | | ConfigParser classes. | ||||
* | Under Jaguar it seems that 'errn' return value keyword parameters don't | Jack Jansen | 2002-10-25 | 1 | -0/+8 |
| | | | | | | | | | (or don't always?) show up with missed(). I think this is a bug in Jaguar, but as it is a potential dangerous problem (the OSA event has failed, but the Python code isn't told about this and happily continues) this is a quick workaround. Bugfix candidate, I'll add it to 2.2.2 as a last second fix. | ||||
* | Remove useless output file. | Fred Drake | 2002-10-25 | 1 | -9/+0 |
| | |||||
* | Convert to PyUnit. | Fred Drake | 2002-10-25 | 1 | -293/+263 |
| | |||||
* | Added (very) minimal tests of the RawConfigParser class. | Fred Drake | 2002-10-25 | 1 | -16/+35 |
| | | | | | Moved the write() test to near the end of the file since it screws up font-lock. ;-( | ||||
* | Re-factor: Use a RawConfigParser base class and make ConfigParser a | Fred Drake | 2002-10-25 | 1 | -103/+133 |
| | | | | | derived class that adds the ugly string interpolation code. In the process, changed all "__" methods and instance variables to "_". | ||||
* | - The "-" format flag overrides the "0" flag, not the "-" flag. | Fred Drake | 2002-10-25 | 1 | -28/+43 |
| | | | | | - Documented the alternate forms, which were claimed to be documented but were not. | ||||
* | Correct the description of PyErr_Restore(). | Fred Drake | 2002-10-24 | 1 | -3/+3 |
| | | | | Closes SF bug #577000. | ||||
* | 'Replace all' in the find dialog didn't properly update the text view (it ↵ | Just van Rossum | 2002-10-24 | 1 | -5/+1 |
| | | | | used to, though...). Fixed. | ||||
* | Relocate an index entry so named anchors are not generated in a section head. | Fred Drake | 2002-10-24 | 1 | -1/+2 |
| | | | | Closes SF bug #546579. | ||||
* | 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 |
| |