summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Forward port of 1.12.14.3 (which has an incorrect log message):Jack Jansen2002-10-291-1/+4
| | | | | | | if SetDates() in touched() returns an error ignore it: the user may not have permission to change the parent folder. This is a non-serious problem, the only function of touched() is to speed up the finder seeing the change.
* Added test for this fix to classobject.c:Guido van Rossum2002-10-291-0/+27
| | | | | | | | Since properties are supported here, is possible that instance_getattr2() raises an exception. Fix all code that made this assumption. Backport candidate.
* Since properties are supported here, is possible thatGuido van Rossum2002-10-291-13/+12
| | | | | | | instance_getattr2() raises an exception. Fix all code that made this assumption. Backport candidate.
* Patch #629426: Eliminate more autoconf warnings. Use AC_HELP_STRING.Martin v. Löwis2002-10-292-90/+119
|
* Chapter titles that get split over multiple lines in the typesetFred Drake2002-10-281-5/+3
| | | | | | | formats can't have whitespace after the last non-blank character (bug in LaTeX?); fix up a couple of instances of this. Update an email address.
* Minor simplification.Fred Drake2002-10-281-2/+1
|
* Remove unnecessary output file.Fred Drake2002-10-281-42/+0
|
* Add a test of interaction between & and extra replacements.Fred Drake2002-10-281-8/+13
| | | | | Remove extra noise from the output when there are no errors, and say more in the exception when there are errors.
* Really do replacement of & last to avoid bad interactions between &Fred Drake2002-10-281-2/+2
| | | | replacement and replacements based on the entities parameter.
* Avoid calling __dict_replace() if we don't need to -- the call is muchFred Drake2002-10-281-8/+10
| | | | | more expensive than just doing to work needed, and these things seem to always turn into a bottleneck eventually.
* Oops, committed this in the wrong place.Guido van Rossum2002-10-281-740/+0
|
* Spreadsheet demo that I used in the advanced talk at Linux Lunacy II.Guido van Rossum2002-10-281-0/+740
|
* Beginnings of a spreadsheet I used as an example on Linux Lunacy II.Guido van Rossum2002-10-271-0/+740
|
* Change PyOS_Readline declaration to match the recent change to myreadline.cSkip Montanaro2002-10-271-2/+2
| | | | | | (see Patch 512981). I changed stdin to sys_stdin in the body of the function, but did not change stderr to sys_stdout, though I suspect that may be the correct course. I don't know the code involved well enough to judge.
* Patch #627105: Document that SYSTEM_PAGE_SIZE really should not beMartin v. Löwis2002-10-261-1/+4
| | | | larger than the system page size.
* Patch #613256: Add nescape method to xml.sax.saxutils.Martin v. Löwis2002-10-266-8/+58
|
* Add Daniel Stutzbach, for #512981.Martin v. Löwis2002-10-261-0/+1
|
* Document patch #512981.Martin v. Löwis2002-10-261-0/+3
|
* Patch #512981: Update readline input stream on sys.stdin/out change.Martin v. Löwis2002-10-265-22/+42
|
* Patch #623771: Properly use autoconf 2.5x macros.Martin v. Löwis2002-10-262-18/+36
|
* Remove duplicate definitions of _XOPEN_SOURCE_EXTENDED.Martin v. Löwis2002-10-261-2/+0
|
* Patch #628898: Define _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE.Martin v. Löwis2002-10-263-3/+31
|
* Clarify packages in tutorial. Closes SF bug #616211.Raymond Hettinger2002-10-261-0/+3
|
* Implement a safer and more predictable interpolation approach.Fred Drake2002-10-253-1/+74
| | | | Closes SF bug #511737.
* Add tests for both raw and non-raw versions of the items() methods.Fred Drake2002-10-251-0/+26
|
* According to the docs, __name__ is not exposed via the API exceptFred Drake2002-10-251-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 andFred Drake2002-10-251-18/+41
| | | | ConfigParser classes.
* Under Jaguar it seems that 'errn' return value keyword parameters don'tJack Jansen2002-10-251-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 Drake2002-10-251-9/+0
|
* Convert to PyUnit.Fred Drake2002-10-251-293/+263
|
* Added (very) minimal tests of the RawConfigParser class.Fred Drake2002-10-251-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 aFred Drake2002-10-251-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 Drake2002-10-251-28/+43
| | | | | - Documented the alternate forms, which were claimed to be documented but were not.
* Correct the description of PyErr_Restore().Fred Drake2002-10-241-3/+3
| | | | Closes SF bug #577000.
* 'Replace all' in the find dialog didn't properly update the text view (it ↵Just van Rossum2002-10-241-5/+1
| | | | used to, though...). Fixed.
* Relocate an index entry so named anchors are not generated in a section head.Fred Drake2002-10-241-1/+2
| | | | Closes SF bug #546579.
* Update an example to use the DOM implementation object. Explain thatFred Drake2002-10-241-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 Drake2002-10-241-8/+8
|
* Point to the PyXML package as an extended version of the "xml" packageFred Drake2002-10-231-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 charMarc-André Lemburg2002-10-232-3/+7
| | | | Python 2.2.3 candidate.
* Implement Restoring Breakpoints in Subprocess DebuggerKurt B. Kaiser2002-10-233-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 Drake2002-10-221-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 Drake2002-10-221-1/+12
| | | | Closes SF bug #626554.
* Modify example to use string methods instead of the string module.Fred Drake2002-10-221-4/+2
|
* Clarified the error cases and Unicode handling of PyString_AsString(),Fred Drake2002-10-221-8/+17
| | | | | PyString_AsStringAndSize(), and PyString_AS_STRING(). Closes SF bug #606463.
* Add comment about inability to handle Unicode strings (hopefully aGreg Ward2002-10-221-0/+3
| | | | temporary condition).
* terminologyFredrik Lundh2002-10-221-1/+1
|
* add support for basic authentication, based on patch #624180Fredrik Lundh2002-10-222-12/+51
| | | | by Phillip J. Eby
* Clarify what versions of Windows are supported, and add LinuxFred Drake2002-10-221-1/+1
| | | | specifically.
* Patches #626105:Raymond Hettinger2002-10-221-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.