]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
20 years agoSF bug #1119700: list extend() accepts args besides lists
Raymond Hettinger [Wed, 9 Feb 2005 23:23:10 +0000 (23:23 +0000)] 
SF bug #1119700:  list extend() accepts args besides lists

20 years agoBackport 2.39:
Guido van Rossum [Tue, 8 Feb 2005 15:01:35 +0000 (15:01 +0000)] 
Backport 2.39:
Close the discussion in SF bug 1069160.

20 years agoadd 2.3.5, 2.4 to the history and licensing info
Fred Drake [Tue, 8 Feb 2005 06:41:20 +0000 (06:41 +0000)] 
add 2.3.5, 2.4 to the history and licensing info

20 years agoforwardport of 2.3.5 fixes to copy.py
Alex Martelli [Mon, 7 Feb 2005 12:39:55 +0000 (12:39 +0000)] 
forwardport of 2.3.5 fixes to copy.py

20 years agoSF patch #1116583: NameError in cookielib domain check
Raymond Hettinger [Sat, 5 Feb 2005 01:33:16 +0000 (01:33 +0000)] 
SF patch #1116583:  NameError in cookielib domain check

20 years agoRecompiled after source changes.
Thomas Heller [Thu, 3 Feb 2005 20:44:29 +0000 (20:44 +0000)] 
Recompiled after source changes.

20 years agoRunning a bdist_wininst installer, built with Python 2.3, installing
Thomas Heller [Thu, 3 Feb 2005 20:37:04 +0000 (20:37 +0000)] 
Running a bdist_wininst installer, built with Python 2.3, installing
for Python 2.4 caused a segfault when post_install_script was used.

The reason was that the file handle passed to PyRun_SimpleFile() was
created with MSVCRT.DLL, but Python 2.4 uses MSVCR71.DLL.

So, I replaced PyRun_SimpleFile() with PyRun_SimpleString().  The
segfault is gone, but the output of the postinstall script doesn't
show up, because still freopen() from MSVCRT is used.

20 years agoSet PYTHONHOME before loading Python, so that sys.path will be set correctly.
Thomas Heller [Thu, 3 Feb 2005 20:09:24 +0000 (20:09 +0000)] 
Set PYTHONHOME before loading Python, so that sys.path will be set correctly.

Already backported.

