]> granicus.if.org Git - python/log
python
22 years agoFixed small typo Pointed out by Michael Hudson.
Jim Fulton [Thu, 8 May 2003 10:35:07 +0000 (10:35 +0000)]
Fixed small typo Pointed out by Michael Hudson.

22 years agoFixed a typo in an example dealloc routine that calls it's "self"
Jim Fulton [Thu, 8 May 2003 10:32:10 +0000 (10:32 +0000)]
Fixed a typo in an example dealloc routine that calls it's "self"
argument "obj" rather than "self".

22 years agoBump version number
Barry Warsaw [Thu, 8 May 2003 03:34:58 +0000 (03:34 +0000)]
Bump version number

22 years agoA couple of new parsedate test cases.
Barry Warsaw [Thu, 8 May 2003 03:34:01 +0000 (03:34 +0000)]
A couple of new parsedate test cases.

22 years agoparsedate_tz(): Be slightly more lenient when there's no day of the
Barry Warsaw [Thu, 8 May 2003 03:33:15 +0000 (03:33 +0000)]
parsedate_tz(): Be slightly more lenient when there's no day of the
week.  Patch given by Daniel Berlin in SF bug # 732761.  Also closes
SF bug # 727719.

Backport candidate.

22 years agoClarify the dedent() example a bit by indenting the input lines unevenly.
Greg Ward [Thu, 8 May 2003 02:12:35 +0000 (02:12 +0000)]
Clarify the dedent() example a bit by indenting the input lines unevenly.

22 years agoSF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):
Greg Ward [Thu, 8 May 2003 02:09:49 +0000 (02:09 +0000)]
SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):
document dedent() function.

22 years agoMinor clarification of dedent().
Greg Ward [Thu, 8 May 2003 02:02:50 +0000 (02:02 +0000)]
Minor clarification of dedent().

22 years agoAdd DedentTestCase to test dedent() function.
Greg Ward [Thu, 8 May 2003 01:58:26 +0000 (01:58 +0000)]
Add DedentTestCase to test dedent() function.

22 years agoSF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):
Greg Ward [Thu, 8 May 2003 01:58:05 +0000 (01:58 +0000)]
SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):
add dedent() function, to remove indentation from multiline strings
(eg. triple-quoted strings).  Differs from inspect.getdoc() by not
special-casing the first line (often a sensible approach for
non-docstring multiline strings).  This should make this function more
general (symmetric 'indent' also possible), and more fitting for the
textwrap module.

