]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
20 years agoAdded optional encoding argument to File based handlers and improved error handling...
Vinay Sajip [Thu, 31 Mar 2005 20:12:55 +0000 (20:12 +0000)] 
Added optional encoding argument to File based handlers and improved error handling for SysLogHandler

20 years agoMinor changes to imports
Vinay Sajip [Thu, 31 Mar 2005 20:11:45 +0000 (20:11 +0000)] 
Minor changes to imports

20 years agoMisc. changes
Vinay Sajip [Thu, 31 Mar 2005 20:10:38 +0000 (20:10 +0000)] 
Misc. changes

20 years ago(This is only relevant to the MacPython binary release process)
Bob Ippolito [Thu, 31 Mar 2005 17:38:00 +0000 (17:38 +0000)] 
(This is only relevant to the MacPython binary release process)
Set the Python version to 2.4 in the postflight script used when building
Mac OS X installer distributions.  Previously it was set to 2.3, so it
wouldn't build a working installer.

20 years agoBackport checkin:
Walter Dörwald [Thu, 31 Mar 2005 14:16:30 +0000 (14:16 +0000)] 
Backport checkin:
Since PyPI only accepts UTF-8 encoded data now, make sure that the data is
properly encoded and include the encoding in the Content-Type header.

20 years agoI meant to check this in with the last check in (CVS disturbs me
Michael W. Hudson [Thu, 31 Mar 2005 10:28:30 +0000 (10:28 +0000)] 
I meant to check this in with the last check in (CVS disturbs me
sometimes)

20 years agoBackport:
Michael W. Hudson [Thu, 31 Mar 2005 10:22:43 +0000 (10:22 +0000)] 
Backport:

Fix for rather inaccurately titled bug

1165306 ] Property access with decorator makes interpreter crash

Don't allow the creation of unbound methods with NULL im_class, because
attempting to call such crashes.

Backport candidate.

20 years agoBackport:
Michael W. Hudson [Thu, 31 Mar 2005 10:20:34 +0000 (10:20 +0000)] 
Backport:

Fixes for

1166660 ] The readline module can cause python to segfault

It seems to me that the code I'm rewriting here attempted to call any
user-supplied hook functions using the thread state of the thread that
called the hook-setting function, as opposed to that of the thread
that is currently executing.  This doesn't work, in general.

Fix this by using the PyGILState API (It wouldn't be that hard to
define a dummy version of said API when #ifndef WITH_THREAD, would
it?).

Also, check the conversion to integer of the return value of a hook
function for errors (this problem was mentioned in the ipython bug
report linked to in the above bug).

20 years agoSF bug #1770766: weakref proxy has incorrect __nonzero__ behavior.
Raymond Hettinger [Thu, 31 Mar 2005 04:07:55 +0000 (04:07 +0000)] 
SF bug #1770766:  weakref proxy has incorrect __nonzero__ behavior.

20 years agoThis commit was manufactured by cvs2svn to create tag 'r241'. v2.4.1
cvs2svn [Wed, 30 Mar 2005 03:01:43 +0000 (03:01 +0000)] 
This commit was manufactured by cvs2svn to create tag 'r241'.

20 years ago*** empty log message ***
Anthony Baxter [Wed, 30 Mar 2005 03:01:43 +0000 (03:01 +0000)] 
*** empty log message ***

20 years agoprepare for Python 2.4.1 final
Fred Drake [Tue, 29 Mar 2005 15:57:11 +0000 (15:57 +0000)] 
prepare for Python 2.4.1 final

20 years agoupdates to NEWS
Anthony Baxter [Tue, 29 Mar 2005 12:38:37 +0000 (12:38 +0000)] 
updates to NEWS

20 years agobackport of 1.122
Anthony Baxter [Tue, 29 Mar 2005 12:35:54 +0000 (12:35 +0000)] 
backport of 1.122
SF patch 1167316:  doctest.py fails self-test if run directly.

20 years ago2.4.1 preparations.
Anthony Baxter [Tue, 29 Mar 2005 12:33:34 +0000 (12:33 +0000)] 
2.4.1 preparations.

20 years agoMove exception finalisation later in the shutdown process - this
Anthony Baxter [Tue, 29 Mar 2005 12:32:50 +0000 (12:32 +0000)] 
Move exception finalisation later in the shutdown process - this
fixes the crash seen in bug #1165761

