]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
14 years agoFix tag references in 2.1 branch.
Georg Brandl [Sat, 5 Mar 2011 13:54:34 +0000 (14:54 +0100)] 
Fix tag references in 2.1 branch.

22 years agoBackport this fix:
Barry Warsaw [Fri, 15 Aug 2003 18:18:04 +0000 (18:18 +0000)] 
Backport this fix:

http://mail.python.org/pipermail/python-checkins/2003-April/035592.html

so that Python 2.1-maint can be built on RedHat 9

22 years agoBackport 2.3 FreeBSD recursion_limit settings. Fixes #553736.
Martin v. Löwis [Sat, 14 Jun 2003 15:05:13 +0000 (15:05 +0000)] 
Backport 2.3 FreeBSD recursion_limit settings. Fixes #553736.

22 years agoBackport 1.60 -- because this is an annoyance that Zope folks run into
Guido van Rossum [Thu, 13 Feb 2003 21:13:17 +0000 (21:13 +0000)] 
Backport 1.60 -- because this is an annoyance that Zope folks run into
and Zope 2.6 (which requires Python 2.1.x) isn't dead yet.

Duh.  The do_EOF() implementation was bogus.  Make it more like
do_quit() -- but print a blank line first.

23 years agoChange string version to "2.1.3+".
Guido van Rossum [Thu, 9 Jan 2003 06:37:25 +0000 (06:37 +0000)] 
Change string version to "2.1.3+".

23 years agoComplete list of news since 2.1.3 was release. Just in case I feel
Guido van Rossum [Thu, 9 Jan 2003 06:12:47 +0000 (06:12 +0000)] 
Complete list of news since 2.1.3 was release.  Just in case I feel
like releasing 2.1.4 tomorrow. :-)

23 years agoRoll back the introduction of urlsplit() and urlunsplit() to
Guido van Rossum [Thu, 9 Jan 2003 05:43:08 +0000 (05:43 +0000)] 
Roll back the introduction of urlsplit() and urlunsplit() to
urlparse.py.  These were new features in 2.2, and shouldn't be added
to 2.1 this late in the game.  There was one use of urlsplit() in
httplib.py (the urlparse.py change was done as part of a backport of a
bugfix to httplib.py); this use is replaced with a call to urlparse()
without changing the effect (only the returned netloc is used).

23 years agoBackport (the relevant part of) rexec.py 1.41.
Guido van Rossum [Sun, 15 Sep 2002 06:18:29 +0000 (06:18 +0000)] 
Backport (the relevant part of) rexec.py 1.41.

Address SF bug #577530: del __builtins__ breaks out of rexec

Using the suggestion there: add_module() forces __builtin__ back; this
fixes r_exec, r_eval, r_execfile.

This does not mean that rexec is now considered safe!  But for those
willing to take the risk, it's safer than before.  (Note that a safety
analysis of the code module would be wise if you plan to use the
interactive console for real -- I've only ever used it to play with
restricted mode.)

23 years agoBackport:
Guido van Rossum [Wed, 4 Sep 2002 11:41:51 +0000 (11:41 +0000)] 
Backport:

Fix for SF bug 601077 by Zack Weinberg.

The new execvpe code would sometimes do the wrong thing when a
non-executable file existed earlier in the path and an executable file
of the same name existed later in the path.  This patch restores the
proper behavior (which is to execute the second file).  When only a
non-executable file exists, the correct error is still reported.

23 years agoFix SF bug [ 599838 ] httplib.connect broken in 2.1 branch
Jeremy Hylton [Thu, 29 Aug 2002 20:12:26 +0000 (20:12 +0000)] 
Fix SF bug [ 599838 ] httplib.connect broken in 2.1 branch

Some IPv6-specific changes crept into the 2.1 branch when I backported
other bug fixes.

23 years agoBack-port the \ulink macro to the documentation package for Python 2.1.x
Fred Drake [Tue, 27 Aug 2002 19:50:42 +0000 (19:50 +0000)] 
Back-port the \ulink macro to the documentation package for Python 2.1.x
since a documentation patch included \ulink.  Adding this here makes
back-porting further documentation patches easier than having to remove
\ulink from the patches.
Closes SF bug #598996.

