]> granicus.if.org Git - python/log
python
22 years ago[Bug #570655] Fix misleading option text
Andrew M. Kuchling [Mon, 4 Nov 2002 13:33:07 +0000 (13:33 +0000)]
[Bug #570655] Fix misleading option text

22 years agoPatch #630829: Don't block on IAC, process suboptions.
Martin v. Löwis [Mon, 4 Nov 2002 09:56:00 +0000 (09:56 +0000)]
Patch #630829: Don't block on IAC, process suboptions.

22 years ago[ 629984 ] Smaller font sizes not supported
Chui Tey [Mon, 4 Nov 2002 03:17:45 +0000 (03:17 +0000)]
[ 629984 ] Smaller font sizes not supported

22 years ago619127: Recent File Menu Not Updating
Chui Tey [Mon, 4 Nov 2002 03:11:10 +0000 (03:11 +0000)]
619127: Recent File Menu Not Updating

22 years agoAdd getpreferredencoding. Support @euro modifiers. Fixes #554676.
Martin v. Löwis [Sun, 3 Nov 2002 17:20:12 +0000 (17:20 +0000)]
Add getpreferredencoding. Support @euro modifiers. Fixes #554676.
The @euro part is backported to 2.2.3.

22 years agoFix SF #632864, Typo string instead of sting in LibDoc. Will backport.
Neal Norwitz [Sun, 3 Nov 2002 13:13:20 +0000 (13:13 +0000)]
Fix SF #632864, Typo string instead of sting in LibDoc.  Will backport.

22 years agoFix SF # 518775, buffer object API description truncated
Neal Norwitz [Sun, 3 Nov 2002 02:56:27 +0000 (02:56 +0000)]
Fix SF # 518775, buffer object API description truncated

22 years agoFix SF # 631066, running regrtest in user mode fails
Neal Norwitz [Sun, 3 Nov 2002 00:35:53 +0000 (00:35 +0000)]
Fix SF # 631066, running regrtest in user mode fails

Try to write to TESTFN, if that fails, try TESTFN in /tmp
If that fails, print a warning and go on.
Will backport.

22 years agoFix SF #618146, overflow error in calendar module
Neal Norwitz [Sun, 3 Nov 2002 00:13:42 +0000 (00:13 +0000)]
Fix SF #618146, overflow error in calendar module
Will backport.

22 years agoAdd "select all" by clicking on (0,0) cell.
Guido van Rossum [Sat, 2 Nov 2002 22:18:46 +0000 (22:18 +0000)]
Add "select all" by clicking on (0,0) cell.
Redo setting the selection and setting the beacon to deal better
with rows or columns -- these are now expressed by range (1, sys.maxint).

22 years agoFix SF # 551504, python -v sometimes fails to find init (HPUX)
Neal Norwitz [Sat, 2 Nov 2002 20:58:05 +0000 (20:58 +0000)]
Fix SF # 551504, python -v sometimes fails to find init (HPUX)

Joseph Winston recommends removing DYNAMIC_PATH, since it can
cause some dynamic libraries to not load on HP-UX 11.

22 years agoFix compiler warning on HP-UX.
Neal Norwitz [Sat, 2 Nov 2002 20:43:25 +0000 (20:43 +0000)]
Fix compiler warning on HP-UX.
Cast param to isalnum() to int.

22 years agoUse O_NONBLOCK rather than O_NDELAY, so we get POSIX non-blocking I/O.
Neal Norwitz [Sat, 2 Nov 2002 19:55:21 +0000 (19:55 +0000)]
Use O_NONBLOCK rather than O_NDELAY, so we get POSIX non-blocking I/O.

On HPUX, Solaris, Tru64 (Dec UNIX), and IRIX (I think),
O_NONBLOCK is the POSIX version of non-blocking I/O
which is what we want.

On Linux and FreeBSD (at least), O_NONBLOCK and O_NDELAY are the same.
So this change should have no negative effect on those platforms.

Tested on Linux, Solaris, HPUX.

Thanks to Anders Qvist for diagnosing this problem.

22 years agoSkip test_dbm if we can't write to the file
Neal Norwitz [Sat, 2 Nov 2002 18:25:08 +0000 (18:25 +0000)]
Skip test_dbm if we can't write to the file
Cleanup (remove) the file(s) after we are done with the test.
(Fixes problem on snake farm)

22 years agoFix SF #632624, test_resource failure on alpha/64bit
Neal Norwitz [Sat, 2 Nov 2002 17:46:24 +0000 (17:46 +0000)]
Fix SF #632624, test_resource failure on alpha/64bit
Return PyLongs instead ot PyInts.
On alphas, 9223372036854775807 became -1.

22 years agoRemove extra argument in mknod. Fixes #632628.
Martin v. Löwis [Sat, 2 Nov 2002 17:42:33 +0000 (17:42 +0000)]
Remove extra argument in mknod. Fixes #632628.

22 years agoNeed to quote test for posix_threads on HPUX11
Neal Norwitz [Sat, 2 Nov 2002 16:58:05 +0000 (16:58 +0000)]
Need to quote test for posix_threads on HPUX11

22 years agoMove introductory sentence to where it belongs.
Walter Dörwald [Sat, 2 Nov 2002 13:32:07 +0000 (13:32 +0000)]
Move introductory sentence to where it belongs.

22 years agoAdd ESC key binding -- undo current cell editing.
Guido van Rossum [Sat, 2 Nov 2002 06:50:05 +0000 (06:50 +0000)]
Add ESC key binding -- undo current cell editing.

22 years agoMajor breakthrough in selection -- drag-select multiple cells now
Guido van Rossum [Sat, 2 Nov 2002 06:25:51 +0000 (06:25 +0000)]
Major breakthrough in selection -- drag-select multiple cells now
works.  Also row and column selection works (sort of).  The DEL
key deletes the selected rectangle.  sys.argv[1] used by test_gui().

22 years agoCorrect erroneous parenthesis placement in the delta from 1.63 to 1.64.
Raymond Hettinger [Sat, 2 Nov 2002 02:02:46 +0000 (02:02 +0000)]
Correct erroneous parenthesis placement in the delta from 1.63 to 1.64.

22 years agoUpdate example for the type() function to use the currently accepted
Fred Drake [Fri, 1 Nov 2002 21:33:44 +0000 (21:33 +0000)]
Update example for the type() function to use the currently accepted
preference of using "is" instead of "==" to compare types, use
built-in names where available, and point to the isinstance()
function.
Closes SF bug #632196.

22 years agoPatch #631972: Adds an is_jython flag.
Finn Bock [Fri, 1 Nov 2002 18:02:03 +0000 (18:02 +0000)]
Patch #631972: Adds an is_jython flag.

22 years agopatch #624180 (part 2 of 2):
Fredrik Lundh [Fri, 1 Nov 2002 17:14:16 +0000 (17:14 +0000)]
patch #624180 (part 2 of 2):

use unquote on authentication strings, to allow users to embed
@ and : in user names and passwords (from Phillip Eby)

22 years ago[SF bug 631713] use the import exeption message in the TestFailed
Finn Bock [Fri, 1 Nov 2002 11:33:00 +0000 (11:33 +0000)]
[SF bug 631713] use the import exeption message in the TestFailed
exception.

22 years agoDefine abstract way to get the normal and smaller font sizes that work
Fred Drake [Thu, 31 Oct 2002 21:04:34 +0000 (21:04 +0000)]
Define abstract way to get the normal and smaller font sizes that work
even in the footnote context.

22 years agoAdd a missing % to a Windows-style environment variable expression.
Fred Drake [Thu, 31 Oct 2002 20:46:20 +0000 (20:46 +0000)]
Add a missing % to a Windows-style environment variable expression.
Minor style guide compliance fix.
Several markup fixes.

22 years agoAd test_funky_hyphens() to test some screwy edge cases reported in SF
Greg Ward [Thu, 31 Oct 2002 16:11:18 +0000 (16:11 +0000)]
Ad test_funky_hyphens() to test some screwy edge cases reported in SF
bug #596434.  (Alas, I don't think this completely covers that bug.)

Remove 'wrapper' argument from BaseTestCase.check_split() -- it's not
actually needed.

22 years agoFixes SF bug#614051: win32 build_ext problem.
Thomas Heller [Thu, 31 Oct 2002 14:26:37 +0000 (14:26 +0000)]
Fixes SF bug#614051: win32 build_ext problem.

22 years agoCatch only ImportError
Andrew M. Kuchling [Thu, 31 Oct 2002 13:39:33 +0000 (13:39 +0000)]
Catch only ImportError

22 years agoAdd docstrings to register, lookup, register_error
Walter Dörwald [Thu, 31 Oct 2002 13:36:29 +0000 (13:36 +0000)]
Add docstrings to register, lookup, register_error
and lookup_error. This closes SF patch #630622.

22 years agoMake the Distribution() constructor forgiving of unknown keyword
Andrew M. Kuchling [Thu, 31 Oct 2002 13:22:41 +0000 (13:22 +0000)]
Make the Distribution() constructor forgiving of unknown keyword
arguments, triggering a warning instead of raising an exception.  (In
1.5.2/2.0, it will print to stderr.)

Bugfix candidate for all previous versions.  This changes behaviour,
but the old behaviour wasn't very useful.  If Distutils version X+1
adds a new keyword argument, using the new keyword means your setup.py
file won't work with Distutils version X any more.

22 years agoAdd a couple of comments about the use of \normalsize and
Fred Drake [Wed, 30 Oct 2002 22:20:27 +0000 (22:20 +0000)]
Add a couple of comments about the use of \normalsize and
\footnotesize.

22 years agoStill more magical <link> elements.
Fred Drake [Wed, 30 Oct 2002 21:51:18 +0000 (21:51 +0000)]
Still more magical <link> elements.

22 years agoHackish way to generate an up-<link> for the title page if we have
Fred Drake [Wed, 30 Oct 2002 21:38:32 +0000 (21:38 +0000)]
Hackish way to generate an up-<link> for the title page if we have
one.

Added misc. comments.

22 years agoMore <link> support for generated pages.
Fred Drake [Wed, 30 Oct 2002 21:32:40 +0000 (21:32 +0000)]
More <link> support for generated pages.

22 years agoTwo more <link> elements.
Fred Drake [Wed, 30 Oct 2002 21:29:50 +0000 (21:29 +0000)]
Two more <link> elements.

22 years agoAdd some relevant <link> elements.
Fred Drake [Wed, 30 Oct 2002 21:17:10 +0000 (21:17 +0000)]
Add some relevant <link> elements.

22 years agoUse personal e-mail address
Andrew M. Kuchling [Wed, 30 Oct 2002 21:08:34 +0000 (21:08 +0000)]
Use personal e-mail address

22 years agoMinor rearranging.
Fred Drake [Wed, 30 Oct 2002 19:55:23 +0000 (19:55 +0000)]
Minor rearranging.

22 years agoAdd notes to the asctime() and ctime() descriptions to make it
Fred Drake [Wed, 30 Oct 2002 18:17:03 +0000 (18:17 +0000)]
Add notes to the asctime() and ctime() descriptions to make it
explicit that locale information is not used.  There wasn't anything
that implied it was, but this has confused users.

22 years agoSprinkle with --favicon options.
Fred Drake [Wed, 30 Oct 2002 17:07:02 +0000 (17:07 +0000)]
Sprinkle with --favicon options.

22 years agoAdded support for --favicon.
Fred Drake [Wed, 30 Oct 2002 17:05:03 +0000 (17:05 +0000)]
Added support for --favicon.
Fix support for the Aesop Meta Type.

22 years agoAdded support for --favicon.
Fred Drake [Wed, 30 Oct 2002 17:02:21 +0000 (17:02 +0000)]
Added support for --favicon.

22 years agoAdd support for using a "favicon".
Fred Drake [Wed, 30 Oct 2002 17:00:58 +0000 (17:00 +0000)]
Add support for using a "favicon".

make_head_and_body():  Re-arranged to do (slightly) less work for each page.

22 years agoMake use of the new "favicon" image.
Fred Drake [Wed, 30 Oct 2002 16:54:54 +0000 (16:54 +0000)]
Make use of the new "favicon" image.

22 years agoAdded "favicon" image.
Fred Drake [Wed, 30 Oct 2002 16:54:12 +0000 (16:54 +0000)]
Added "favicon" image.

22 years agoAdded missing class to __all__.
Raymond Hettinger [Wed, 30 Oct 2002 06:20:37 +0000 (06:20 +0000)]
Added missing class to __all__.

22 years agoAdded __all__.
Raymond Hettinger [Wed, 30 Oct 2002 06:15:53 +0000 (06:15 +0000)]
Added __all__.

22 years agoAdded missing names to __all__.
Raymond Hettinger [Wed, 30 Oct 2002 06:09:58 +0000 (06:09 +0000)]
Added missing names to __all__.

22 years agoAdded new move() function to __all__.
Raymond Hettinger [Wed, 30 Oct 2002 05:44:50 +0000 (05:44 +0000)]
Added new move() function to __all__.

22 years agoSF bug 630824: pydoc Helper keywords missing 'yield'
Tim Peters [Wed, 30 Oct 2002 05:21:00 +0000 (05:21 +0000)]
SF bug 630824:  pydoc Helper keywords missing 'yield'
Wow, what a brittle subsystem!  Fixed, maybe, provided Fred doesn't
shuffle the docs around.

Bugfix candidate.

22 years agoPatrick K. O'Brien notices that kwlist was missing from __all__.
Raymond Hettinger [Wed, 30 Oct 2002 05:17:22 +0000 (05:17 +0000)]
Patrick K. O'Brien notices that kwlist was missing from __all__.
Added because it is part of the documented interface.

22 years agoForward port of 1.12.14.3 (which has an incorrect log message):
Jack Jansen [Tue, 29 Oct 2002 22:48:43 +0000 (22:48 +0000)]
Forward port of 1.12.14.3 (which has an incorrect log message):
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.

22 years agoAdded test for this fix to classobject.c:
Guido van Rossum [Tue, 29 Oct 2002 19:08:29 +0000 (19:08 +0000)]
Added test for this fix to classobject.c:

Since properties are supported here, is possible that
instance_getattr2() raises an exception.  Fix all code that made this
assumption.

Backport candidate.

22 years agoSince properties are supported here, is possible that
Guido van Rossum [Tue, 29 Oct 2002 18:36:40 +0000 (18:36 +0000)]
Since properties are supported here, is possible that
instance_getattr2() raises an exception.  Fix all code that made this
assumption.

Backport candidate.

22 years agoPatch #629426: Eliminate more autoconf warnings. Use AC_HELP_STRING.
Martin v. Löwis [Tue, 29 Oct 2002 10:07:43 +0000 (10:07 +0000)]
Patch #629426: Eliminate more autoconf warnings. Use AC_HELP_STRING.

22 years agoChapter titles that get split over multiple lines in the typeset
Fred Drake [Mon, 28 Oct 2002 19:28:22 +0000 (19:28 +0000)]
Chapter titles that get split over multiple lines in the typeset
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.

22 years agoMinor simplification.
Fred Drake [Mon, 28 Oct 2002 18:09:41 +0000 (18:09 +0000)]
Minor simplification.

22 years agoRemove unnecessary output file.
Fred Drake [Mon, 28 Oct 2002 17:59:24 +0000 (17:59 +0000)]
Remove unnecessary output file.

22 years agoAdd a test of interaction between &amp; and extra replacements.
Fred Drake [Mon, 28 Oct 2002 17:58:48 +0000 (17:58 +0000)]
Add a test of interaction between &amp; and extra replacements.
Remove extra noise from the output when there are no errors, and say more
in the exception when there are errors.

22 years agoReally do replacement of &amp; last to avoid bad interactions between &amp;
Fred Drake [Mon, 28 Oct 2002 17:46:59 +0000 (17:46 +0000)]
Really do replacement of &amp; last to avoid bad interactions between &amp;
replacement and replacements based on the entities parameter.

22 years agoAvoid calling __dict_replace() if we don't need to -- the call is much
Fred Drake [Mon, 28 Oct 2002 17:29:01 +0000 (17:29 +0000)]
Avoid calling __dict_replace() if we don't need to -- the call is much
more expensive than just doing to work needed, and these things seem
to always turn into a bottleneck eventually.

22 years agoOops, committed this in the wrong place.
Guido van Rossum [Mon, 28 Oct 2002 01:07:02 +0000 (01:07 +0000)]
Oops, committed this in the wrong place.

22 years agoSpreadsheet demo that I used in the advanced talk at Linux Lunacy II.
Guido van Rossum [Mon, 28 Oct 2002 01:06:37 +0000 (01:06 +0000)]
Spreadsheet demo that I used in the advanced talk at Linux Lunacy II.

22 years agoBeginnings of a spreadsheet I used as an example on Linux Lunacy II.
Guido van Rossum [Sun, 27 Oct 2002 22:48:56 +0000 (22:48 +0000)]
Beginnings of a spreadsheet I used as an example on Linux Lunacy II.

22 years agoChange PyOS_Readline declaration to match the recent change to myreadline.c
Skip Montanaro [Sun, 27 Oct 2002 01:59:21 +0000 (01:59 +0000)]
Change PyOS_Readline declaration to match the recent change to myreadline.c
(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.

22 years agoPatch #627105: Document that SYSTEM_PAGE_SIZE really should not be
Martin v. Löwis [Sat, 26 Oct 2002 15:01:53 +0000 (15:01 +0000)]
Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be
larger than the system page size.

22 years agoPatch #613256: Add nescape method to xml.sax.saxutils.
Martin v. Löwis [Sat, 26 Oct 2002 14:50:45 +0000 (14:50 +0000)]
Patch #613256: Add nescape method to xml.sax.saxutils.

22 years agoAdd Daniel Stutzbach, for #512981.
Martin v. Löwis [Sat, 26 Oct 2002 14:43:07 +0000 (14:43 +0000)]
Add Daniel Stutzbach, for #512981.

22 years agoDocument patch #512981.
Martin v. Löwis [Sat, 26 Oct 2002 14:42:02 +0000 (14:42 +0000)]
Document patch #512981.

22 years agoPatch #512981: Update readline input stream on sys.stdin/out change.
Martin v. Löwis [Sat, 26 Oct 2002 14:39:10 +0000 (14:39 +0000)]
Patch #512981: Update readline input stream on sys.stdin/out change.

22 years agoPatch #623771: Properly use autoconf 2.5x macros.
Martin v. Löwis [Sat, 26 Oct 2002 13:47:44 +0000 (13:47 +0000)]
Patch #623771: Properly use autoconf 2.5x macros.

22 years agoRemove duplicate definitions of _XOPEN_SOURCE_EXTENDED.
Martin v. Löwis [Sat, 26 Oct 2002 13:36:13 +0000 (13:36 +0000)]
Remove duplicate definitions of _XOPEN_SOURCE_EXTENDED.

22 years agoPatch #628898: Define _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE.
Martin v. Löwis [Sat, 26 Oct 2002 13:33:00 +0000 (13:33 +0000)]
Patch #628898: Define _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE.

22 years agoClarify packages in tutorial. Closes SF bug #616211.
Raymond Hettinger [Sat, 26 Oct 2002 03:13:57 +0000 (03:13 +0000)]
Clarify packages in tutorial.  Closes SF bug #616211.

22 years agoImplement a safer and more predictable interpolation approach.
Fred Drake [Fri, 25 Oct 2002 21:52:00 +0000 (21:52 +0000)]
Implement a safer and more predictable interpolation approach.
Closes SF bug #511737.

22 years agoAdd tests for both raw and non-raw versions of the items() methods.
Fred Drake [Fri, 25 Oct 2002 20:42:44 +0000 (20:42 +0000)]
Add tests for both raw and non-raw versions of the items() methods.

22 years agoAccording to the docs, __name__ is not exposed via the API except
Fred Drake [Fri, 25 Oct 2002 20:41:30 +0000 (20:41 +0000)]
According to the docs, __name__ is not exposed via the API except
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.

22 years agoUpdate to reflect the refactoring into the RawConfigParser and
Fred Drake [Fri, 25 Oct 2002 20:20:58 +0000 (20:20 +0000)]
Update to reflect the refactoring into the RawConfigParser and
ConfigParser classes.

22 years agoUnder Jaguar it seems that 'errn' return value keyword parameters don't
Jack Jansen [Fri, 25 Oct 2002 20:06:29 +0000 (20:06 +0000)]
Under Jaguar it seems that 'errn' return value keyword parameters don't
(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.

22 years agoRemove useless output file.
Fred Drake [Fri, 25 Oct 2002 19:41:26 +0000 (19:41 +0000)]
Remove useless output file.

22 years agoConvert to PyUnit.
Fred Drake [Fri, 25 Oct 2002 19:40:49 +0000 (19:40 +0000)]
Convert to PyUnit.

22 years agoAdded (very) minimal tests of the RawConfigParser class.
Fred Drake [Fri, 25 Oct 2002 18:09:24 +0000 (18:09 +0000)]
Added (very) minimal tests of the RawConfigParser class.
Moved the write() test to near the end of the file since it screws up
font-lock.  ;-(

22 years agoRe-factor: Use a RawConfigParser base class and make ConfigParser a
Fred Drake [Fri, 25 Oct 2002 18:08:18 +0000 (18:08 +0000)]
Re-factor:  Use a RawConfigParser base class and make ConfigParser a
derived class that adds the ugly string interpolation code.  In the
process, changed all "__" methods and instance variables to "_".

22 years ago- The "-" format flag overrides the "0" flag, not the "-" flag.
Fred Drake [Fri, 25 Oct 2002 16:55:51 +0000 (16:55 +0000)]
- The "-" format flag overrides the "0" flag, not the "-" flag.
- Documented the alternate forms, which were claimed to be documented
  but were not.

22 years agoCorrect the description of PyErr_Restore().
Fred Drake [Thu, 24 Oct 2002 20:54:18 +0000 (20:54 +0000)]
Correct the description of PyErr_Restore().
Closes SF bug #577000.

22 years ago'Replace all' in the find dialog didn't properly update the text view (it used to...
Just van Rossum [Thu, 24 Oct 2002 20:03:29 +0000 (20:03 +0000)]
'Replace all' in the find dialog didn't properly update the text view (it used to, though...). Fixed.

22 years agoRelocate an index entry so named anchors are not generated in a section head.
Fred Drake [Thu, 24 Oct 2002 19:57:37 +0000 (19:57 +0000)]
Relocate an index entry so named anchors are not generated in a section head.
Closes SF bug #546579.

22 years agoUpdate an example to use the DOM implementation object. Explain that
Fred Drake [Thu, 24 Oct 2002 19:36:04 +0000 (19:36 +0000)]
Update an example to use the DOM implementation object.  Explain that
the parse() and parseString() functions use a separate parser, not
actually implement a parser.  (This is a common question.)

22 years agoClean up some really minor Perl warnings.
Fred Drake [Thu, 24 Oct 2002 16:36:05 +0000 (16:36 +0000)]
Clean up some really minor Perl warnings.

22 years agoPoint to the PyXML package as an extended version of the "xml" package
Fred Drake [Wed, 23 Oct 2002 20:58:32 +0000 (20:58 +0000)]
Point to the PyXML package as an extended version of the "xml" package
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.

22 years agoFix for bug #626172: crash using unicode latin1 single char
Marc-André Lemburg [Wed, 23 Oct 2002 09:02:46 +0000 (09:02 +0000)]
Fix for bug #626172:  crash using unicode latin1 single char

Python 2.2.3 candidate.

22 years agoImplement Restoring Breakpoints in Subprocess Debugger
Kurt B. Kaiser [Wed, 23 Oct 2002 04:48:08 +0000 (04:48 +0000)]
Implement Restoring Breakpoints in Subprocess Debugger

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.

22 years agoMoved description of _urlopener adjacent to the related functions.
Fred Drake [Tue, 22 Oct 2002 21:58:06 +0000 (21:58 +0000)]
Moved description of _urlopener adjacent to the related functions.
Added missing import to example code.

Added documentation for pathname2url(), url2pathname().
Closes SF bug #623196.

22 years agoDescribe __path__ along with the rest of the package description.
Fred Drake [Tue, 22 Oct 2002 21:00:44 +0000 (21:00 +0000)]
Describe __path__ along with the rest of the package description.
Closes SF bug #626554.

22 years agoModify example to use string methods instead of the string module.
Fred Drake [Tue, 22 Oct 2002 20:31:22 +0000 (20:31 +0000)]
Modify example to use string methods instead of the string module.

22 years agoClarified the error cases and Unicode handling of PyString_AsString(),
Fred Drake [Tue, 22 Oct 2002 20:20:20 +0000 (20:20 +0000)]
Clarified the error cases and Unicode handling of PyString_AsString(),
PyString_AsStringAndSize(), and PyString_AS_STRING().
Closes SF bug #606463.

22 years agoAdd comment about inability to handle Unicode strings (hopefully a
Greg Ward [Tue, 22 Oct 2002 18:31:50 +0000 (18:31 +0000)]
Add comment about inability to handle Unicode strings (hopefully a
temporary condition).

22 years agoterminology
Fredrik Lundh [Tue, 22 Oct 2002 18:26:28 +0000 (18:26 +0000)]
terminology