20 years agopatch [1171767] - Darwin 8's headers disable functionality when
Bob Ippolito [Mon, 28 Mar 2005 23:23:34 +0000 (23:23 +0000)] 
patch [1171767] - Darwin 8's headers disable functionality when
POSIX is enabled.  This prevents the toolbox glue, all of Carbon,
and various other non-POSIX features from compiling.  The POSIX
symbols are  still used by default, so turning off the #define
doesn't hurt.

Additionally, linker flags have changed for Darwin 8, and are
different for Darwin 8/gcc4 (default) and Darwin 8/gcc3.3.

Approved by Anthony

20 years agoMention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.
Martin v. Löwis [Mon, 28 Mar 2005 15:29:29 +0000 (15:29 +0000)] 
Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.

20 years agoAdd 0 to _POSIX_SEMAPHORES.
Martin v. Löwis [Mon, 28 Mar 2005 12:36:19 +0000 (12:36 +0000)] 
Add 0 to _POSIX_SEMAPHORES.

20 years ago2.4.1 buildno
Anthony Baxter [Mon, 28 Mar 2005 09:04:20 +0000 (09:04 +0000)] 
2.4.1 buildno

20 years agoSF #1169212: fix silly typo in explaining AFMT macros: U16 is unsigned
Greg Ward [Mon, 28 Mar 2005 02:32:41 +0000 (02:32 +0000)] 
SF #1169212: fix silly typo in explaining AFMT macros: U16 is unsigned
and S16 is signed.  Duh.  Clarify surrounding text a bit and refer to
OSS docs.

20 years agoSF patch #1171417: bug fix for islice() in docs
Raymond Hettinger [Sun, 27 Mar 2005 20:16:49 +0000 (20:16 +0000)] 
SF patch #1171417:  bug fix for islice() in docs

20 years ago- Fixed decimal operator and comparison methods to return NotImplemented
Raymond Hettinger [Sun, 27 Mar 2005 10:55:27 +0000 (10:55 +0000)] 
- Fixed decimal operator and comparison methods to return NotImplemented
  instead of raising a TypeError when interacting with other types.
  Allows other classes to successfully implement __radd__ style methods.

20 years agocorrect ontosys url - closes 1167329
Skip Montanaro [Mon, 21 Mar 2005 19:40:03 +0000 (19:40 +0000)] 
correct ontosys url - closes 1167329

20 years agofix two typos in python(1)
Matthias Klose [Sun, 20 Mar 2005 14:18:04 +0000 (14:18 +0000)] 
fix two typos in python(1)

20 years agoSF #1086675: restore "Extending optparse" section (which was dropped
Greg Ward [Sat, 19 Mar 2005 17:15:03 +0000 (17:15 +0000)] 
SF #1086675: restore "Extending optparse" section (which was dropped
in Python 2.4).

20 years agoRegenerate from Optik reST source to ensure CVS Id tags are up-to-date.
Greg Ward [Sat, 19 Mar 2005 17:05:48 +0000 (17:05 +0000)] 
Regenerate from Optik reST source to ensure CVS Id tags are up-to-date.