23 years agoCorrect some return value information.
Fred Drake [Tue, 27 Aug 2002 18:41:26 +0000 (18:41 +0000)] 
Correct some return value information.

23 years agoAdd strong security warning about the rexec module.
Fred Drake [Tue, 27 Aug 2002 16:42:37 +0000 (16:42 +0000)] 
Add strong security warning about the rexec module.
Closes SF patch #600861.

23 years agoThe errno module needs to be statically linked, since it is now needed during
Fred Drake [Thu, 8 Aug 2002 19:56:28 +0000 (19:56 +0000)] 
The errno module needs to be statically linked, since it is now needed during
the extension building phase.

23 years agoBackport of SF patch 590294: os._execvpe security fix (Zack Weinberg).
Guido van Rossum [Thu, 8 Aug 2002 19:46:52 +0000 (19:46 +0000)] 
Backport of SF patch 590294: os._execvpe security fix (Zack Weinberg).

1) Do not attempt to exec a file which does not exist
just to find out what error the operating system
returns. This is an exploitable race on all platforms
that support symbolic links.

2) Immediately re-raise the exception if we get an
error other than errno.ENOENT or errno.ENOTDIR. This
may need to be adapted for other platforms.

23 years agoAdd a dummy test_queue output file to make regrtest happy.
Guido van Rossum [Thu, 8 Aug 2002 19:46:10 +0000 (19:46 +0000)] 
Add a dummy test_queue output file to make regrtest happy.

23 years agoUpdate test output.
Jeremy Hylton [Fri, 12 Jul 2002 16:04:27 +0000 (16:04 +0000)] 
Update test output.

23 years agoBackport changes.
Jeremy Hylton [Fri, 12 Jul 2002 15:22:09 +0000 (15:22 +0000)] 
Backport changes.

Change _begin() back to begin().
Fix for SF bug 579107.
Fix for SF bug #432621: httplib: multiple Set-Cookie headers
Fix SF bug #575360
Handle HTTP/0.9 responses.

23 years agoBackport various bug fixes from trunk.
Jeremy Hylton [Tue, 2 Jul 2002 20:42:50 +0000 (20:42 +0000)] 
Backport various bug fixes from trunk.

The 2.1 maintenance branch is now identical to the trunk through rev
1.54 of httplib.py.

23 years agoBackport variety of SSL fixes accumulated on the trunk.
Jeremy Hylton [Tue, 2 Jul 2002 19:05:33 +0000 (19:05 +0000)] 
Backport variety of SSL fixes accumulated on the trunk.

23 years agoSF # 572928 One word change for lib/libgettext.tex
Neal Norwitz [Mon, 24 Jun 2002 02:30:29 +0000 (02:30 +0000)] 
SF # 572928 One word change for lib/libgettext.tex

Fix typo.

23 years agoMake the docs for string.capitalize() match those of str.capitalize()
Fred Drake [Thu, 20 Jun 2002 21:19:48 +0000 (21:19 +0000)] 
Make the docs for string.capitalize() match those of str.capitalize()
(which makes it more clear).
Closes SF bug #571767.

23 years agoTypo: bites --> bytes
Fred Drake [Tue, 18 Jun 2002 20:39:14 +0000 (20:39 +0000)] 
Typo: bites --> bytes

23 years agoAdd description of the deadlock problem with child processes and pipes, and
Fred Drake [Tue, 18 Jun 2002 20:32:09 +0000 (20:32 +0000)] 
Add description of the deadlock problem with child processes and pipes, and
hints about how to work around it.
Closes SF bug #530637.

23 years agoAdd a note about "as" not being a keyword, though it has special meaning
Fred Drake [Tue, 18 Jun 2002 19:18:21 +0000 (19:18 +0000)] 
Add a note about "as" not being a keyword, though it has special meaning
when used as part of the import statement.

