]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
22 years agoSF bug #827902: ctime is not creation time
Raymond Hettinger [Wed, 29 Oct 2003 00:47:11 +0000 (00:47 +0000)] 
SF bug #827902: ctime is not creation time

New fix for this bug recognizes differing definitions on various systems.

22 years agoSF #775057, fix IDLE problem in about dialog
Neal Norwitz [Tue, 28 Oct 2003 21:58:26 +0000 (21:58 +0000)] 
SF #775057, fix IDLE problem in about dialog

If the file doesn't exist, the code to display an error message was broken

22 years agoSF bug #827902: ctime is not creation time
Raymond Hettinger [Mon, 27 Oct 2003 20:03:22 +0000 (20:03 +0000)] 
SF bug #827902:  ctime is not creation time

Document the correct definition of os.path.getctime()

22 years agoPatch #803998: Correctly check for error in SSL_write.
Martin v. Löwis [Mon, 27 Oct 2003 14:24:41 +0000 (14:24 +0000)] 
Patch #803998: Correctly check for error in SSL_write.

22 years agoPatch #817854: Add missing operations for SSLFile. Fixes #792101.
Martin v. Löwis [Mon, 27 Oct 2003 14:07:43 +0000 (14:07 +0000)] 
Patch #817854: Add missing operations for SSLFile. Fixes #792101.

22 years agoDocument that varlist can be NULL.
Raymond Hettinger [Sun, 26 Oct 2003 17:21:56 +0000 (17:21 +0000)] 
Document that varlist can be NULL.

22 years agoregressing the performance bugfix -- Guido wants the performance bug left
Alex Martelli [Sat, 25 Oct 2003 23:22:55 +0000 (23:22 +0000)] 
regressing the performance bugfix -- Guido wants the performance bug left
alone, because there can be no guarantee re the semantics of += vs + .

22 years agoSF #829941, update tutorial, built-in types can be base classes since 2.2
Neal Norwitz [Sat, 25 Oct 2003 14:17:15 +0000 (14:17 +0000)] 
SF #829941, update tutorial, built-in types can be base classes since 2.2

22 years agodocument the performance fix to builtin_sum().
Alex Martelli [Sat, 25 Oct 2003 13:02:24 +0000 (13:02 +0000)] 
document the performance fix to builtin_sum().

22 years agochanged builtin_sum to use PyNumber_InPlaceAdd -- unchanged semantics but
Alex Martelli [Sat, 25 Oct 2003 12:47:09 +0000 (12:47 +0000)] 
changed builtin_sum to use PyNumber_InPlaceAdd -- unchanged semantics but
fixes performance bug with sum(lotsoflists, []).