20 years agoList all option attributes (closes SF #993601).
Greg Ward [Sat, 19 Mar 2005 17:04:33 +0000 (17:04 +0000)] 
List all option attributes (closes SF #993601).

20 years agoBeef up optparse reference docs -- now much closer to documenting the
Greg Ward [Sat, 19 Mar 2005 16:28:37 +0000 (16:28 +0000)] 
Beef up optparse reference docs -- now much closer to documenting the
full API of Optik 1.5a2 (which is what's included with Python 2.4.x).
Closes SF #1099324, partially addresses SF #993601.

20 years agoFix typo.
Walter Dörwald [Fri, 18 Mar 2005 10:59:04 +0000 (10:59 +0000)] 
Fix typo.

20 years agoThis commit was manufactured by cvs2svn to create tag 'r241c2'. v2.4.1c2
cvs2svn [Thu, 17 Mar 2005 03:06:56 +0000 (03:06 +0000)] 
This commit was manufactured by cvs2svn to create tag 'r241c2'.

20 years ago2.4.1c2
Anthony Baxter [Thu, 17 Mar 2005 03:06:56 +0000 (03:06 +0000)] 
2.4.1c2

20 years agoupdate patchlevel
Fred Drake [Wed, 16 Mar 2005 23:43:21 +0000 (23:43 +0000)] 
update patchlevel

20 years ago2.4.1rc2 setup
Anthony Baxter [Wed, 16 Mar 2005 14:34:23 +0000 (14:34 +0000)] 
2.4.1rc2 setup

20 years agoPatch #1163249 - Correctly handle _POSIX_SEMAPHORES == -1 to mean no
Anthony Baxter [Wed, 16 Mar 2005 04:13:29 +0000 (04:13 +0000)] 
Patch #1163249 - Correctly handle _POSIX_SEMAPHORES == -1 to mean no
support for posix semaphores.

20 years agoDecimal special values did not hash properly.
Raymond Hettinger [Tue, 15 Mar 2005 23:36:19 +0000 (23:36 +0000)] 
Decimal special values did not hash properly.

20 years agoReuse componentids for *.dll across minor releases.
Martin v. Löwis [Tue, 15 Mar 2005 00:37:45 +0000 (00:37 +0000)] 
Reuse componentids for *.dll across minor releases.
Indicate to the user when this is an upgrade installation.
Make CHM file non-advertised.

20 years agoConfigure bug reporting address.
Martin v. Löwis [Mon, 14 Mar 2005 21:24:51 +0000 (21:24 +0000)] 
Configure bug reporting address.

20 years agoBackport checkin:
Walter Dörwald [Mon, 14 Mar 2005 19:26:47 +0000 (19:26 +0000)] 
Backport checkin:
Add default value for "whence" argument.

20 years agoBackport checkin:
Walter Dörwald [Mon, 14 Mar 2005 19:20:19 +0000 (19:20 +0000)] 
Backport checkin:
Reset internal buffers when seek() is called. This fixes SF bug #1156259.

20 years agoAdd more UUIDs. Update custom actions for Itanium
Martin v. Löwis [Mon, 14 Mar 2005 17:17:04 +0000 (17:17 +0000)] 
Add more UUIDs. Update custom actions for Itanium

20 years agoBackport of change to os.access to encode Unicode file names with
Martin v. Löwis [Sun, 13 Mar 2005 22:18:26 +0000 (22:18 +0000)] 
Backport of change to os.access to encode Unicode file names with
the file system encoding.

20 years agoPatch #1159931: a test case for the buggy cases fixed by the last checkin.
Johannes Gijsbers [Sat, 12 Mar 2005 16:48:50 +0000 (16:48 +0000)] 
Patch #1159931: a test case for the buggy cases fixed by the last checkin.

20 years agoBackport of patch #1159931/bug #1143895: inspect.getsource failed when
Johannes Gijsbers [Sat, 12 Mar 2005 16:38:39 +0000 (16:38 +0000)] 
Backport of patch #1159931/bug #1143895: inspect.getsource failed when
functions, etc., had comments after the colon, and some other cases.
This patch take a simpler approach that doesn't rely on looking for a
':'. Test cases are not backported, as test_inspect.py has been
rewritten using unittest on the trunk.

Thanks Simon Percivall!

20 years agoFix test_socket's test for socket.getfqdn() to also accept the result from
Brett Cannon [Sat, 12 Mar 2005 06:15:56 +0000 (06:15 +0000)] 
Fix test_socket's test for socket.getfqdn() to also accept the result from
socket.gethostname() as a valid return value.

Also clarified the docs as they were a little hazy on the subject matter.

20 years agoBug #1160802: Can't build Zope on Windows w/ 2.4.1c1.
Tim Peters [Fri, 11 Mar 2005 17:20:43 +0000 (17:20 +0000)] 
Bug #1160802:  Can't build Zope on Windows w/ 2.4.1c1.

MSVCCompiler.initialize():  set self.initialized to True, as suggested
by AMK.  Else we keep growing the PATH endlessly, with each new C
extension built, until putenv() complains.

This doesn't appear to be an issue on the HEAD (MSVCCompiler initializes
itself via __init__() on the HEAD).

Also added a "2.4.1c2" section to NEWS.  Not meant to imply that Anthony
will do a 2.4.1c2 release, just needed to a place to put the news about the
MSVCCompiler bugfix.

20 years agodamn.
Anthony Baxter [Thu, 10 Mar 2005 13:45:23 +0000 (13:45 +0000)] 
damn.

20 years agoThis commit was manufactured by cvs2svn to create tag 'r241c1'. v2.4.1c1
cvs2svn [Thu, 10 Mar 2005 04:59:14 +0000 (04:59 +0000)] 
This commit was manufactured by cvs2svn to create tag 'r241c1'.

20 years ago- fix generated Texinfo markup for \deprecated
Fred Drake [Thu, 10 Mar 2005 04:59:14 +0000 (04:59 +0000)] 
- fix generated Texinfo markup for \deprecated
- add support for additional markup: \leq, \textbar, \textit
- add a comment about the non-support for the Euro character

20 years agobump buildno for 2.4c1
Anthony Baxter [Thu, 10 Mar 2005 04:51:47 +0000 (04:51 +0000)] 
bump buildno for 2.4c1

20 years agofix broken usage comment
Fred Drake [Thu, 10 Mar 2005 04:04:13 +0000 (04:04 +0000)] 
fix broken usage comment
(ported from trunk revision 1.112)

20 years agoadd missing entries from GNU info conversion table
Fred Drake [Thu, 10 Mar 2005 03:57:02 +0000 (03:57 +0000)] 
add missing entries from GNU info conversion table

20 years agocorrect several markup errors caught by the GNU info conversion
Fred Drake [Thu, 10 Mar 2005 03:47:24 +0000 (03:47 +0000)] 
correct several markup errors caught by the GNU info conversion

20 years agoSF bug #1160187: Setup file needs entries for collections, itertools, strop
Raymond Hettinger [Wed, 9 Mar 2005 23:47:44 +0000 (23:47 +0000)] 
SF bug #1160187:  Setup file needs entries for collections, itertools, strop

20 years agobackport v1.216: add support for another DB library naming convention \n(FreeBSD...
Andrew MacIntyre [Wed, 9 Mar 2005 22:27:24 +0000 (22:27 +0000)] 
backport v1.216: add support for another DB library naming convention \n(FreeBSD ports) - patch #1146231

20 years agopre-release magic
Anthony Baxter [Wed, 9 Mar 2005 11:54:29 +0000 (11:54 +0000)] 
pre-release magic

20 years agotabstop delenda est
Anthony Baxter [Wed, 9 Mar 2005 11:45:49 +0000 (11:45 +0000)] 
tabstop delenda est

20 years agobackport
Skip Montanaro [Wed, 9 Mar 2005 03:02:17 +0000 (03:02 +0000)] 
backport

20 years agobackport from head
Skip Montanaro [Wed, 9 Mar 2005 02:57:55 +0000 (02:57 +0000)] 
backport from head

20 years agoSF #818006: revert addition of 'closed', 'mode', and 'name' attributes
Greg Ward [Wed, 9 Mar 2005 00:55:19 +0000 (00:55 +0000)] 
SF #818006: revert addition of 'closed', 'mode', and 'name' attributes
to oss_audio_device objects.

20 years agoBuild with --disable-unicode again. Fixes #1158607.
Martin v. Löwis [Tue, 8 Mar 2005 15:05:18 +0000 (15:05 +0000)] 
Build with --disable-unicode again. Fixes #1158607.

20 years agoSF #1156412: document the __new__() static method.
Greg Ward [Tue, 8 Mar 2005 01:08:42 +0000 (01:08 +0000)] 
SF #1156412: document the __new__() static method.

20 years agoSF #818006: add useful read-only attributes to oss_audio_device object:
Greg Ward [Mon, 7 Mar 2005 01:32:03 +0000 (01:32 +0000)] 
SF #818006: add useful read-only attributes to oss_audio_device object:
'closed', 'name', and 'mode' (as recommended by
http://python.org/doc/current/lib/bltin-file-objects.html).

20 years agoEnsure that warnings.filters is properly restored after fiddling with it
Greg Ward [Mon, 7 Mar 2005 01:10:33 +0000 (01:10 +0000)] 
Ensure that warnings.filters is properly restored after fiddling with it
(this was breaking test_warnings).

20 years agoMention SF #1149508 (textwrap and hyphenated numbers).
Greg Ward [Sat, 5 Mar 2005 02:48:03 +0000 (02:48 +0000)] 
Mention SF #1149508 (textwrap and hyphenated numbers).

20 years agoSF #1149508: ensure textwrap handles hyphenated numbers correctly,
Greg Ward [Sat, 5 Mar 2005 02:38:33 +0000 (02:38 +0000)] 
SF #1149508: ensure textwrap handles hyphenated numbers correctly,
eg. "2004-03-04" is not broken across lines.

20 years agoPatches #925152, #1118602: Avoid reading after the end of the buffer
Martin v. Löwis [Fri, 4 Mar 2005 14:38:07 +0000 (14:38 +0000)] 
Patches #925152, #1118602: Avoid reading after the end of the buffer
in pyexpat.GetInputContext.

20 years agoPatch #1075887: Don't require MSVC in distutils if there is nothing
Martin v. Löwis [Fri, 4 Mar 2005 13:51:55 +0000 (13:51 +0000)] 
Patch #1075887: Don't require MSVC in distutils if there is nothing
to build. Will backport to 2.4

20 years agoConvert "__init__ should return None" from an exception to a warning.
Raymond Hettinger [Fri, 4 Mar 2005 04:47:04 +0000 (04:47 +0000)] 
Convert "__init__ should return None" from an exception to a warning.

20 years agoPatch #1103407: Properly deal with tarfile iterators when untarring
Martin v. Löwis [Thu, 3 Mar 2005 23:15:04 +0000 (23:15 +0000)] 
Patch #1103407: Properly deal with tarfile iterators when untarring
symbolic links on Windows. Fixes #1100429.

20 years agoPatch #1107221: Updated "Working on Cygwin" section.
Martin v. Löwis [Thu, 3 Mar 2005 23:07:47 +0000 (23:07 +0000)] 
Patch #1107221: Updated "Working on Cygwin" section.

20 years agoCorrected bug in list2cmdline wrt backslashes. Fixes #1083306.
Peter Astrand [Thu, 3 Mar 2005 21:11:06 +0000 (21:11 +0000)] 
Corrected bug in list2cmdline wrt backslashes. Fixes #1083306.

20 years agoOnly run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes...
Peter Astrand [Thu, 3 Mar 2005 20:51:32 +0000 (20:51 +0000)] 
Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637

20 years agominor edits:
Fred Drake [Thu, 3 Mar 2005 17:24:20 +0000 (17:24 +0000)] 
minor edits:
- function names marked with \function should include parentheses
- "standard error" instead of "stderr" for text
- a boolean parameter takes true or false values, not just True or False

20 years agoSF bug #1155938: Missing None check for __init__().
Raymond Hettinger [Thu, 3 Mar 2005 16:55:53 +0000 (16:55 +0000)] 
SF bug #1155938: Missing None check for __init__().

20 years agoRevert previous checkin on getargs 'L' code. Try to convert all
Martin v. Löwis [Thu, 3 Mar 2005 12:26:20 +0000 (12:26 +0000)] 
Revert previous checkin on getargs 'L' code. Try to convert all
numbers in PyLong_AsLongLong, and update test suite accordingly.

20 years agoPatch #1117454: Remove code to special-case cookies without values
Martin v. Löwis [Thu, 3 Mar 2005 10:55:57 +0000 (10:55 +0000)] 
Patch #1117454: Remove code to special-case cookies without values
in LWPCookieJar.

20 years agoPatch #1117339: Add cookielib special name tests.
Martin v. Löwis [Thu, 3 Mar 2005 10:47:38 +0000 (10:47 +0000)] 
Patch #1117339: Add cookielib special name tests.

20 years agoDocument quiet parameter to decode. Fixes #803413.
Martin v. Löwis [Thu, 3 Mar 2005 10:05:37 +0000 (10:05 +0000)] 
Document quiet parameter to decode. Fixes #803413.

20 years agoPatch #1112812: Make bsddb/__init__.py more friendly for modulefinder.
Martin v. Löwis [Thu, 3 Mar 2005 09:45:32 +0000 (09:45 +0000)] 
Patch #1112812: Make bsddb/__init__.py more friendly for modulefinder.

20 years agoClear internal call error in 'L' format. Fixes #723201.
Martin v. Löwis [Thu, 3 Mar 2005 09:24:05 +0000 (09:24 +0000)] 
Clear internal call error in 'L' format. Fixes #723201.

20 years agoBackport the non-spwd part of the change on head.
Skip Montanaro [Wed, 2 Mar 2005 04:31:38 +0000 (04:31 +0000)] 
Backport the non-spwd part of the change on head.

20 years agoPatch #1121234: Properly cleanup _exit and tkerror commands.
Martin v. Löwis [Tue, 1 Mar 2005 08:10:49 +0000 (08:10 +0000)] 
Patch #1121234: Properly cleanup _exit and tkerror commands.

20 years agoPatch #1093585: raise a ValueError for negative history items in
Martin v. Löwis [Sun, 27 Feb 2005 20:34:01 +0000 (20:34 +0000)] 
Patch #1093585: raise a ValueError for negative history items in
remove_history and replace_history.

20 years agoDocument missing opcodes.
Raymond Hettinger [Mon, 21 Feb 2005 20:33:50 +0000 (20:33 +0000)] 
Document missing opcodes.

20 years agoUse getdoc(object) instead of object.__doc__ to fix indentation problems.
Ka-Ping Yee [Sat, 19 Feb 2005 22:57:37 +0000 (22:57 +0000)] 
Use getdoc(object) instead of object.__doc__ to fix indentation problems.
Thanks to Robert Dick <dickrp@ece.northwestern.edu> for reporting this bug
and submitting a patch.

Adjust doc(object) to display useful documentation for plain values (e.g.
help([]) now shows the methods on the list instead of just printing "[]").

(This change has been tested interactively, by generating docs for the
standard library, and by running the module documentation webserver.)

20 years agoAvoid using *W functions on Win95.
Martin v. Löwis [Fri, 18 Feb 2005 16:13:06 +0000 (16:13 +0000)] 
Avoid using *W functions on Win95.

20 years agoAvoid using items() in environ.update(). Fixes #1124513.
Martin v. Löwis [Thu, 17 Feb 2005 21:23:42 +0000 (21:23 +0000)] 
Avoid using items() in environ.update(). Fixes #1124513.

20 years agoBackport: NEWS blurb for fix of:
Michael W. Hudson [Thu, 17 Feb 2005 14:57:04 +0000 (14:57 +0000)] 
Backport: NEWS blurb for fix of:

1124295 ] Function's __name__ no longer accessible in restricted mode

20 years agoadd notes about subprocess module & thread stacks, SSL support
Andrew MacIntyre [Thu, 17 Feb 2005 12:47:42 +0000 (12:47 +0000)] 
add notes about subprocess module & thread stacks, SSL support

20 years agoadd build machinery for the SSL socket module
Andrew MacIntyre [Thu, 17 Feb 2005 12:47:03 +0000 (12:47 +0000)] 
add build machinery for the SSL socket module

20 years agoBackport: Fix
Michael W. Hudson [Thu, 17 Feb 2005 10:43:12 +0000 (10:43 +0000)] 
Backport: Fix

1124295 ] Function's __name__ no longer accessible in restricted mode

which I introduced with a bit of mindless copy-paste when making
__name__ writable.  You can't assign to __name__ in restricted mode,
which I'm going to pretend was intentional :)

20 years agoFix name from PyDate_FromDateAndTime to PyDateTime_FromDateAndTime.
Brett Cannon [Thu, 17 Feb 2005 05:16:19 +0000 (05:16 +0000)] 
Fix name from PyDate_FromDateAndTime to PyDateTime_FromDateAndTime.

Closes bug #1124278.

20 years agoRemove dependency on order of mode flags
Raymond Hettinger [Wed, 16 Feb 2005 09:30:17 +0000 (09:30 +0000)] 
Remove dependency on order of mode flags

20 years agoUpdate refences to "Macintosh" to reflect the state of affairs for OS X and not
Brett Cannon [Sun, 13 Feb 2005 22:56:41 +0000 (22:56 +0000)] 
Update refences to "Macintosh" to reflect the state of affairs for OS X and not
Mac OS 9.

Backport of patch #1095802.

20 years agofix decoding in _stringify to not depend on the default encoding
Fred Drake [Fri, 11 Feb 2005 18:00:16 +0000 (18:00 +0000)] 
fix decoding in _stringify to not depend on the default encoding
(closes SF bug #1115989)

20 years agoFix tzset() check to not require the existence of tm->tm_zone. Also added more
Brett Cannon [Thu, 10 Feb 2005 22:47:13 +0000 (22:47 +0000)] 
Fix tzset() check to not require the existence of tm->tm_zone.  Also added more
sanity checks for tzname when HAVE_TZNAME is defined.

Closes bug #1096244.  Thanks Gregory Bond.

20 years agoFix typo
Andrew M. Kuchling [Thu, 10 Feb 2005 13:46:14 +0000 (13:46 +0000)] 
Fix typo

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.