Note that both "as" and "None" becoming keywords in the future.

Closes SF bug #553262.

23 years agoNote the limitation that mime_decode_header() only works for Latin-1.
Fred Drake [Tue, 18 Jun 2002 18:52:16 +0000 (18:52 +0000)] 
Note the limitation that mime_decode_header() only works for Latin-1.
Closes SF bug #551912.

23 years agoAdd a special case code to deal with unexpected large files.
Jeremy Hylton [Tue, 18 Jun 2002 16:53:42 +0000 (16:53 +0000)] 
Add a special case code to deal with unexpected large files.

# On a Linux with large file support (LFS) using a Python without LFS,
# stat() will raise EOVERFLOW.  This unambiguously indicates that the
# file exists because it only occurs when the size of the file can't
# find into the stat struct.

This change is only needed for Python 2.1, because LFS is
automatically configured starting with Python 2.2.

23 years agoCorect speling and add \n\ to line ends in new docstring for access().
Guido van Rossum [Tue, 18 Jun 2002 16:26:43 +0000 (16:26 +0000)] 
Corect speling and add \n\ to line ends in new docstring for access().

23 years agoClarified documentation for os.access().
Fred Drake [Tue, 18 Jun 2002 16:17:32 +0000 (16:17 +0000)] 
Clarified documentation for os.access().
Based on patch contributed by Sean Reifschneider.
Closes SF patch #570618.

23 years agoClarified description of error handling for shutil.rmtree().
Fred Drake [Tue, 18 Jun 2002 14:32:16 +0000 (14:32 +0000)] 
Clarified description of error handling for shutil.rmtree().
This closes SF patch #569832.

23 years agoPyModule_AddObject(): Added missing exceptions.
Fred Drake [Mon, 17 Jun 2002 17:16:11 +0000 (17:16 +0000)] 
PyModule_AddObject():  Added missing exceptions.
Closes SF bug #523473.

23 years agoDo not claim that getlocale() returns a tulpe; that is not always true.
Fred Drake [Thu, 13 Jun 2002 17:55:42 +0000 (17:55 +0000)] 
Do not claim that getlocale() returns a tulpe; that is not always true.
Closes SF bug #568577.

23 years agoAdd documentation for PyObject_RichCompare() and PyObject_RichCompareBool(),
Fred Drake [Thu, 13 Jun 2002 11:53:54 +0000 (11:53 +0000)] 
Add documentation for PyObject_RichCompare() and PyObject_RichCompareBool(),
constributed by David Abrahams.
This closes SF patch #568081.

23 years agoAdd version annotations for some older changes to the calendar module.
Fred Drake [Thu, 13 Jun 2002 01:36:42 +0000 (01:36 +0000)] 
Add version annotations for some older changes to the calendar module.
Closes SF patch #567867.

Added a couple of minor clarifications present in the 2.2.x and 2.3
version of the documentation which also apply to 2.1.x.

23 years agoCompletely revise markup for the list of list methods; the new markup matches
Fred Drake [Tue, 11 Jun 2002 02:58:26 +0000 (02:58 +0000)] 
Completely revise markup for the list of list methods; the new markup matches
the semantics and presentation used in the library reference.
Added an explanation of the use of [...] to denote optional arguments, since
this is the only use of this in a signature line.
Closes SF bug #567127.

23 years agoFix SF #561858 Assertion with very long lists
Neal Norwitz [Sat, 1 Jun 2002 18:27:34 +0000 (18:27 +0000)] 
Fix SF #561858 Assertion with very long lists

if co_stacksize was > 32767 (the maximum value
which can be stored in 16 bits (signed)),
the PyCodeObject would be written wrong.
So on the second import (reading the .pyc)
would cause a crash.

Since we can't change the PYC magic, we
go on (silently), but don't write the file.
This means everything will work, but
a .pyc will not be written and the file will need
to be parsed on each import.

23 years agoBackport to 2.1.x:
Guido van Rossum [Fri, 31 May 2002 21:19:53 +0000 (21:19 +0000)] 
Backport to 2.1.x:

SF bug 533625 (Armin Rigo). rexec: potential security hole

If a rexec instance allows writing in the current directory (a common
thing to do), there's a way to execute bogus bytecode.  Fix this by
not allowing imports from .pyc files (in a way that allows a site to
configure things so that .pyc files *are* allowed, if writing is not
allowed).

23 years agoBackport fix by tismer for #210682
Neal Norwitz [Wed, 29 May 2002 01:29:38 +0000 (01:29 +0000)] 
Backport fix by tismer for #210682

fixed an old buglet that caused bdb to be unable to
continue in the botframe, after a breakpoint was set.
the key idea is not to set botframe to the bottom level frame,
but its f_back, which actually might be None.
Additional changes: migrated old exception trick to use
sys._getframe(), which exists both in 2.1 and 2.2 .

Note: I believe Mark Hammond needs to look over his code now.
F5 correctly starts up in the debugger, but later on doesn't stop at a given
breakpoint any longer.

kind regards - chris

23 years agoAdd availability information for a couple of the types.
Fred Drake [Tue, 21 May 2002 14:32:44 +0000 (14:32 +0000)] 
Add availability information for a couple of the types.

23 years agoFix typo: ptread --> pthread
Fred Drake [Sat, 11 May 2002 03:37:59 +0000 (03:37 +0000)] 
Fix typo:  ptread --> pthread
Closes SF bug #554644.

23 years agoAdd a note explaining the interaction between unbuffered input and
Fred Drake [Mon, 6 May 2002 16:05:01 +0000 (16:05 +0000)] 
Add a note explaining the interaction between unbuffered input and
xreadlines.xreadlines().
This closes SF patch #552804.

23 years agoBackport patch for revision 1.58 to the Py2.1.x maintenance branch.
Barry Warsaw [Fri, 3 May 2002 04:23:02 +0000 (04:23 +0000)] 
Backport patch for revision 1.58 to the Py2.1.x maintenance branch.
This fixes parseaddr() for the following RFC 2822 valid field:

    To: User J. Person <person@dom.ain>

23 years agoUpdate a SourceForge issue number; IDs less than 200000 are no longer valid.
Fred Drake [Thu, 2 May 2002 16:37:31 +0000 (16:37 +0000)] 
Update a SourceForge issue number; IDs less than 200000 are no longer valid.
(The issues were re-numbered, not lost.)

23 years agoAdded regression tests for xrange object attributes.
Fred Drake [Thu, 2 May 2002 16:25:30 +0000 (16:25 +0000)] 
Added regression tests for xrange object attributes.
See SF bug #551285.

23 years agoAdd information on support for repietition & concatenation for buffer
Fred Drake [Thu, 2 May 2002 05:59:15 +0000 (05:59 +0000)] 
Add information on support for repietition & concatenation for buffer
and xrange objects, and generally present these in the same way that more
recent documentation releases present them (for ease of maintenance).
This closes SF bug #550555.

23 years agoBackport buffer() tests from trunk to avoid regression failures.
Fred Drake [Thu, 2 May 2002 05:27:28 +0000 (05:27 +0000)] 
Backport buffer() tests from trunk to avoid regression failures.

23 years agoRevise version/date information since we're not about to hit a release.
Fred Drake [Thu, 2 May 2002 05:26:33 +0000 (05:26 +0000)] 
Revise version/date information since we're not about to hit a release.

23 years agoExplain what os.read() returns at end of file.
Fred Drake [Wed, 1 May 2002 03:33:02 +0000 (03:33 +0000)] 
Explain what os.read() returns at end of file.
This closes SF bug #550409.

23 years agoAdd missing right-parenthesis.
Fred Drake [Wed, 1 May 2002 03:22:23 +0000 (03:22 +0000)] 
Add missing right-parenthesis.

23 years agoAdd a note about when the "%r" formatting code was added.
Fred Drake [Tue, 30 Apr 2002 14:54:15 +0000 (14:54 +0000)] 
Add a note about when the "%r" formatting code was added.