22 years agoUpdate to Optik 1.4.1+: adds __all__ (Optik SF bug #728563).
Greg Ward [Thu, 8 May 2003 01:38:52 +0000 (01:38 +0000)]
Update to Optik 1.4.1+: adds __all__ (Optik SF bug #728563).

22 years agoLibrary documentation for the 'test' package. Still needs to be checked by Fred.
Brett Cannon [Wed, 7 May 2003 22:02:17 +0000 (22:02 +0000)]
Library documentation for the 'test' package.  Still needs to be checked by Fred.

22 years agoRewrote the basic section of the chapter on defining new types.
Jim Fulton [Wed, 7 May 2003 19:48:13 +0000 (19:48 +0000)]
Rewrote the basic section of the chapter on defining new types.
Changed the example to show how to create types the new way:

- Use a class new method rather than a new function.

- Use self->ob_type->tp_free in deallocators

- Use attribute descriptors rather than set/getattr methods.

- Make the type usable as a base type.

I split the example into 3 parts:

1. The minimal new type

2. Adding attributes and methods.

3. Finer control over attributes.

It's much simpler to define builtin types. These updates hopefully
show this.

I also made minor wording changes in two other places.

I still need to update xxobject.c

22 years agoMore message updates and minor fixes.
Raymond Hettinger [Wed, 7 May 2003 17:49:36 +0000 (17:49 +0000)]
More message updates and minor fixes.

22 years agoUpdate traceback message
Raymond Hettinger [Wed, 7 May 2003 17:11:15 +0000 (17:11 +0000)]
Update traceback message

22 years agoAdd list.insert() change for negative positions
Andrew M. Kuchling [Wed, 7 May 2003 17:00:35 +0000 (17:00 +0000)]
Add list.insert() change for negative positions
Add ~ to MvL's last name
Fix use of all-caps for a name
Bump version number

22 years agoadd missing parens - verified w/ interpreter - sorry to dismiss your comment
Skip Montanaro [Wed, 7 May 2003 16:01:43 +0000 (16:01 +0000)]
add missing parens - verified w/ interpreter - sorry to dismiss your comment
Fred

22 years agoset platform properly for OSF/1
Skip Montanaro [Wed, 7 May 2003 15:38:47 +0000 (15:38 +0000)]
set platform properly for OSF/1

22 years agoreplace most uses of `...` by repr(...), noting that `...` is discouraged,
Skip Montanaro [Wed, 7 May 2003 15:29:12 +0000 (15:29 +0000)]
replace most uses of `...` by repr(...), noting that `...` is discouraged,
but convenient in interactive sessions.

22 years agoMerged 2.3b1 welcome message to the trunk.
Jack Jansen [Wed, 7 May 2003 09:41:56 +0000 (09:41 +0000)]
Merged 2.3b1 welcome message to the trunk.

22 years agoMerged 1.2.2.1 fixes:
Jack Jansen [Wed, 7 May 2003 08:58:11 +0000 (08:58 +0000)]
Merged 1.2.2.1 fixes:
- Don't generate README, but ask the user to provide it.
- Create destination dir, if needed.
- Updated for 2.3b1.

22 years agoSF bug #730296: Unexpected Changes in list Iterator
Raymond Hettinger [Wed, 7 May 2003 01:28:47 +0000 (01:28 +0000)]
SF bug #730296: Unexpected Changes in list Iterator

Reverted a Py2.3b1 change to iterator in subclasses of list and tuple.
They had been changed to use __getitem__ whenever it had been overriden
in the subclass.

This caused some usabilty and performance problems.  Also, it was
inconsistent with the rest of python where many container methods
access the underlying object directly without first checking for
an overridden getter.  Users needing a change in iterator behavior
should override it directly.

22 years agoSF #596434: tweak wordsep_re so the definition of an em-dash is
Greg Ward [Wed, 7 May 2003 01:20:58 +0000 (01:20 +0000)]
SF #596434: tweak wordsep_re so the definition of an em-dash is
stricter: specifically, "--" must be preceded by a limited set of
characters, not by any non-whitespace character.

22 years agoSF #596434: add test_funky_parens() to probe some more of the tricky
Greg Ward [Wed, 7 May 2003 01:19:22 +0000 (01:19 +0000)]
SF #596434: add test_funky_parens() to probe some more of the tricky
edge cases that David Goodger reported long ago (July 2002?).

22 years agoSF #726446: raise ValueError if width <= 0.
Greg Ward [Wed, 7 May 2003 00:55:35 +0000 (00:55 +0000)]
SF #726446: raise ValueError if width <= 0.

22 years agoSF #726446: ensure wrap() raises ValueError when width <= 0.
Greg Ward [Wed, 7 May 2003 00:54:42 +0000 (00:54 +0000)]
SF #726446: ensure wrap() raises ValueError when width <= 0.

22 years agoSF patch #729395: Dictionary tuning
Raymond Hettinger [Wed, 7 May 2003 00:49:40 +0000 (00:49 +0000)]
SF patch #729395: Dictionary tuning

Adjust resize argument for dict.update() and dict.copy().
Extends the previous change to dict.__setitem__().

22 years agop.strip(os.sep) can't have possibly worked. It would have stripped both
Skip Montanaro [Tue, 6 May 2003 20:59:57 +0000 (20:59 +0000)]
p.strip(os.sep) can't have possibly worked.  It would have stripped both
leading and trailing '/' characters on Unix systems.

22 years agobuild bsddb185 module in certain restricted circumstances
Skip Montanaro [Tue, 6 May 2003 20:43:34 +0000 (20:43 +0000)]
build bsddb185 module in certain restricted circumstances

22 years agoadd note about bsddb185 module
Skip Montanaro [Tue, 6 May 2003 20:42:37 +0000 (20:42 +0000)]
add note about bsddb185 module

22 years agodetect old version 2 hash files and return "bsddb185" as the appropriate
Skip Montanaro [Tue, 6 May 2003 20:42:10 +0000 (20:42 +0000)]
detect old version 2 hash files and return "bsddb185" as the appropriate
module to load them

22 years agoadd a note about the undocumented bsddb185 module
Skip Montanaro [Tue, 6 May 2003 20:40:17 +0000 (20:40 +0000)]
add a note about the undocumented bsddb185 module

22 years agoadd open function to bsddb185 module so the file format sniffing can be
Skip Montanaro [Tue, 6 May 2003 20:38:52 +0000 (20:38 +0000)]
add open function to bsddb185 module so the file format sniffing can be
restricted to the whichdb module

22 years agodon't need to worry about file endianness
Skip Montanaro [Tue, 6 May 2003 20:37:56 +0000 (20:37 +0000)]
don't need to worry about file endianness

22 years agoData file for bsddb185 test
Skip Montanaro [Tue, 6 May 2003 20:37:25 +0000 (20:37 +0000)]
Data file for bsddb185 test

22 years agotest case for bsddb185 module
Skip Montanaro [Tue, 6 May 2003 20:36:57 +0000 (20:36 +0000)]
test case for bsddb185 module

22 years agothe new bsddb185 module is an expected skip on most platforms (this may not
Skip Montanaro [Tue, 6 May 2003 20:36:24 +0000 (20:36 +0000)]
the new bsddb185 module is an expected skip on most platforms (this may not
be needed - just being anal)

22 years agoadd Guido's reasoning behind running all tests twice
Skip Montanaro [Tue, 6 May 2003 16:17:27 +0000 (16:17 +0000)]
add Guido's reasoning behind running all tests twice

22 years agoadd not-yet-supported Unicode test just so it doesn't get lost.
Skip Montanaro [Tue, 6 May 2003 15:56:05 +0000 (15:56 +0000)]
add not-yet-supported Unicode test just so it doesn't get lost.

22 years agoadd testall target - just adds -uall to the regrtest runs
Skip Montanaro [Tue, 6 May 2003 15:30:20 +0000 (15:30 +0000)]
add testall target - just adds -uall to the regrtest runs

22 years agoFix for #731643: allow "lookup in documentation" to also work if the
Jack Jansen [Tue, 6 May 2003 14:28:31 +0000 (14:28 +0000)]
Fix for #731643: allow "lookup in documentation" to also work if the
interactive window is frontmost.

22 years agoAllow for Version, Flavor and Download-URL not being set.
Jack Jansen [Tue, 6 May 2003 13:07:32 +0000 (13:07 +0000)]
Allow for Version, Flavor and Download-URL not being set.

22 years agoWhen doing a forced install of a package depending on a pseudo-package
Jack Jansen [Tue, 6 May 2003 12:44:00 +0000 (12:44 +0000)]
When doing a forced install of a package depending on a pseudo-package
you got a strange error message. Fixed.

22 years agoSF bug #692959: new.function ignores keyword arguments
Raymond Hettinger [Tue, 6 May 2003 09:01:41 +0000 (09:01 +0000)]
SF bug #692959:  new.function ignores keyword arguments

22 years agoPort test_uu.py to PyUnit. From SF patch #662807.
Walter Dörwald [Tue, 6 May 2003 08:57:41 +0000 (08:57 +0000)]
Port test_uu.py to PyUnit. From SF patch #662807.

22 years agoSF patch #729395: Dictionary tuning
Raymond Hettinger [Mon, 5 May 2003 22:22:10 +0000 (22:22 +0000)]
SF patch #729395: Dictionary tuning

* Increase dictionary growth rate resulting in more sparse dictionaries,
  fewer lookup collisions, increased memory use, and better cache
  performance.  For dicts with over 50k entries, keep the current
  growth rate in case an application is suffering from tight memory
  constraints.

* Set the most common case (no resize) to fall-through the test.

22 years agoPatch #732479: Fix typos.
Martin v. Löwis [Mon, 5 May 2003 22:00:11 +0000 (22:00 +0000)]
Patch #732479: Fix typos.

22 years agoAdd notes from python-dev about readonly dictionaries.
Raymond Hettinger [Mon, 5 May 2003 21:31:51 +0000 (21:31 +0000)]
Add notes from python-dev about readonly dictionaries.

22 years agoSF patch 730594: assert from longobject.c, line 1215.
Tim Peters [Mon, 5 May 2003 20:39:43 +0000 (20:39 +0000)]
SF patch 730594:  assert from longobject.c, line 1215.
Some version of gcc in the "RTEMS port running on the Coldfire (m5200)
processor" generates bad code for a loop in long_from_binary_base(),
comparing the wrong half of an int to a short.  The patch changes the
decl of the short temp to be an int temp instead.  This "simplifies"
the code enough that gcc no longer blows it.

22 years agoOn Mac OS X pwd.getpwall() might return the tuples
Walter Dörwald [Mon, 5 May 2003 20:37:33 +0000 (20:37 +0000)]
On Mac OS X pwd.getpwall() might return the tuples
('pgsql', '*', 252, []) and ('postgres', '*', 252, ['skip']),
but pwd.getgrgid(252) might return ('pgsql', '', 252, ['skip']).

Drop the test that tried to find a tuple similar to the one
returned from pwd.getgrgid() among those for the same gid returned
by pwd.getgrall(), as the only working definition of 'similar' seems
to be 'has the same gid'. This check can be done more directly.

This should fix SF bug #732783.

22 years agoRefer reader to platform library docs for specific semantics.
Jeremy Hylton [Mon, 5 May 2003 16:46:26 +0000 (16:46 +0000)]
Refer reader to platform library docs for specific semantics.

Resolves SF bugs 697989, 697988, 697986.

22 years agoSF bug 622042: Don't expect response body from HEAD request.
Jeremy Hylton [Mon, 5 May 2003 16:13:58 +0000 (16:13 +0000)]
SF bug 622042: Don't expect response body from HEAD request.

Bug fix candidate.

22 years agotypo
Skip Montanaro [Mon, 5 May 2003 14:16:41 +0000 (14:16 +0000)]
typo

22 years agoPatch #732284: Disable _XOPEN_SOURCE on UnixWare 7.
Martin v. Löwis [Mon, 5 May 2003 05:13:18 +0000 (05:13 +0000)]
Patch #732284: Disable _XOPEN_SOURCE on UnixWare 7.

22 years agoPatch #732234: Check for -Kthread.
Martin v. Löwis [Mon, 5 May 2003 05:05:30 +0000 (05:05 +0000)]
Patch #732234: Check for -Kthread.

22 years agoBetter fix for newurl as suggested by Jim Jewett in SF bug #730963.
Jeremy Hylton [Mon, 5 May 2003 04:09:13 +0000 (04:09 +0000)]
Better fix for newurl as suggested by Jim Jewett in SF bug #730963.

22 years agoAdd comment explaining try/except for endheaders().
Jeremy Hylton [Mon, 5 May 2003 01:47:13 +0000 (01:47 +0000)]
Add comment explaining try/except for endheaders().

22 years agoRepair redirect handling and raise URLError on host-not-found.
Jeremy Hylton [Sun, 4 May 2003 23:44:49 +0000 (23:44 +0000)]
Repair redirect handling and raise URLError on host-not-found.

The latest changes to the redirect handler couldn't possibly have been
tested, because they did not compute a newurl and failed with a
NameError.  The __name__ == "__main__": block has a test for
redirects.

Also, fix SF bug 723831.  A urlopen() that failed because the host was
not found raised a socket.gaierror unlike earlier versions of
urllib2.  The problem is that httplib actually establishes the
connection at a different point starting with Python 2.2.  Move the
try/except to endheaders(), which is where the connection gets
established.

22 years ago* Note how dummy entry re-use benefits use cases with interspersed deletes
Raymond Hettinger [Sun, 4 May 2003 21:25:19 +0000 (21:25 +0000)]
* Note how dummy entry re-use benefits use cases with interspersed deletes
  and adds.

* Note that dictionary iteration is negatively impacted by additional
  sparseness.

22 years ago'forget' now also deletes any proper .pyo files.
Brett Cannon [Sun, 4 May 2003 21:15:27 +0000 (21:15 +0000)]
'forget' now also deletes any proper .pyo files.

Added some docstrings.

22 years agoSomewhere along the way, the softspace attr of file objects became read-
Tim Peters [Sun, 4 May 2003 04:16:52 +0000 (04:16 +0000)]
Somewhere along the way, the softspace attr of file objects became read-
only.  Repaired, and added new tests to test_file.py.

22 years agoScattered wording and typographical improvements (up to but not
Greg Ward [Sat, 3 May 2003 21:22:58 +0000 (21:22 +0000)]
Scattered wording and typographical improvements (up to but not
including the "Callback Options" section).

22 years agoRename "The Tao of Option Parsing" section to "Philosophy".
Greg Ward [Sat, 3 May 2003 20:41:37 +0000 (20:41 +0000)]
Rename "The Tao of Option Parsing" section to "Philosophy".
Remove first-person usage from it.  Various wording tweaks.

22 years agoUse True/False instead of 1/0 when talking about store_true/store_false.
Greg Ward [Sat, 3 May 2003 20:13:08 +0000 (20:13 +0000)]
Use True/False instead of 1/0 when talking about store_true/store_false.
Particularly important since they now store True and False rather than 1
and 0!

22 years agoAdd a big comment about cross-platform issues (especially OpenBSD).
Greg Ward [Sat, 3 May 2003 19:45:47 +0000 (19:45 +0000)]
Add a big comment about cross-platform issues (especially OpenBSD).
This should be turned into a footnote by someone who actually
understands OSS and its relationship to Linux, FreeBSD, OpenBSD, NetBSD,
etc.

22 years agoUse TeX quotes -- ``foo'' -- as appropriate.
Greg Ward [Sat, 3 May 2003 19:41:45 +0000 (19:41 +0000)]
Use TeX quotes -- ``foo'' -- as appropriate.
Remove whitespace around em-dashes.

22 years agoFix various markup errors: use \longprogramopt{} more, and use it
Greg Ward [Sat, 3 May 2003 19:16:36 +0000 (19:16 +0000)]
Fix various markup errors: use \longprogramopt{} more, and use it
correctly.  (Closes SF #731689.)  Use \emph{} in a few places.

22 years agoTry linking hstrerror and inet_aton tests. Look for these functions in -lresolv.
Martin v. Löwis [Sat, 3 May 2003 12:10:48 +0000 (12:10 +0000)]
Try linking hstrerror and inet_aton tests. Look for these functions in -lresolv.

22 years agoPatch #730170: Check for sem_init in -lpthread. Fixes #727051.
Martin v. Löwis [Sat, 3 May 2003 11:25:43 +0000 (11:25 +0000)]
Patch #730170: Check for sem_init in -lpthread. Fixes #727051.

22 years agoUse \versionchanged, not \versionadded.
Martin v. Löwis [Sat, 3 May 2003 10:59:13 +0000 (10:59 +0000)]
Use \versionchanged, not \versionadded.

22 years agoPatch #731514: Update recursion documentation to mention simple recursion.
Martin v. Löwis [Sat, 3 May 2003 10:57:53 +0000 (10:57 +0000)]
Patch #731514: Update recursion documentation to mention simple recursion.

22 years agoPatch #708604: Check more function results. Will backport to 2.2.
Martin v. Löwis [Sat, 3 May 2003 10:53:08 +0000 (10:53 +0000)]
Patch #708604: Check more function results. Will backport to 2.2.

22 years agoPatch #730826: Enable extensions on NetBSD 2.0.
Martin v. Löwis [Sat, 3 May 2003 10:32:18 +0000 (10:32 +0000)]
Patch #730826: Enable extensions on NetBSD 2.0.

22 years agoPatch #724588: Check whether the address of hstrerror and inet_pton can
Martin v. Löwis [Sat, 3 May 2003 10:12:45 +0000 (10:12 +0000)]
Patch #724588: Check whether the address of hstrerror and inet_pton can
be taken, and define NI_MAX{HOST|SERV} if necessary.

22 years agoPatch #684981: Add cleanup capability for argument parsers. Fixes 501716.
Martin v. Löwis [Sat, 3 May 2003 10:00:22 +0000 (10:00 +0000)]
Patch #684981: Add cleanup capability for argument parsers. Fixes 501716.

22 years agoRefer to __builtin__.file, not __builtins__.file
Martin v. Löwis [Sat, 3 May 2003 09:58:26 +0000 (09:58 +0000)]
Refer to __builtin__.file, not __builtins__.file

22 years agoImplement tcl object __cmp__.
Martin v. Löwis [Sat, 3 May 2003 09:45:12 +0000 (09:45 +0000)]
Implement tcl object __cmp__.

22 years agoPatch #708495: Port more stuff to OpenVMS.
Martin v. Löwis [Sat, 3 May 2003 09:14:54 +0000 (09:14 +0000)]
Patch #708495: Port more stuff to OpenVMS.

22 years agoPatch #711902: Cause pydoc to show data descriptor __doc__ strings.
Martin v. Löwis [Sat, 3 May 2003 09:09:02 +0000 (09:09 +0000)]
Patch #711902: Cause pydoc to show data descriptor __doc__ strings.

22 years agoChange 'and' to 'or' in _tkinter test.
Martin v. Löwis [Sat, 3 May 2003 08:45:51 +0000 (08:45 +0000)]
Change 'and' to 'or' in _tkinter test.

22 years agoAdd a reference to dictnotes.txt. It does no good if you don't know it's
Raymond Hettinger [Sat, 3 May 2003 06:51:59 +0000 (06:51 +0000)]
Add a reference to dictnotes.txt.  It does no good if you don't know it's
there or where to find it.

22 years ago* Added a substantial number of edge case and argument tests for
Raymond Hettinger [Sat, 3 May 2003 05:59:48 +0000 (05:59 +0000)]
* Added a substantial number of edge case and argument tests for
  the itertoolsmodule.
* Taught itertools.repeat(obj, n) to treat negative repeat counts as
  zero.  This behavior matches that for sequences and prevents
  infinite loops.

22 years agoApply the simplified test_support boilerplate.
Raymond Hettinger [Sat, 3 May 2003 03:38:01 +0000 (03:38 +0000)]
Apply the simplified test_support boilerplate.

22 years ago- add title attributes to the navigation icons on the navigation bars;
Fred Drake [Sat, 3 May 2003 02:07:22 +0000 (02:07 +0000)]
- add title attributes to the navigation icons on the navigation bars;
  this causes some browsers to offer descriptive tooltips when the
  mouse hovers over the linked icon
- clean up the code in this area

22 years agofixed typo
Just van Rossum [Sat, 3 May 2003 00:38:26 +0000 (00:38 +0000)]
fixed typo

22 years agoInstall automatic GIL switcher upon IDE startup.
Just van Rossum [Sat, 3 May 2003 00:31:35 +0000 (00:31 +0000)]
Install automatic GIL switcher upon IDE startup.
(Jack: maybe this could/should be done in Framework.py instead, that way
apps don't have to think about it. PackMan springs to mind...)

22 years agobuild the new autoGIL module on OSX
Just van Rossum [Sat, 3 May 2003 00:27:23 +0000 (00:27 +0000)]
build the new autoGIL module on OSX

22 years agoShort and sweet module doing something very useful: for event loop
Just van Rossum [Sat, 3 May 2003 00:18:55 +0000 (00:18 +0000)]
Short and sweet module doing something very useful: for event loop
based threads, release the GIL when the event loop goes to sleep,
and acquire it again when the event loop wakes up again. OSX-only.

22 years agoFixed age-old beginner's error: don't start the main loop as a side
Just van Rossum [Fri, 2 May 2003 23:40:29 +0000 (23:40 +0000)]
Fixed age-old beginner's error: don't start the main loop as a side
effect of an import. (This is one step towards threading support in
the IDE.)

22 years agoSimplify ref count test.
Raymond Hettinger [Fri, 2 May 2003 22:44:59 +0000 (22:44 +0000)]
Simplify ref count test.

22 years agoAdd StopIteration tests.
Raymond Hettinger [Fri, 2 May 2003 22:38:07 +0000 (22:38 +0000)]
Add StopIteration tests.
Simplify test_main().

22 years agoadd link types for the remaining links in the navigation panels
Fred Drake [Fri, 2 May 2003 20:30:18 +0000 (20:30 +0000)]
add link types for the remaining links in the navigation panels

22 years agoCWI moved websites around without me knowing it, and together with
Jack Jansen [Fri, 2 May 2003 20:27:40 +0000 (20:27 +0000)]
CWI moved websites around without me knowing it, and together with
a bug in urllib2 this caused pimp to stop working. Fixed the URL to
make it work again.

22 years agoNote itertools.islice() bugfix.
Raymond Hettinger [Fri, 2 May 2003 20:24:56 +0000 (20:24 +0000)]
Note itertools.islice() bugfix.

22 years ago- add link relationships to some of the links in the navigation panels
Fred Drake [Fri, 2 May 2003 20:18:01 +0000 (20:18 +0000)]
- add link relationships to some of the links in the navigation panels
- implement custom_REL_hook() so LaTeX2HTML uses currently recommended
  link types; those work fine with tools like the Mozilla Site
  Navigation Bar

22 years agoResearch notes and explorations for optimizing Python dictionaries.
Raymond Hettinger [Fri, 2 May 2003 20:11:29 +0000 (20:11 +0000)]
Research notes and explorations for optimizing Python dictionaries.

22 years agoThe previous made the stop argument optional.
Raymond Hettinger [Fri, 2 May 2003 19:44:20 +0000 (19:44 +0000)]
The previous made the stop argument optional.
It is better to be explicit and just allow stop to be None.

22 years agoSF bug #730685: itertools.islice stop argument is not optional
Raymond Hettinger [Fri, 2 May 2003 19:04:37 +0000 (19:04 +0000)]
SF bug #730685:  itertools.islice stop argument is not optional

* itertools.islice() stop argument did not perform as documented.
* beefed-up test suite

22 years agoSF patch 731504: Typo in datetimemodule.c comment.
Tim Peters [Fri, 2 May 2003 18:39:55 +0000 (18:39 +0000)]
SF patch 731504:  Typo in datetimemodule.c comment.
s/isofomat/isoformat/, by Steven Taschuk.

22 years agoAvoid extraneous blank line generated in the middle of the document
Fred Drake [Fri, 2 May 2003 18:21:22 +0000 (18:21 +0000)]
Avoid extraneous blank line generated in the middle of the document
head.