22 years ago[Backport fix for bug #822668] gzip filesize should be written out mod 2**32
Andrew M. Kuchling [Fri, 24 Oct 2003 17:47:57 +0000 (17:47 +0000)] 
[Backport fix for bug #822668] gzip filesize should be written out mod 2**32

22 years agoBackport checkin:
Walter Dörwald [Fri, 24 Oct 2003 15:05:29 +0000 (15:05 +0000)] 
Backport checkin:
Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap().
charmaptranslate_makespace() allocates more memory than required for the
next replacement but didn't remember that fact, so memory size was growing
exponentially every time a replacement string is longer that one character.
This fixes SF bug #828737.

22 years agoPatch #813200: Quote executable path on Windows. Fixes #811082.
Martin v. Löwis [Thu, 23 Oct 2003 15:55:03 +0000 (15:55 +0000)] 
Patch #813200: Quote executable path on Windows. Fixes #811082.

22 years agoBackport from the trunk.
Thomas Heller [Wed, 22 Oct 2003 19:38:10 +0000 (19:38 +0000)] 
Backport from the trunk.

To build on windows, the manual editing of the python_nt.rc file to
change the version number is no longer required.

Instead, a make_versioninfo.exe is compiled, which spits out an
include file for python_nt.rc.

22 years agoAvoid confusing name for the 3rd argument to str.replace().
Fred Drake [Wed, 22 Oct 2003 02:57:23 +0000 (02:57 +0000)] 
Avoid confusing name for the 3rd argument to str.replace().
This closes SF bug #827260.

22 years agoNote the update to Expat 1.95.7.
Fred Drake [Tue, 21 Oct 2003 20:02:46 +0000 (20:02 +0000)] 
Note the update to Expat 1.95.7.

22 years agoUpdate to Expat 1.95.7; there are no changes to the Expat sources.
Fred Drake [Tue, 21 Oct 2003 20:02:35 +0000 (20:02 +0000)] 
Update to Expat 1.95.7; there are no changes to the Expat sources.

22 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Tue, 21 Oct 2003 20:02:35 +0000 (20:02 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release23-maint'.

22 years agoProvide a bit more information to the compiler when building Expat.
Fred Drake [Tue, 21 Oct 2003 20:01:21 +0000 (20:01 +0000)] 
Provide a bit more information to the compiler when building Expat.
This avoids having to modify the Expat sources in any way starting
with Expat 1.95.7.

22 years agoDon't make promises about about the visibility of the induction variable.
Raymond Hettinger [Tue, 21 Oct 2003 18:43:15 +0000 (18:43 +0000)] 
Don't make promises about about the visibility of the induction variable.

22 years agoBackport removal of bogus Py_DECREF() and indentation fix.
Jeremy Hylton [Tue, 21 Oct 2003 18:15:44 +0000 (18:15 +0000)] 
Backport removal of bogus Py_DECREF() and indentation fix.

22 years agoConfigParser.items() and SafeConfigParser.items() no longer return a
Fred Drake [Tue, 21 Oct 2003 16:51:40 +0000 (16:51 +0000)] 
ConfigParser.items() and SafeConfigParser.items() no longer return a
generator.  See SF bug #818861.

22 years agoMake both items() methods return lists; one had changed to return an
Fred Drake [Tue, 21 Oct 2003 16:46:52 +0000 (16:46 +0000)] 
Make both items() methods return lists; one had changed to return an
iterator where it probably shouldn't have.
Closes SF bug #818861.

22 years agoPatch #813391: Reduce limits for amd64 and sparc64.
Martin v. Löwis [Mon, 20 Oct 2003 20:59:45 +0000 (20:59 +0000)] 
Patch #813391: Reduce limits for amd64 and sparc64.

22 years agoBackport 1.19:
Raymond Hettinger [Mon, 20 Oct 2003 20:45:33 +0000 (20:45 +0000)] 
Backport 1.19:

   Use 'predicate = bool' as the default predicate for ifilter[false].

22 years agoBackport checkin:
Walter Dörwald [Mon, 20 Oct 2003 14:34:48 +0000 (14:34 +0000)] 
Backport checkin:
Fix a bunch of typos in documentation, docstrings and comments.
(From SF patch #810751)

22 years agoPatch #823259: Update spec file:
Martin v. Löwis [Sun, 19 Oct 2003 18:34:35 +0000 (18:34 +0000)] 
Patch #823259: Update spec file:
- skip building HTML documentation if it is not available.
- Removal of patches, which can't be referenced from a build
directly from the tar-file.
- Using the RPM tmp directory macro for the buildroot location.
- Ensuring that the clean directive doesn't accidentally
delete the users root directory or another directory.
- --enable-unicode=ucs4 in configure line.

22 years agoPatch #821093: Fix various typos.
Martin v. Löwis [Sun, 19 Oct 2003 07:31:15 +0000 (07:31 +0000)] 
Patch #821093: Fix various typos.

22 years agoRevert previous checkin, as it breaks on Unix.
Martin v. Löwis [Sat, 18 Oct 2003 18:09:18 +0000 (18:09 +0000)] 
Revert previous checkin, as it breaks on Unix.

22 years agoPatch #813200: Properly quote executable on Windows. Fixes #811082.
Martin v. Löwis [Sat, 18 Oct 2003 18:08:03 +0000 (18:08 +0000)] 
Patch #813200: Properly quote executable on Windows. Fixes #811082.

22 years agoPatch #825679: Clarify semantics of .isfoo on empty strings.
Martin v. Löwis [Sat, 18 Oct 2003 09:54:38 +0000 (09:54 +0000)] 
Patch #825679: Clarify semantics of .isfoo on empty strings.

22 years agoPatch #809535: Mention behaviour of seek on text files.
Martin v. Löwis [Sat, 18 Oct 2003 09:37:12 +0000 (09:37 +0000)] 
Patch #809535: Mention behaviour of seek on text files.

22 years agoFix typo found by Lukasz Pankowski:
Thomas Heller [Thu, 16 Oct 2003 19:42:13 +0000 (19:42 +0000)] 
Fix typo found by Lukasz Pankowski:

dir_created -> directory_created

22 years agoNever redistribute MS dlls from the system directory.
Thomas Heller [Thu, 16 Oct 2003 19:02:46 +0000 (19:02 +0000)] 
Never redistribute MS dlls from the system directory.

So I removed all those \windows\system options.

22 years agoAdd mention of fix of bug #780461 for Lib/platform.py .
Brett Cannon [Tue, 14 Oct 2003 22:44:51 +0000 (22:44 +0000)] 
Add mention of fix of bug #780461 for Lib/platform.py .

22 years agoBackport of rev. 1.6 and 1.7 from head.
Brett Cannon [Tue, 14 Oct 2003 22:32:34 +0000 (22:32 +0000)] 
Backport of rev. 1.6 and 1.7 from head.

1.6 was docstring clean-up.
1.7 was a fix for bug #780461 (platform.mac_ver() failing under OS X) and
was flagged as a backport candidate.

22 years agoSF bug #821701: reduce docs neglect a very important piece of information.
Raymond Hettinger [Mon, 13 Oct 2003 17:54:46 +0000 (17:54 +0000)] 
SF bug #821701:  reduce docs neglect a very important piece of information.

Add a note showing which argument is the accumulator.

22 years agoSF #822262, Typo in Doc/api/intro.tex
Neal Norwitz [Mon, 13 Oct 2003 17:48:23 +0000 (17:48 +0000)] 
SF #822262, Typo in Doc/api/intro.tex

22 years agobackport of fix for [819860]
Just van Rossum [Mon, 13 Oct 2003 12:44:22 +0000 (12:44 +0000)] 
backport of fix for [819860]

22 years agoBackport fix to SF bug #820397: __nonzero__() returns 1/0
Raymond Hettinger [Sun, 12 Oct 2003 23:41:21 +0000 (23:41 +0000)] 
Backport fix to SF bug #820397:  __nonzero__() returns 1/0

22 years agoSF patch #819955: Erroneous \seemodule in tarfile docs
Raymond Hettinger [Sun, 12 Oct 2003 02:03:06 +0000 (02:03 +0000)] 
SF patch #819955:  Erroneous \seemodule in tarfile docs
(Contributed by Johannes Gijsbers.)

22 years agoBaseServer, TCPServer: Fixed typo in class docstring.
Barry Warsaw [Thu, 9 Oct 2003 23:49:24 +0000 (23:49 +0000)] 
BaseServer, TCPServer: Fixed typo in class docstring.

22 years agoSF patch #820195: make object.__contains__() returns True or False instead
Raymond Hettinger [Thu, 9 Oct 2003 20:51:07 +0000 (20:51 +0000)] 
SF patch #820195: make object.__contains__() returns True or False instead
   of 1 or 0.

Backport Guido's fix to the default __contains__() and to proxy_has_key()
so they will properly return booleans instead of integers.

22 years agoFix a typo, discovered by Joonas Paalasmaa.
Thomas Heller [Wed, 8 Oct 2003 12:02:44 +0000 (12:02 +0000)] 
Fix a typo, discovered by Joonas Paalasmaa.

22 years agoPatch #817329: Use SC_OPEN_MAX to determine MAXFD.
Martin v. Löwis [Mon, 6 Oct 2003 21:34:14 +0000 (21:34 +0000)] 
Patch #817329: Use SC_OPEN_MAX to determine MAXFD.

22 years agoSF bug #812202: randint is always even
Raymond Hettinger [Sun, 5 Oct 2003 23:35:38 +0000 (23:35 +0000)] 
SF bug #812202:  randint is always even

* Extend rangrange() to return meaningful results when the range is
  larger than 2**53.  Only applies to the MersenneTwister.  WichmannHill
  was left alone in the absence of a proof showing how multiple calls
  could be combined to produce long bit streams.

* WichmannHill was missing from __all__.

22 years agoAdopt Christian Stork's suggested argument order for quantifier examples.
Raymond Hettinger [Sun, 5 Oct 2003 23:05:56 +0000 (23:05 +0000)] 
Adopt Christian Stork's suggested argument order for quantifier examples.

Adopt Jeremy Fincher's suggested function name, "any", instead of "some".

22 years agotwo bugfixes
Anthony Baxter [Sat, 4 Oct 2003 08:03:33 +0000 (08:03 +0000)] 
two bugfixes

22 years agoFreeBSD 4.8 and MacOS X 10.2 have a broken ncurses.h - if you don't
Anthony Baxter [Sat, 4 Oct 2003 07:56:14 +0000 (07:56 +0000)] 
FreeBSD 4.8 and MacOS X 10.2 have a broken ncurses.h - if you don't
define _XOPEN_EXTENDED_SOURCE, the bug isn't triggered. Testing on
FreeBSD shows that nothing is broken by this change.

22 years agomade the SGI INET_ADDRSTRLEN apply for any compiler on Irix. Both the
Anthony Baxter [Sat, 4 Oct 2003 06:55:33 +0000 (06:55 +0000)] 
made the SGI INET_ADDRSTRLEN apply for any compiler on Irix. Both the
SGI compiler and GCC seem to need this.

22 years agopost-release. was going to hold off til Jack got a chance to decide on
Anthony Baxter [Sat, 4 Oct 2003 02:53:10 +0000 (02:53 +0000)] 
post-release. was going to hold off til Jack got a chance to decide on
a Mac release, but given the checkins of the last 12 hours, a bit late.

22 years agoGNUTranslations._parse(): Initialize local variable k so that if the
Barry Warsaw [Sat, 4 Oct 2003 02:39:11 +0000 (02:39 +0000)] 
GNUTranslations._parse(): Initialize local variable k so that if the
first line of a header section isn't an RFC-ish header, it's just
ignored instead of throwing an UnboundLocalError.

Backported.

22 years agoCheck for TclError when reading variables. Fixes #807314.
Martin v. Löwis [Fri, 3 Oct 2003 17:11:45 +0000 (17:11 +0000)] 
Check for TclError when reading variables. Fixes #807314.

22 years ago- don't re-write a SourceForge authenticated CVS root into the
Fred Drake [Fri, 3 Oct 2003 15:20:30 +0000 (15:20 +0000)] 
- don't re-write a SourceForge authenticated CVS root into the
  anonymous flavor unless the user asks for it on the command line
- decompose SourceForge authenticated CVS roots correctly

22 years agoPatch #813445: Add missing socket.IPPROTO_IPV6.
Martin v. Löwis [Fri, 3 Oct 2003 13:55:37 +0000 (13:55 +0000)] 
Patch #813445: Add missing socket.IPPROTO_IPV6.

22 years agoPatch #814764: Undefine xopen_source on OpenBSD 3.4.
Martin v. Löwis [Fri, 3 Oct 2003 13:48:28 +0000 (13:48 +0000)] 
Patch #814764: Undefine xopen_source on OpenBSD 3.4.

22 years agoThis commit was manufactured by cvs2svn to create tag 'r232'. v2.3.2
cvs2svn [Thu, 2 Oct 2003 12:50:18 +0000 (12:50 +0000)] 
This commit was manufactured by cvs2svn to create tag 'r232'.

22 years agotagging for tomorrows release
Anthony Baxter [Thu, 2 Oct 2003 12:50:18 +0000 (12:50 +0000)] 
tagging for tomorrows release

22 years agoPrepare for the release of 2.3.2.
Thomas Heller [Wed, 1 Oct 2003 18:24:06 +0000 (18:24 +0000)] 
Prepare for the release of 2.3.2.

Remove the Wise "Progress Message" when compiling Python files to pyc,
the DOS box is message enough.

22 years agoPrepare for the release of 2.3.2.
Thomas Heller [Wed, 1 Oct 2003 17:35:07 +0000 (17:35 +0000)] 
Prepare for the release of 2.3.2.

I hope 3-Oct-2003 will be the release date.

22 years agoupdated HPUX notes.
Anthony Baxter [Wed, 1 Oct 2003 07:25:31 +0000 (07:25 +0000)] 
updated HPUX notes.

22 years agodoing the dance of the release.
Anthony Baxter [Wed, 1 Oct 2003 06:47:48 +0000 (06:47 +0000)] 
doing the dance of the release.

22 years agopost 2.3.2c1 news
Anthony Baxter [Wed, 1 Oct 2003 06:07:32 +0000 (06:07 +0000)] 
post 2.3.2c1 news

22 years agoadded a warning from Greg about legacy mode with threads.
Anthony Baxter [Wed, 1 Oct 2003 06:02:05 +0000 (06:02 +0000)] 
added a warning from Greg about legacy mode with threads.

22 years agoRevert the last change to this script on the 2.3.x maint branch; the
Fred Drake [Tue, 30 Sep 2003 20:21:03 +0000 (20:21 +0000)] 
Revert the last change to this script on the 2.3.x maint branch; the
rest of the patches needed for that to work are giong to be saved for
post-2.3.2 to avoid introducing new risks in the documentation build
process.

22 years agoWork around minor markup issue: we don't want markup to escape into
Fred Drake [Tue, 30 Sep 2003 20:00:20 +0000 (20:00 +0000)] 
Work around minor markup issue: we don't want markup to escape into
the module index.

22 years agoBump version numbers for the coming release.
Fred Drake [Tue, 30 Sep 2003 16:22:28 +0000 (16:22 +0000)] 
Bump version numbers for the coming release.

22 years agoUpdate to CSS from trunk revision 1.35.
Fred Drake [Tue, 30 Sep 2003 15:43:49 +0000 (15:43 +0000)] 
Update to CSS from trunk revision 1.35.

22 years agoworkaround for openbsd overflow bug. will also apply to the trunk.
Anthony Baxter [Tue, 30 Sep 2003 14:56:50 +0000 (14:56 +0000)] 
workaround for openbsd overflow bug. will also apply to the trunk.

22 years agobackport tim's patch making -rb the default. This will be in 2.3.2 final.
Anthony Baxter [Tue, 30 Sep 2003 09:32:55 +0000 (09:32 +0000)] 
backport tim's patch making -rb the default. This will be in 2.3.2 final.

22 years agorest doesnt like empty sections
Anthony Baxter [Tue, 30 Sep 2003 09:15:55 +0000 (09:15 +0000)] 
rest doesnt like empty sections

22 years agoThis commit was manufactured by cvs2svn to create tag 'r232c1'. v2.3.2c1
cvs2svn [Tue, 30 Sep 2003 07:10:26 +0000 (07:10 +0000)] 
This commit was manufactured by cvs2svn to create tag 'r232c1'.

22 years agoupdates for 2.3.2c1
Anthony Baxter [Tue, 30 Sep 2003 07:10:26 +0000 (07:10 +0000)] 
updates for 2.3.2c1

22 years agonews for 2.3.2c1
Anthony Baxter [Tue, 30 Sep 2003 07:09:58 +0000 (07:09 +0000)] 
news for 2.3.2c1

22 years agoBackport changes from trunk needed to make the GNU info format build.
Fred Drake [Mon, 29 Sep 2003 17:22:33 +0000 (17:22 +0000)] 
Backport changes from trunk needed to make the GNU info format build.

22 years agoUpdated version numbers to 2.3.2.
Jack Jansen [Mon, 29 Sep 2003 15:11:32 +0000 (15:11 +0000)] 
Updated version numbers to 2.3.2.

22 years agoVersion numbers for 2.3.2c1 release.
Thomas Heller [Mon, 29 Sep 2003 10:09:38 +0000 (10:09 +0000)] 
Version numbers for 2.3.2c1 release.

22 years agoBackported from trunk revision 1.16:
Fred Drake [Sun, 28 Sep 2003 22:24:06 +0000 (22:24 +0000)] 
Backported from trunk revision 1.16:
- change computation of VERSION to use tools/getversioninfo; this is
  more reliable than using the $Revision$ expansion
- $RELEASE is no longer needed; we can just use $VERSION now

22 years ago- update pkglist.html more frequently, and explain why that's helpful
Fred Drake [Sun, 28 Sep 2003 16:25:09 +0000 (16:25 +0000)] 
- update pkglist.html more frequently, and explain why that's helpful
- add a comment explaining what pkglist.html is for

22 years agoThe windows build number for 2.3.2c1 is 48.
Thomas Heller [Sat, 27 Sep 2003 20:02:42 +0000 (20:02 +0000)] 
The windows build number for 2.3.2c1 is 48.

22 years agoVersion number 2.3.2c1
Thomas Heller [Sat, 27 Sep 2003 20:01:34 +0000 (20:01 +0000)] 
Version number 2.3.2c1

22 years agore.sub expands escape sequences in it's second argument.
Thomas Heller [Sat, 27 Sep 2003 19:38:25 +0000 (19:38 +0000)] 
re.sub expands escape sequences in it's second argument.

22 years agoTypo: documnetation -> documentation
Thomas Heller [Sat, 27 Sep 2003 19:36:26 +0000 (19:36 +0000)] 
Typo: documnetation -> documentation

22 years agobump the release info
Fred Drake [Sat, 27 Sep 2003 18:10:41 +0000 (18:10 +0000)] 
bump the release info

22 years agoMake sure LaTeX2HTML's $TEXINPUTS variable is initialized to include
Fred Drake [Sat, 27 Sep 2003 16:03:27 +0000 (16:03 +0000)] 
Make sure LaTeX2HTML's $TEXINPUTS variable is initialized to include
directories identified in the TEXINPUTS environment variable.
I think this is the last part of the fix for the version number
problems seen in the documentation for the 2.3.1 release.

22 years agofix for bug #811160 - autoconf vs. hp/ux system header files.
Anthony Baxter [Sat, 27 Sep 2003 08:58:55 +0000 (08:58 +0000)] 
fix for bug #811160 - autoconf vs. hp/ux system header files.

22 years agoupdate one more reference to a file that moved from texinputs/ to
Fred Drake [Sat, 27 Sep 2003 07:48:04 +0000 (07:48 +0000)] 
update one more reference to a file that moved from texinputs/ to
commontex/

22 years agoAdjust the organization a bit and update some of the comments to
Fred Drake [Sat, 27 Sep 2003 07:36:18 +0000 (07:36 +0000)] 
Adjust the organization a bit and update some of the comments to
better explain what's happening.

22 years agolocate the definition of the PWD variable in the same way as the
Fred Drake [Sat, 27 Sep 2003 07:24:22 +0000 (07:24 +0000)] 
locate the definition of the PWD variable in the same way as the
version on the trunk

22 years agoadd commontex/ to the list of directories described here
Fred Drake [Sat, 27 Sep 2003 07:19:59 +0000 (07:19 +0000)] 
add commontex/ to the list of directories described here

22 years agopoint to the new location of the license information
Fred Drake [Sat, 27 Sep 2003 07:16:09 +0000 (07:16 +0000)] 
point to the new location of the license information

22 years agoMove content input files shared among the documents into a new directory
Fred Drake [Sat, 27 Sep 2003 07:14:32 +0000 (07:14 +0000)] 
Move content input files shared among the documents into a new directory
(commontex/), leaving only style support files in texinputs/.  This makes
texinputs/ part of the formatting tools while commontex/ is strictly part
of the actual documentation.

22 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Sat, 27 Sep 2003 07:14:32 +0000 (07:14 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release23-maint'.

22 years ago- use string methods
Fred Drake [Sat, 27 Sep 2003 07:05:44 +0000 (07:05 +0000)] 
- use string methods
- make TEXINPUTS work the way it's supposed to in TeX-ish tools

22 years ago- bump version info
Fred Drake [Sat, 27 Sep 2003 06:01:35 +0000 (06:01 +0000)] 
- bump version info
- backport changes from trunk revisions 1.265, 1.266 (separate
  definition of the mkhowto script location from the invocations of
  the script)

22 years agobump release info
Fred Drake [Sat, 27 Sep 2003 05:38:26 +0000 (05:38 +0000)] 
bump release info

22 years agothe release process, like a river, flows ever onwards
Anthony Baxter [Sat, 27 Sep 2003 05:05:47 +0000 (05:05 +0000)] 
the release process, like a river, flows ever onwards

22 years agobackport Typo: sys.prefex -> sys.prefix
Anthony Baxter [Fri, 26 Sep 2003 16:47:16 +0000 (16:47 +0000)] 
backport Typo: sys.prefex -> sys.prefix
Closes SF# 812152

22 years agobackport [Bug #812936] Correct the documentation for RotatingFileHandler.
Anthony Baxter [Fri, 26 Sep 2003 16:46:22 +0000 (16:46 +0000)] 
backport [Bug #812936] Correct the documentation for RotatingFileHandler.

22 years agobackport of HAVE_FSYNC fix
Skip Montanaro [Thu, 25 Sep 2003 15:21:00 +0000 (15:21 +0000)] 
backport of HAVE_FSYNC fix