20 years agofix XMLFilterBase.resolveEntity() so the caller gets the result
Fred Drake [Thu, 3 Feb 2005 17:30:46 +0000 (17:30 +0000)] 
fix XMLFilterBase.resolveEntity() so the caller gets the result
(PyXML bug #1112052)

20 years agoSecurity fix PSF-2005-001 for SimpleXMLRPCServer.py.
Guido van Rossum [Thu, 3 Feb 2005 15:00:18 +0000 (15:00 +0000)] 
Security fix PSF-2005-001 for SimpleXMLRPCServer.py.

20 years agoBackport for bug #1108490: fix broken link.
Johannes Gijsbers [Sat, 29 Jan 2005 19:54:45 +0000 (19:54 +0000)] 
Backport for bug #1108490: fix broken link.

20 years agoRevert os.py 1.75, and directly implement update.
Martin v. Löwis [Sat, 29 Jan 2005 13:33:27 +0000 (13:33 +0000)] 
Revert os.py 1.75, and directly implement update.
Fixes #1110478 and #1100235.

20 years agoFixed typo in verbose output for RLock acquire.
Brett Cannon [Thu, 27 Jan 2005 22:49:39 +0000 (22:49 +0000)] 
Fixed typo in verbose output for RLock acquire.

Fixes bug #1110998.

20 years agoPartially revert #1074011; don't try to fflush stdin.
Martin v. Löwis [Thu, 27 Jan 2005 18:58:30 +0000 (18:58 +0000)] 
Partially revert #1074011; don't try to fflush stdin.

20 years agoSF bug #1108303: fix .split() maxsplit doc
Raymond Hettinger [Wed, 26 Jan 2005 22:46:26 +0000 (22:46 +0000)] 
SF bug #1108303:  fix .split() maxsplit doc

Docs incorrectly stated that maxsplit=0 would cause unlimited splitting.

20 years agohappy new year! (2.4 branch)
Anthony Baxter [Tue, 25 Jan 2005 12:43:57 +0000 (12:43 +0000)] 
happy new year! (2.4 branch)

20 years agoSF bug #1105286: Undocumented implicit strip() in split(None) string method
Raymond Hettinger [Tue, 25 Jan 2005 10:28:47 +0000 (10:28 +0000)] 
SF bug #1105286:  Undocumented implicit strip() in split(None) string method

Clarify the behavior when a string begins or ends with whitespace.

20 years agoFlush std{in,out,err} before closing it. Fixes #1074011.
Martin v. Löwis [Sun, 23 Jan 2005 09:50:14 +0000 (09:50 +0000)] 
Flush std{in,out,err} before closing it. Fixes #1074011.

20 years agoSome bugs have been fixed in distutils, so increment the last part of
Thomas Heller [Thu, 20 Jan 2005 19:25:24 +0000 (19:25 +0000)] 
Some bugs have been fixed in distutils, so increment the last part of
the version number.  For the distutils version numbering scheme, see
http://mail.python.org/pipermail/distutils-sig/2005-January/004368.html

20 years agodistutils/command/install.py change.
Thomas Heller [Thu, 20 Jan 2005 19:21:24 +0000 (19:21 +0000)] 
distutils/command/install.py change.

20 years agoFix [ 1103844 ] fix distutils.install.dump_dirs() with negated options.
Thomas Heller [Thu, 20 Jan 2005 19:15:39 +0000 (19:15 +0000)] 
Fix [ 1103844 ] fix distutils.install.dump_dirs() with negated options.

Backport from trunk.

20 years agoIf an extension can't be loaded, print warning and skip it instead of
Kurt B. Kaiser [Wed, 19 Jan 2005 17:25:05 +0000 (17:25 +0000)] 
If an extension can't be loaded, print warning and skip it instead of
erroring out.

20 years agoImprove error handling when .idlerc can't be created (warn and exit)
Kurt B. Kaiser [Wed, 19 Jan 2005 17:12:49 +0000 (17:12 +0000)] 
Improve error handling when .idlerc can't be created (warn and exit)

20 years agofix typeset of vertical bar for PDF format
Fred Drake [Wed, 19 Jan 2005 07:23:35 +0000 (07:23 +0000)] 
fix typeset of vertical bar for PDF format
(closes SF bug #1008998)

20 years agoinstall distutils.tests on Unix (contributed patch)
Fred Drake [Wed, 19 Jan 2005 06:23:38 +0000 (06:23 +0000)] 
install distutils.tests on Unix (contributed patch)
(closes SF bug #1093173)

20 years agodocumentation for the zipimport module using contributed patch
Fred Drake [Wed, 19 Jan 2005 05:54:36 +0000 (05:54 +0000)] 
documentation for the zipimport module using contributed patch
(closes SF bug #853800; markup adjusted)

20 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Wed, 19 Jan 2005 05:54:36 +0000 (05:54 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release24-maint'.

20 years agoDescription of args to IMAP4.store() in imaplib
Fred Drake [Wed, 19 Jan 2005 04:47:50 +0000 (04:47 +0000)] 
Description of args to IMAP4.store() in imaplib
(closes SF patch #1084092; modified per comments in SF)

20 years agoClean up discussion of new C thread idiom
Fred Drake [Wed, 19 Jan 2005 04:13:14 +0000 (04:13 +0000)] 
Clean up discussion of new C thread idiom
(closes SF patch #1031233; modified)

20 years agofix a bunch of spelling errors
Fred Drake [Wed, 19 Jan 2005 03:42:10 +0000 (03:42 +0000)] 
fix a bunch of spelling errors
(closes SF patch #1104868)

20 years agoremove spurious line from widget variables example
Fred Drake [Wed, 19 Jan 2005 03:25:46 +0000 (03:25 +0000)] 
remove spurious line from widget variables example
(closes SF patch #1094815)

20 years agobackport: make thread stack size compile-time tunable on OS/2, incr main stack
Andrew MacIntyre [Mon, 17 Jan 2005 12:20:31 +0000 (12:20 +0000)] 
backport: make thread stack size compile-time tunable on OS/2, incr main stack

20 years agomake thread stack size compile-time tunable on OS/2
Andrew MacIntyre [Mon, 17 Jan 2005 12:19:24 +0000 (12:19 +0000)] 
make thread stack size compile-time tunable on OS/2

20 years agofix typo
Fred Drake [Wed, 12 Jan 2005 19:14:55 +0000 (19:14 +0000)] 
fix typo

20 years agoAdd duck-typing to the glossary.
Raymond Hettinger [Tue, 11 Jan 2005 16:14:55 +0000 (16:14 +0000)] 
Add duck-typing to the glossary.

20 years agoSF bug #1099516: tempfile files not types.FileType
Raymond Hettinger [Tue, 11 Jan 2005 15:38:41 +0000 (15:38 +0000)] 
SF bug #1099516:  tempfile files not types.FileType

Clarified that the returned object is file-like rather than an actual file.

20 years agoBackport checkin:
Walter Dörwald [Mon, 10 Jan 2005 12:26:00 +0000 (12:26 +0000)] 
Backport checkin:
Fix and test for SF bug #1098990: codec readline() splits lines apart.

20 years agoBackport for bug #839496: always read files in binary mode. Opening files in
Johannes Gijsbers [Mon, 10 Jan 2005 09:27:17 +0000 (09:27 +0000)] 
Backport for bug #839496: always read files in binary mode. Opening files in
text mode may cause newline translations, making the actual size of the content
transmitted *less* than the content-length.

20 years agoBackport patch #712317: In URLs such as http://www.example.com?query=spam,
Johannes Gijsbers [Sun, 9 Jan 2005 15:32:37 +0000 (15:32 +0000)] 
Backport patch #712317: In URLs such as http://www.example.com?query=spam,
treat '?' as a delimiter. Previously, the 'network location' (<authority> in
RFC 2396) would become 'www.example.com?query=spam', while RFC 2396 does not
allow a '?' in <authority>. See bug #548176 for further discussion.

20 years agoBackport patch #1095362: replace hardcoded test for POST/GET with call to
Johannes Gijsbers [Sun, 9 Jan 2005 05:53:27 +0000 (05:53 +0000)] 
Backport patch #1095362: replace hardcoded test for POST/GET with call to
get_method, removing some duplication and gaining some flexibility in the
process.

20 years agoBackport patch #1051321 (fixes bugs 1010196, 1013525), by Mike Brown:
Johannes Gijsbers [Sun, 9 Jan 2005 00:39:06 +0000 (00:39 +0000)] 
Backport patch #1051321 (fixes bugs 10101961013525), by Mike Brown:

* Document hasFeature(), createDocument(), CreateDocumentType(),
  hasAttribute(), hasAttributeNS().

* In the documentation for createDocument(), it is now stated that the Python
  DOM API allows implementations to forego creation of the document element
  child node, if no namespace and local name arguments are given. (This
  possibility is left open and unaddressed in the W3C spec).

* Addition by me: use 'name' rather than 'attname', for consistency with the
  DOM specification and the Python DOM API implementation.

20 years agoStarting on the 2.4 MacPython installer.
Jack Jansen [Fri, 7 Jan 2005 15:41:15 +0000 (15:41 +0000)] 
Starting on the 2.4 MacPython installer.

20 years agoStarted on Macintosh section.
Jack Jansen [Fri, 7 Jan 2005 14:19:30 +0000 (14:19 +0000)] 
Started on Macintosh section.

20 years agoBackport of 1.38:
Jack Jansen [Fri, 7 Jan 2005 13:48:49 +0000 (13:48 +0000)] 
Backport of 1.38:
Allow relative URLs for included databases and packages.

20 years agoBackport of Patch #1097739 by Bob Ippolito:
Jack Jansen [Fri, 7 Jan 2005 13:17:33 +0000 (13:17 +0000)] 
Backport of Patch #1097739 by Bob Ippolito:
MacOSX: if we cannot use -undefined dynamic_lookup (such as on 10.2 or earlier)
we link extension directly against the dynamic library in the framework in
stead of against the framework. This will fix building extensions for 2.3
after 2.4 has been installed too.

20 years agoBackport of 1.479:
Jack Jansen [Fri, 7 Jan 2005 13:13:50 +0000 (13:13 +0000)] 
Backport of 1.479:
Always set CONFIGURE_MACOSX_DEPLOYMENT_TARGET otherwise it may be set
to an empty value and distutils will get confused lateron.

20 years agoBackport of 1.20:
Jack Jansen [Fri, 7 Jan 2005 12:58:03 +0000 (12:58 +0000)] 
Backport of 1.20:
Workaround for the fact that urllib2 doesn't default to "file:" urls.

20 years agoSF patch 1094011: Docs for file() vs open().
Raymond Hettinger [Fri, 7 Jan 2005 04:35:08 +0000 (04:35 +0000)] 
SF patch 1094011:  Docs for file() vs open().

20 years agoSF bug #1091740: garbage collector still documented as optional
Raymond Hettinger [Fri, 7 Jan 2005 00:51:02 +0000 (00:51 +0000)] 
SF bug #1091740: garbage collector still documented as optional

20 years agoBackported from the trunk:
Jack Jansen [Thu, 6 Jan 2005 23:16:03 +0000 (23:16 +0000)] 
Backported from the trunk:
After discussion on the PythonMac-SIG it was decided that it is better
to make using "-undefined dynamic_lookup" for linking extensions more
automatic on 10.3 and later. So if we're on that platform and
MACOSX_DEPLOYMENT_TARGET is not set we now set it to the current OSX
version during configure. Additionally, distutils will pick up the
configure-time value by default.

20 years agoBackported from the trunk:
Jack Jansen [Thu, 6 Jan 2005 22:33:55 +0000 (22:33 +0000)] 
Backported from the trunk:
- When doing a frameworkinstall test whether Apple's Python 2.3 may
  need fixing
- Added quotes around destroot arguments.

20 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Thu, 6 Jan 2005 22:33:55 +0000 (22:33 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release24-maint'.

20 years agoUpdating the Idle wrapper to match the current CVS copy.
Sean Reifschneider [Wed, 5 Jan 2005 15:53:54 +0000 (15:53 +0000)] 
Updating the Idle wrapper to match the current CVS copy.

20 years agoClarify that DictMixin is still useful. Only the UserDict class was supplanted.
Raymond Hettinger [Tue, 4 Jan 2005 21:28:48 +0000 (21:28 +0000)] 
Clarify that DictMixin is still useful.  Only the UserDict class was supplanted.

20 years agoFix typo.
Martin v. Löwis [Mon, 3 Jan 2005 23:42:34 +0000 (23:42 +0000)] 
Fix typo.

20 years agoBackport of 1.37:
Jack Jansen [Mon, 3 Jan 2005 15:46:45 +0000 (15:46 +0000)] 
Backport of 1.37:
- Added an "installer" flavor, which uses the "open" command to install
  something (overridable through Install-command entry)
- Hidden status is now determined by flavor == hidden, not by
  missing Download-URL. Hidden packages behave like installer packages.
- Made some error messages a bit more understandable.

Because there's new functionality the version has been upped to 0.5.

20 years agoOn UNIX, when the execution of the child fails, we must waitpid() to
Peter Astrand [Sat, 1 Jan 2005 09:32:16 +0000 (09:32 +0000)] 
On UNIX, when the execution of the child fails, we must waitpid() to
prevent leaving zombies.

20 years agoSF patch #1094007: Remove witty comment in pydoc.py
Raymond Hettinger [Sat, 1 Jan 2005 07:52:40 +0000 (07:52 +0000)] 
SF patch #1094007:  Remove witty comment in pydoc.py
(Removed at Ping's request.)

20 years agoSF patch #1051395: locale.getdefaultlocale does not return tuple in some OS
Raymond Hettinger [Sat, 1 Jan 2005 06:12:26 +0000 (06:12 +0000)] 
SF patch #1051395:  locale.getdefaultlocale does not return tuple in some OS
(Contributed by Jiwon Seo.)

20 years agoSF Patch #1093896: miscellaneous doc typos
Raymond Hettinger [Sat, 1 Jan 2005 00:34:56 +0000 (00:34 +0000)] 
SF Patch #1093896:  miscellaneous doc typos

20 years agoBackport:
Jack Jansen [Fri, 31 Dec 2004 11:23:20 +0000 (11:23 +0000)] 
Backport:
Fix for #1091468: DESTROOTed frameworkinstalls fail. Added a --destroot
option to various tools, and do the right thing when we're doing a destroot
install.

20 years agoPatch #1011890: fix inspect.getsource breaking with line-continuation &
Johannes Gijsbers [Fri, 31 Dec 2004 09:45:37 +0000 (09:45 +0000)] 
Patch #1011890: fix inspect.getsource breaking with line-continuation &
more. Thanks to Simon Percivall!

The patch makes changes to inspect.py in two places:

* the pattern to match against functions at line 436 is
modified: lambdas should be matched even if not
preceded by whitespace, as long as "lambda" isn't part
of another word.

* the BlockFinder class is heavily modified. Changes are:
- checking for "def", "class" or "lambda" names
before setting self.started to True. Then checking the
same line for word characters after the colon (if the
colon is on that line). If so, and the line does not
end with a line continuation marker, raise EndOfBlock
immediately.
- adding self.passline to show that the line is to be
included and no more checking is necessary on that
line. Since a NEWLINE token is not generated when a
line continuation marker exists, this allows getsource
to continue with these functions even if the following
line would not be indented.

Don't backport the tests, as these have been too heavily modified on the trunk.

20 years agoSF bug #1090139: presentation typo in lib: 6.21.4.2 How callbacks are called
Raymond Hettinger [Fri, 31 Dec 2004 01:08:17 +0000 (01:08 +0000)] 
SF bug #1090139:  presentation typo in lib: 6.21.4.2 How callbacks are called

20 years agoAdd more test directories to testsuite.
Martin v. Löwis [Thu, 30 Dec 2004 14:09:14 +0000 (14:09 +0000)] 
Add more test directories to testsuite.

20 years agoUpdate to VC 7.1.
Martin v. Löwis [Thu, 30 Dec 2004 10:44:50 +0000 (10:44 +0000)] 
Update to VC 7.1.

20 years agoBackport checkin:
Walter Dörwald [Wed, 29 Dec 2004 15:28:29 +0000 (15:28 +0000)] 
Backport checkin:
Fix wrong variable name.

20 years agoUpdate example to VC 7.1.
Martin v. Löwis [Wed, 29 Dec 2004 14:21:24 +0000 (14:21 +0000)] 
Update example to VC 7.1.

20 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Wed, 29 Dec 2004 14:21:24 +0000 (14:21 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release24-maint'.

20 years agoBackport checkin:
Walter Dörwald [Wed, 29 Dec 2004 13:12:39 +0000 (13:12 +0000)] 
Backport checkin:
Fix wrong variable name.

20 years agoBackport of 1.36:
Jack Jansen [Tue, 28 Dec 2004 21:53:49 +0000 (21:53 +0000)] 
Backport of 1.36:
- getDefaultDatabase wasn't listed in __all__.
- using a different database for non-final releases should only be done
  for X.Y.0. Non-final micro releases can use the default database just fine,
  as they are required to be backward compatible.

20 years ago[Bug #1083110] calling .flush() on decompress objects causes a segfault due to an...
Andrew M. Kuchling [Tue, 28 Dec 2004 20:12:31 +0000 (20:12 +0000)] 
[Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case

20 years agoUpdate VC references.
Martin v. Löwis [Fri, 24 Dec 2004 08:27:20 +0000 (08:27 +0000)] 
Update VC references.

20 years agouse = instead of == as operator for test
Matthias Klose [Fri, 24 Dec 2004 08:24:21 +0000 (08:24 +0000)] 
use = instead of == as operator for test

20 years agoFix mention of TextEdit to state it can save in plaintext.
Brett Cannon [Fri, 24 Dec 2004 02:41:48 +0000 (02:41 +0000)] 
Fix mention of TextEdit to state it can save in plaintext.

20 years agodiscuss how the __builtin__ module is normally used, and try to clarify the
Fred Drake [Thu, 23 Dec 2004 16:55:32 +0000 (16:55 +0000)] 
discuss how the __builtin__ module is normally used, and try to clarify the
difference between __builtins__ and __builtin__ (based on an email comment)
(backported from trunk revision 1.9)

20 years agoThe GUI was hanging if the shell window was closed while a raw_input()
Kurt B. Kaiser [Thu, 23 Dec 2004 04:32:25 +0000 (04:32 +0000)] 
The GUI was hanging if the shell window was closed while a raw_input()
was pending.  Restored the quit() of the readline() mainloop().
http://mail.python.org/pipermail/idle-dev/2004-December/002307.html

M NEWS.txt
M PyShell.py
M idlever.py

20 years agoRecompiled after source changes.
Thomas Heller [Wed, 22 Dec 2004 17:00:45 +0000 (17:00 +0000)] 
Recompiled after source changes.

20 years agoDocument bdist_wininst changes.
Thomas Heller [Wed, 22 Dec 2004 16:59:16 +0000 (16:59 +0000)] 
Document bdist_wininst changes.

20 years agoClose stdout and stderr, which are redirected into a temp file, before
Thomas Heller [Wed, 22 Dec 2004 16:49:05 +0000 (16:49 +0000)] 
Close stdout and stderr, which are redirected into a temp file, before
trying to remove this file - the file was never removed before.

Fixes [ 1067732 ] wininst --install-script leaves residual files

20 years agoFix a typo from the last checkin.
Thomas Heller [Wed, 22 Dec 2004 16:40:30 +0000 (16:40 +0000)] 
Fix a typo from the last checkin.

20 years agoBackport of rev. 1.12 from the trunk.
Thomas Heller [Wed, 22 Dec 2004 16:33:38 +0000 (16:33 +0000)] 
Backport of rev. 1.12 from the trunk.

20 years agoPatch #1088716: build and incorporate libpython24.a.
Martin v. Löwis [Wed, 22 Dec 2004 13:41:23 +0000 (13:41 +0000)] 
Patch #1088716: build and incorporate libpython24.a.

20 years agoDocument resolved MSI issues.
Martin v. Löwis [Wed, 22 Dec 2004 13:02:26 +0000 (13:02 +0000)] 
Document resolved MSI issues.

20 years agoProperly quote IDLE shortcut. Fixes #1076861.
Martin v. Löwis [Wed, 22 Dec 2004 12:56:46 +0000 (12:56 +0000)] 
Properly quote IDLE shortcut. Fixes #1076861.

20 years agoBackport checkin:
Walter Dörwald [Wed, 22 Dec 2004 12:52:15 +0000 (12:52 +0000)] 
Backport checkin:
Add NEWS entry about bug #1076985.

20 years agoBackport msisupport.dll to 2.4
Martin v. Löwis [Wed, 22 Dec 2004 12:36:08 +0000 (12:36 +0000)] 
Backport msisupport.dll to 2.4

20 years agoRemove outdated comments about Macintosh for expanduser and expandvars.
Brett Cannon [Wed, 22 Dec 2004 05:41:56 +0000 (05:41 +0000)] 
Remove outdated comments about Macintosh for expanduser and expandvars.

20 years agoBackport checkin:
Walter Dörwald [Tue, 21 Dec 2004 22:35:24 +0000 (22:35 +0000)] 
Backport checkin:
The changes to the stateful codecs in 2.4 resulted in StreamReader.readline()
trying to return a complete line even if a size parameter was given (see
http://www.python.org/sf/1076985). This leads to buffer overflows with long
source lines under Windows if e.g. cp1252 is used as the source encoding.
This patch reverts the behaviour of readline() to something that behaves more
like Python 2.3: If a size parameter is given, read() is called only once.

As a side effect of this, readline() now supports all types of linebreaks
supported by unicode.splitlines().

Note that the tokenizer is still broken and it's possible to provoke segfaults
(see http://www.python.org/sf/1089395).

20 years agoBackport from trunk: add accidentally removed \end{description} back in.
Johannes Gijsbers [Tue, 21 Dec 2004 21:15:14 +0000 (21:15 +0000)] 
Backport from trunk: add accidentally removed \end{description} back in.

20 years agoMentioned marshal.dumps()'s fix in the NEWS.
Armin Rigo [Tue, 21 Dec 2004 14:04:39 +0000 (14:04 +0000)] 
Mentioned marshal.dumps()'s fix in the NEWS.

20 years agoSF bug #951915: fix bug in StringIO.truncate - length not changed
Raymond Hettinger [Mon, 20 Dec 2004 23:55:32 +0000 (23:55 +0000)] 
SF bug #951915:  fix bug in StringIO.truncate - length not changed
(Patch by Armin Rigo.)

20 years agoBack-ported: marshal.dumps() with the new optional argument 'version' just
Armin Rigo [Mon, 20 Dec 2004 12:26:43 +0000 (12:26 +0000)] 
Back-ported: marshal.dumps() with the new optional argument 'version' just
immediately segfaults, due to a typo!

20 years agoBug #1088206: zlib decompressobj documentation typo
Raymond Hettinger [Mon, 20 Dec 2004 06:09:30 +0000 (06:09 +0000)] 
Bug #1088206:  zlib decompressobj documentation typo

20 years agoBugs item #1069409 C:\Python24\Lib\compileall.py returns False
Raymond Hettinger [Mon, 20 Dec 2004 00:31:10 +0000 (00:31 +0000)] 
Bugs item #1069409     C:\Python24\Lib\compileall.py returns False

* return an integer rather than a boolean

20 years ago* reworked berkeleydb include and library detection code in setup.py
Gregory P. Smith [Sun, 19 Dec 2004 22:25:32 +0000 (22:25 +0000)] 
* reworked berkeleydb include and library detection code in setup.py
  to make sure the library version that matches the header file is used.
* update the bsddb module docs to indicate BerkeleyDB 3.2 thru 4.3 support

20 years agoBug #1079011: Incorrect error message (somewhat)
Raymond Hettinger [Sun, 19 Dec 2004 20:47:25 +0000 (20:47 +0000)] 
Bug #1079011:  Incorrect error message (somewhat)

20 years agoBug #1066607: "Limitations" section of profiler docs is incorrect
Raymond Hettinger [Sun, 19 Dec 2004 20:33:08 +0000 (20:33 +0000)] 
Bug #1066607:  "Limitations" section of profiler docs is incorrect

20 years agoBug #1087216: datetime module documentation missing critical detail
Raymond Hettinger [Sun, 19 Dec 2004 20:16:57 +0000 (20:16 +0000)] 
Bug #1087216:  datetime module documentation missing critical detail

20 years agoBackport fix for bug #1083645 have test_imp be skipped if threading is not
Brett Cannon [Sat, 18 Dec 2004 21:08:11 +0000 (21:08 +0000)] 
Backport fix for bug #1083645 have test_imp be skipped if threading is not
available.

20 years agoBug #1083645
Raymond Hettinger [Sat, 18 Dec 2004 19:22:18 +0000 (19:22 +0000)] 
Bug #1083645

* The decimal module wouldn't run on builds without threads.