23 years agobackport tim_one's patch:
Anthony Baxter [Tue, 30 Apr 2002 04:01:21 +0000 (04:01 +0000)] 
backport tim_one's patch:

Repair widespread misuse of _PyString_Resize.  Since it's clear people
don't understand how this function works, also beefed up the docs.  The
most common usage error is of this form (often spread out across gotos):

if (_PyString_Resize(&s, n) < 0) {
Py_DECREF(s);
s = NULL;
goto outtahere;
}

The error is that if _PyString_Resize runs out of memory, it automatically
decrefs the input string object s (which also deallocates it, since its
refcount must be 1 upon entry), and sets s to NULL.  So if the "if"
branch ever triggers, it's an error to call Py_DECREF(s):  s is already
NULL!  A correct way to write the above is the simpler (and intended)

if (_PyString_Resize(&s, n) < 0)
goto outtahere;

Bugfix candidate.

Original patch(es):
python/dist/src/Python/bltinmodule.c:2.253

23 years agobackport tim_one's patch:
Anthony Baxter [Tue, 30 Apr 2002 03:58:47 +0000 (03:58 +0000)] 
backport tim_one's patch:

[Re-did unicodeobject.c - it's changed a lot since 2.1 :) Pretty confident
that it's correct]

Repair widespread misuse of _PyString_Resize.  Since it's clear people
don't understand how this function works, also beefed up the docs.  The
most common usage error is of this form (often spread out across gotos):

if (_PyString_Resize(&s, n) < 0) {
Py_DECREF(s);
s = NULL;
goto outtahere;
}

The error is that if _PyString_Resize runs out of memory, it automatically
decrefs the input string object s (which also deallocates it, since its
refcount must be 1 upon entry), and sets s to NULL.  So if the "if"
branch ever triggers, it's an error to call Py_DECREF(s):  s is already
NULL!  A correct way to write the above is the simpler (and intended)

if (_PyString_Resize(&s, n) < 0)
goto outtahere;

Bugfix candidate.

Original patch(es):
python/dist/src/Objects/fileobject.c:2.161
python/dist/src/Objects/stringobject.c:2.161
python/dist/src/Objects/unicodeobject.c:2.147

23 years agoBe more consistent, both internally and with recommended practice (within
Fred Drake [Fri, 26 Apr 2002 20:45:38 +0000 (20:45 +0000)] 
Be more consistent, both internally and with recommended practice (within
the limits of Python 2.1).
This closes SF bug #547953.

23 years agoAdd text about circular references caused by storing frames in local
Fred Drake [Tue, 23 Apr 2002 21:19:55 +0000 (21:19 +0000)] 
Add text about circular references caused by storing frames in local
variables.  This closes SF bug #543148.

23 years ago*sigh* did a 'make test' in the wrong window. fixing this up to
Anthony Baxter [Tue, 23 Apr 2002 02:19:03 +0000 (02:19 +0000)] 
*sigh* did a 'make test' in the wrong window. fixing this up to
not include 'True'. test_queue passes again.

23 years agobackport mhammond's patch:
Anthony Baxter [Tue, 23 Apr 2002 01:55:29 +0000 (01:55 +0000)] 
backport mhammond's patch:

Fix bug 544473 - "Queue module can deadlock".
Use try/finally to ensure all Queue locks remain stable.
Includes test case.  Bugfix candidate.

Original patch(es):
python/dist/src/Lib/Queue.py:1.15

23 years agobackport mhammond's patch:
Anthony Baxter [Tue, 23 Apr 2002 01:53:23 +0000 (01:53 +0000)] 
backport mhammond's patch:

Fix bug 544473 - "Queue module can deadlock".
Use try/finally to ensure all Queue locks remain stable.
Includes test case.  Bugfix candidate.

Original patch(es):
python/dist/src/Lib/test/test_queue.py:1.1

23 years agoBackport fixes for two nested scopes bugs.
Jeremy Hylton [Sat, 20 Apr 2002 18:21:29 +0000 (18:21 +0000)] 
Backport fixes for two nested scopes bugs.

frameobject.c: make sure free and cell vars make it into locals, which
    makes eval work.

bltinmodule.c & ceval.c: make sure a code object with free variables
    that is passed to exec or eval raises an exception.

Also duplicate the current trunk test suite in the 2.1 branch, except
for certain necessary changes: different warnings raised by 2.1, need
for __future__.

23 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Fri, 19 Apr 2002 00:11:32 +0000 (00:11 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release21-maint'.

23 years agoTest for --export-dynamic directly to avoid problems with binutils 2.12.
Martin v. Löwis [Thu, 18 Apr 2002 14:55:52 +0000 (14:55 +0000)] 
Test for --export-dynamic directly to avoid problems with binutils 2.12.

23 years agobackport gvanrossum's patch:
Anthony Baxter [Thu, 18 Apr 2002 05:13:38 +0000 (05:13 +0000)] 
backport gvanrossum's patch:

SF bug #543318 (Frank J. Tobin).

In DatagramRequestHandler.setup(), the wfile initialization should be
StringIO.StringIO(), not StringIO.StringIO(slf.packet).

Bugfix candidate (all the way back to Python 1.5.2 :-).

Original patches were:
python/dist/src/Lib/SocketServer.py:1.31

23 years agobackport gvanrossum's patch:
Anthony Baxter [Thu, 18 Apr 2002 05:09:06 +0000 (05:09 +0000)] 
backport gvanrossum's patch:

Provisional fix for writefile() [SF bug # 541730].

The problem was that an exception can occur in the text.get() call or
in the write() call, when the text buffer contains non-ASCII
characters.  This causes the previous contents of the file to be lost.

The provisional fix is to call str(self.text.get(...)) *before*
opening the file, so that if the exception occurs, we never open the
file.

Two orthogonal better solutions have to wait for policy decisions:

1. We could try to encode the data as Latin-1 or as UTF-8; but that
   would require IDLE to grow a notion of file encoding which requires
   more thought.

2. We could make backups before overwriting a file.  This requires
   more thought because it needs to be fast and cross-platform and
   configurable.

Original patches were:
python/dist/src/Tools/idle/IOBinding.py:1.6

23 years agobackport nnorwitz's patch:
Anthony Baxter [Thu, 18 Apr 2002 04:54:47 +0000 (04:54 +0000)] 
backport nnorwitz's patch:

Fix grammar

23 years agoWindows installer: disabled Wise's "delete in-use files" uninstall
Tim Peters [Wed, 17 Apr 2002 04:36:16 +0000 (04:36 +0000)] 
Windows installer:  disabled Wise's "delete in-use files" uninstall
option.  It was the cause of at least one way UNWISE.EXE could vanish
(install a python; uninstall it; install it again; reboot the machine;
abracadabra the uinstaller is gone).

23 years agoAdjust markup to worm around tool limitations; the "m" in "model" was being
Fred Drake [Wed, 17 Apr 2002 03:42:26 +0000 (03:42 +0000)] 
Adjust markup to worm around tool limitations; the "m" in "model" was being
dropped in the HTML formatted version.
Reported by Mike Coleman.

23 years agoUpdate the text of the README distributed with the PostScript files to
Fred Drake [Wed, 17 Apr 2002 03:26:05 +0000 (03:26 +0000)] 
Update the text of the README distributed with the PostScript files to
reflect the changes in the user organizations in the Python community.

23 years agoChanged last two remaining uses of "./" to "index.html" when referring to the
Fred Drake [Wed, 17 Apr 2002 01:44:07 +0000 (01:44 +0000)] 
Changed last two remaining uses of "./" to "index.html" when referring to the
index file for the top-level directory.  This makes it easier to use an
unpacked version of the documentation via file: URLs.
This closes SF bug #541257.

23 years agoRemove repeated index entry; adds nothing different.
Fred Drake [Tue, 16 Apr 2002 02:04:20 +0000 (02:04 +0000)] 
Remove repeated index entry; adds nothing different.
Closes SF bug #518985.

23 years agoDocument PyType_IS_GC().
Fred Drake [Wed, 10 Apr 2002 18:16:32 +0000 (18:16 +0000)] 
Document PyType_IS_GC().
Update description of PyType_Check().

23 years agoThis commit was manufactured by cvs2svn to create tag 'r213'. v2.1.3
cvs2svn [Tue, 9 Apr 2002 01:16:08 +0000 (01:16 +0000)] 
This commit was manufactured by cvs2svn to create tag 'r213'.

23 years agoWeasle-word the SSL-on-Windows blurb.
Tim Peters [Tue, 9 Apr 2002 01:16:08 +0000 (01:16 +0000)] 
Weasle-word the SSL-on-Windows blurb.

23 years agore-adding the NEWS entry. SF ate my previous commit.
Anthony Baxter [Tue, 9 Apr 2002 01:09:05 +0000 (01:09 +0000)] 
re-adding the NEWS entry. SF ate my previous commit.

23 years agobackport 1.47's "add sendall() to FakeSocket class"
Anthony Baxter [Tue, 9 Apr 2002 00:39:10 +0000 (00:39 +0000)] 
backport 1.47's "add sendall() to FakeSocket class"

23 years agoChange license text to refer to 2.1.3.
Tim Peters [Mon, 8 Apr 2002 20:24:34 +0000 (20:24 +0000)] 
Change license text to refer to 2.1.3.

23 years agoChange 2.1.3 release date.
Tim Peters [Mon, 8 Apr 2002 18:48:05 +0000 (18:48 +0000)] 
Change 2.1.3 release date.

23 years agoSF bug 497854: Short-cuts missing for All Users.
Tim Peters [Mon, 8 Apr 2002 18:37:13 +0000 (18:37 +0000)] 
SF bug 497854:  Short-cuts missing for All Users.
Fixing a Windows-specific installer glitch.

23 years agoTalk about uncoordinated dance partners!
Fred Drake [Mon, 8 Apr 2002 18:31:27 +0000 (18:31 +0000)] 
Talk about uncoordinated dance partners!
Fixed the release date to match the source release.

23 years agoAdd news about zlib 1.1.4 for the Windows installer.
Tim Peters [Mon, 8 Apr 2002 18:31:19 +0000 (18:31 +0000)] 
Add news about zlib 1.1.4 for the Windows installer.

23 years agoBegin the Release Dance.
Fred Drake [Mon, 8 Apr 2002 18:27:53 +0000 (18:27 +0000)] 
Begin the Release Dance.

23 years agoUpdate Windows installer identification and resource strings for 2.1.3.
Tim Peters [Mon, 8 Apr 2002 18:21:56 +0000 (18:21 +0000)] 
Update Windows installer identification and resource strings for 2.1.3.

23 years agoChange 2.1.3 Windows build to use zlib 1.1.4.
Tim Peters [Mon, 8 Apr 2002 18:06:42 +0000 (18:06 +0000)] 
Change 2.1.3 Windows build to use zlib 1.1.4.

23 years agoChange the 2.1.3 Windows buildno (#35).
Tim Peters [Mon, 8 Apr 2002 18:02:54 +0000 (18:02 +0000)] 
Change the 2.1.3 Windows buildno (#35).

23 years agoUpdate 2.1.3 Windows buildno.
Tim Peters [Mon, 8 Apr 2002 18:00:09 +0000 (18:00 +0000)] 
Update 2.1.3 Windows buildno.

23 years agobackport fred's
Anthony Baxter [Mon, 8 Apr 2002 06:44:12 +0000 (06:44 +0000)] 
backport fred's
revision 1.2.2.1
Python 10 was a success, commemorate it\!
This includes Guido's whitespace cleanup.

23 years agobeginning the dance of the sugar-plum micro-release.
Anthony Baxter [Mon, 8 Apr 2002 06:05:51 +0000 (06:05 +0000)] 
beginning the dance of the sugar-plum micro-release.

23 years agoDo not call "knee" a standard module.
Fred Drake [Mon, 8 Apr 2002 05:23:43 +0000 (05:23 +0000)] 
Do not call "knee" a standard module.
This addresses the issue in SF bug #515745.

23 years ago#457466: "popenx() argument mangling hangs python" [Win9x only]
Anthony Baxter [Mon, 8 Apr 2002 05:03:59 +0000 (05:03 +0000)] 
#457466: "popenx() argument mangling hangs python" [Win9x only]

23 years agoBackport of bug
Anthony Baxter [Mon, 8 Apr 2002 04:42:09 +0000 (04:42 +0000)] 
Backport of bug
457466: "popenx() argument mangling hangs python" [Win9x only]."

Can't test this myself, but MarkH sez it's ok.

23 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Mon, 8 Apr 2002 04:42:09 +0000 (04:42 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release21-maint'.

23 years agoAdd note about changes in xml.sax.expatreader.
Fred Drake [Thu, 4 Apr 2002 19:45:01 +0000 (19:45 +0000)] 
Add note about changes in xml.sax.expatreader.

23 years agoNot sure why the regression test missed this, but the PyXML tests caught it.
Fred Drake [Thu, 4 Apr 2002 19:13:18 +0000 (19:13 +0000)] 
Not sure why the regression test missed this, but the PyXML tests caught it.
We should get attributes from the right object.

23 years agoMark the notice about the new development version of the docs as not needing
Fred Drake [Thu, 4 Apr 2002 18:04:31 +0000 (18:04 +0000)] 
Mark the notice about the new development version of the docs as not needing
to be archived.  Most of these are pretty bland.  ;-)

23 years agoAvoid creating circular references between the ExpatParser and the
Fred Drake [Thu, 4 Apr 2002 17:59:25 +0000 (17:59 +0000)] 
Avoid creating circular references between the ExpatParser and the
ContentHandler.  While GC will eventually clean up, it can take longer than
normal for applications that create a lot of strings (or other immutables)
rather without creating many containers.
This closes SF bug #535474.

23 years agoBack-port Neal Norwitz's patch:
Fred Drake [Thu, 4 Apr 2002 16:24:31 +0000 (16:24 +0000)] 
Back-port Neal Norwitz's patch:
    libarray.tex 1.31.8.2

SF 539024, Fix broken link to numpy

23 years agoAdd the PyObject_As*Buffer() functions that apply, now that the docs have been
Fred Drake [Thu, 4 Apr 2002 04:21:23 +0000 (04:21 +0000)] 
Add the PyObject_As*Buffer() functions that apply, now that the docs have been
corrected and I'm dealing with them anyway.

23 years agoUpdate the PEP URL format to point to python.org.
Fred Drake [Wed, 3 Apr 2002 03:36:47 +0000 (03:36 +0000)] 
Update the PEP URL format to point to python.org.
(This affects exactly one link on the release21-maint branch.)

23 years agoThere is no PyArg_ConvertTuple(); call it by the right name.
Fred Drake [Mon, 1 Apr 2002 23:14:30 +0000 (23:14 +0000)] 
There is no PyArg_ConvertTuple(); call it by the right name.
This closes SF bug #537511.

23 years agoUpdate to push the docs to python.org instead of python.sf.net.
Fred Drake [Mon, 1 Apr 2002 20:13:08 +0000 (20:13 +0000)] 
Update to push the docs to python.org instead of python.sf.net.

23 years agobackport gvanrossum's checkin of
Martin v. Löwis [Mon, 1 Apr 2002 16:45:51 +0000 (16:45 +0000)] 
backport gvanrossum's checkin of
    revision 2.40 of mpzmodule.c

SF patch 517245 by Marc Recht.

Support GMP version >= 2.

23 years agoNews for SF #535905.
Guido van Rossum [Fri, 29 Mar 2002 01:06:35 +0000 (01:06 +0000)] 
News for SF #535905.