]> granicus.if.org Git - python/log
python
20 years agobdist_wininst does now properly handle unicode strings or byte strings
Thomas Heller [Fri, 23 Jul 2004 19:44:29 +0000 (19:44 +0000)]
bdist_wininst does now properly handle unicode strings or byte strings
with umlauts in the author argument and others.

Fixes sf # 993943.

20 years agoAdd news item for u'%s' change.
Marc-André Lemburg [Fri, 23 Jul 2004 16:14:57 +0000 (16:14 +0000)]
Add news item for u'%s' change.

20 years agoLet u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__().
Marc-André Lemburg [Fri, 23 Jul 2004 16:13:25 +0000 (16:13 +0000)]
Let u'%s' % obj try obj.__unicode__() first and fallback to obj.__str__().

20 years agoFix an uncorrect function prototype.
Thomas Heller [Fri, 23 Jul 2004 14:49:52 +0000 (14:49 +0000)]
Fix an uncorrect function prototype.
Will backport to release23-maint.

BTW: Shouldn't it read PY_LONG_LONG instead of 'long long' ?

20 years agoRemove copyright notices from gencodec.py output.
Marc-André Lemburg [Fri, 23 Jul 2004 10:09:57 +0000 (10:09 +0000)]
Remove copyright notices from gencodec.py output.

The script was originally used to create the initial set of
codecs (and these were (c) CNRI). While the script itself still
is (c) CNRI, the output certainly isn't anymore.

20 years agoWhitespace normalization.
Tim Peters [Fri, 23 Jul 2004 02:50:10 +0000 (02:50 +0000)]
Whitespace normalization.

20 years agoA few trivial edits.
Tim Peters [Fri, 23 Jul 2004 02:48:24 +0000 (02:48 +0000)]
A few trivial edits.

20 years agoSF bug #995983 and #995987: Documentation nits.
Raymond Hettinger [Thu, 22 Jul 2004 19:33:53 +0000 (19:33 +0000)]
SF bug #995983 and #995987:  Documentation nits.

20 years agoThis change implements the following gettext features, as
Gustavo Niemeyer [Thu, 22 Jul 2004 18:44:01 +0000 (18:44 +0000)]
This change implements the following gettext features, as
discussed recently in python-dev:

In _locale module:

- bind_textdomain_codeset() binding

In gettext module:

- bind_textdomain_codeset() function
- lgettext(), lngettext(), ldgettext(), ldngettext(),
  which return translated strings encoded in
  preferred system encoding, if
  bind_textdomain_codeset() was not used.
- Added equivalent functionality in translate()
  function and catalog classes.

Every change was also documented.

20 years agoSF bug 994255: Py_RETURN_NONE causes too much warnings
Tim Peters [Thu, 22 Jul 2004 01:46:43 +0000 (01:46 +0000)]
SF bug 994255: Py_RETURN_NONE causes too much warnings

Rewrote Py_RETURN_{NONE, TRUE, FALSE} to expand to comma expressions
rather than "do {} while(0)" thingies.  The OP complained because he
likes using MS /W4 sometimes, and then all his uses of these things
generate nuisance warnings about testing a constant expression (in
the "while(0)" part).  Comma expressions don't have this problem
(although it's a lucky accident that comma expressions suffice for these
macros!).

20 years agoSF patch 995225: tarfile.py fix for bug #990325
Tim Peters [Thu, 22 Jul 2004 00:54:37 +0000 (00:54 +0000)]
SF patch 995225:  tarfile.py fix for bug #990325

Removes CVS keywords from this binary file, so that test_tarfile passes
regardless of whether Python is checked out with -kk.

20 years ago[Bug #990524] Fix typo
Andrew M. Kuchling [Wed, 21 Jul 2004 21:34:45 +0000 (21:34 +0000)]
[Bug #990524] Fix typo

20 years agoelaborate package data test to make sure get_outputs() gives the right
Fred Drake [Wed, 21 Jul 2004 18:53:06 +0000 (18:53 +0000)]
elaborate package data test to make sure get_outputs() gives the right
results when byte-code compilation is requested (in particular, make
sure that package data doesn't get a bogus byte-code listing
generated)

20 years agorevise wording to avoid confusion for non-native English speakers
Fred Drake [Wed, 21 Jul 2004 17:36:47 +0000 (17:36 +0000)]
revise wording to avoid confusion for non-native English speakers
(second occurance of the same wording)

20 years agorevise wording to avoid confusion for non-native English speakers
Fred Drake [Wed, 21 Jul 2004 17:18:19 +0000 (17:18 +0000)]
revise wording to avoid confusion for non-native English speakers

20 years agoAdded an extra example to the basic example section
Vinay Sajip [Wed, 21 Jul 2004 14:40:11 +0000 (14:40 +0000)]
Added an extra example to the basic example section

20 years agoUpdate Decimal section to match the current module
Andrew M. Kuchling [Wed, 21 Jul 2004 13:00:06 +0000 (13:00 +0000)]
Update Decimal section to match the current module

20 years agoAdd PEP 331; add constancy of None; minor edits
Andrew M. Kuchling [Wed, 21 Jul 2004 12:41:38 +0000 (12:41 +0000)]
Add PEP 331; add constancy of None; minor edits

20 years agoPatch #984714: Properly diagnose E_DECODE errors.
Martin v. Löwis [Wed, 21 Jul 2004 05:35:02 +0000 (05:35 +0000)]
Patch #984714: Properly diagnose E_DECODE errors.
Backported to 2.3.

20 years agoThread.__delete: Discussion of internal obscurities belongs in comments
Tim Peters [Wed, 21 Jul 2004 03:36:52 +0000 (03:36 +0000)]
Thread.__delete:  Discussion of internal obscurities belongs in comments
rather than in docstrings.  Rewrote so that _active_limbo_lock is released
no matter what happens (it could have been left locked if _sys got None'd
out).  Use "in" in preference to has_key() for dict lookup.  Don't bother
looking for 'dummy_threading' in sys.modules unless KeyError is raised.
Since the heart of the method is the del, do that in only one place.

20 years agoEditorWindow.py was not finding the .chm help file on Windows. Typo
Kurt B. Kaiser [Wed, 21 Jul 2004 03:33:58 +0000 (03:33 +0000)]
EditorWindow.py was not finding the .chm help file on Windows.  Typo
at Rev 1.54.  Python Bug 990954

20 years agofix typo, highlight True/False correctly
Skip Montanaro [Wed, 21 Jul 2004 02:47:10 +0000 (02:47 +0000)]
fix typo, highlight True/False correctly

20 years agoFix bug where a KeyError was raised if -O was being used for the interpreter
Brett Cannon [Wed, 21 Jul 2004 02:21:58 +0000 (02:21 +0000)]
Fix bug where a KeyError was raised if -O was being used for the interpreter
and Thread.__delete() was called after a Thread instance was created.  Problem
resulted from a currentThread() call in an 'assert' statement being optimized
out and dummy_thread.get_ident() always returning -1 and thus overwriting the
entry for the _MainThread() instance created in 'threading' at import time.

Closes bug #993394.

20 years agoSF #994605, fcntl example is broken
Neal Norwitz [Wed, 21 Jul 2004 01:41:14 +0000 (01:41 +0000)]
SF #994605, fcntl example is broken
The last call to fcntl (which wasn't changed) doesn't work for me, but
the first part works now.

Backport candidate.

20 years agoFix SF #994580, typo in time.tzsets docstring. Backport candidate
Neal Norwitz [Tue, 20 Jul 2004 22:34:37 +0000 (22:34 +0000)]
Fix SF #994580, typo in time.tzsets docstring.  Backport candidate

20 years agoRemove unused variables
Neal Norwitz [Tue, 20 Jul 2004 22:31:34 +0000 (22:31 +0000)]
Remove unused variables

20 years agoSF #918101, allow files >= 8 GB using GNU extension
Neal Norwitz [Tue, 20 Jul 2004 22:23:02 +0000 (22:23 +0000)]
SF #918101, allow files >= 8 GB using GNU extension

20 years agoSF #857297 and 916874, improve handling of hard links when extracting
Neal Norwitz [Tue, 20 Jul 2004 22:07:44 +0000 (22:07 +0000)]
SF #857297 and 916874, improve handling of hard links when extracting

20 years agoSF #846659, fix bufsize violation and GNU longname/longlink extensions
Neal Norwitz [Tue, 20 Jul 2004 21:54:18 +0000 (21:54 +0000)]
SF #846659, fix bufsize violation and GNU longname/longlink extensions

20 years agoAdd Itanium targets.
Martin v. Löwis [Tue, 20 Jul 2004 14:37:48 +0000 (14:37 +0000)]
Add Itanium targets.

20 years agoFix bug in addsitedir() to properly handle the lack of a second argument.
Brett Cannon [Tue, 20 Jul 2004 02:28:28 +0000 (02:28 +0000)]
Fix bug in addsitedir() to properly handle the lack of a second argument.
Fixed to keep backwards-compatibility for the undocumented function.

Closes bug #986795.

20 years agoossaudiodev is available on FreeBSD 5 too.
Hye-Shik Chang [Tue, 20 Jul 2004 01:42:06 +0000 (01:42 +0000)]
ossaudiodev is available on FreeBSD 5 too.

20 years agoPatch #984654: Add more address family constants.
Martin v. Löwis [Mon, 19 Jul 2004 17:01:20 +0000 (17:01 +0000)]
Patch #984654: Add more address family constants.

20 years agoMove comment that goes along with audioop
Neal Norwitz [Mon, 19 Jul 2004 16:55:07 +0000 (16:55 +0000)]
Move comment that goes along with audioop

20 years agoPatch #993173: Enable audioop on 64-bit platforms.
Martin v. Löwis [Mon, 19 Jul 2004 16:42:20 +0000 (16:42 +0000)]
Patch #993173: Enable audioop on 64-bit platforms.

20 years agoPatch #993187: Make rstrip doc similar to lstrip.
Martin v. Löwis [Mon, 19 Jul 2004 16:34:01 +0000 (16:34 +0000)]
Patch #993187: Make rstrip doc similar to lstrip.
Backported to 2.3.

20 years agoCheck the type of values returned by __int__, __float__, __long__,
Neil Schemenauer [Mon, 19 Jul 2004 16:29:17 +0000 (16:29 +0000)]
Check the type of values returned by __int__, __float__, __long__,
__oct__, and __hex__.  Raise TypeError if an invalid type is
returned.  Note that PyNumber_Int and PyNumber_Long can still
return ints or longs.  Fixes SF bug #966618.

20 years agoDon't return spurious empty fields if 'keep_empty_values' is True.
Neil Schemenauer [Mon, 19 Jul 2004 15:38:11 +0000 (15:38 +0000)]
Don't return spurious empty fields if 'keep_empty_values' is True.
Fixes SF bug #990307.

20 years agoThe binary layout of cfgdata has changed, so the magic number has to
Thomas Heller [Mon, 19 Jul 2004 10:07:28 +0000 (10:07 +0000)]
The binary layout of cfgdata has changed, so the magic number has to
change as well.
Recompiled binaries after this change.

20 years agoThe binary layout of cfgdata has changed, so the magic number has to
Thomas Heller [Mon, 19 Jul 2004 09:57:58 +0000 (09:57 +0000)]
The binary layout of cfgdata has changed, so the magic number has to
change as well.
Display an additional message box when a mismatch is detected.

20 years agoThe binary layout of cfgdata has changed, so the magic number has to
Thomas Heller [Mon, 19 Jul 2004 09:45:46 +0000 (09:45 +0000)]
The binary layout of cfgdata has changed, so the magic number has to
change as well.  Add a comment explaining this.

20 years agotest_codecmaps_hk is also expected to be skipped when a mapping file
Hye-Shik Chang [Mon, 19 Jul 2004 06:39:37 +0000 (06:39 +0000)]
test_codecmaps_hk is also expected to be skipped when a mapping file
isn't available. (Spotted by Raymond Hettinger)

20 years agoGet doc to build (add missing backslash)
Neal Norwitz [Mon, 19 Jul 2004 01:39:54 +0000 (01:39 +0000)]
Get doc to build (add missing backslash)

20 years agoSilence a GCC unused variable warning in debug builds.
Raymond Hettinger [Mon, 19 Jul 2004 00:10:24 +0000 (00:10 +0000)]
Silence a GCC unused variable warning in debug builds.

20 years agoDon't try to create the directory if it already exists, otherwise the test fails
Neal Norwitz [Mon, 19 Jul 2004 00:08:59 +0000 (00:08 +0000)]
Don't try to create the directory if it already exists, otherwise the test fails

20 years agoRecord that FCNTL.py has gone away; remove FCNTL hack in tempfile.py;
Tim Peters [Sun, 18 Jul 2004 23:58:17 +0000 (23:58 +0000)]
Record that FCNTL.py has gone away; remove FCNTL hack in tempfile.py;
another hack remains in test___all__.py, but the problem that one
addresses is more general than *just* FCNTL, so leaving it alone.

20 years agoRemove FCNTL.py, following python-dev discussion
Andrew M. Kuchling [Sun, 18 Jul 2004 23:44:58 +0000 (23:44 +0000)]
Remove FCNTL.py, following python-dev discussion

20 years agotest_sf_950057's gen1() used an assert statement, which caused the test
Tim Peters [Sun, 18 Jul 2004 17:34:03 +0000 (17:34 +0000)]
test_sf_950057's gen1() used an assert statement, which caused the test
to fail when running with -O.  Changed to raise AssertionError instead.

20 years agoWhitespace normalization. Had to break guido's lock on rev 1.1 to do
Tim Peters [Sun, 18 Jul 2004 16:56:37 +0000 (16:56 +0000)]
Whitespace normalization.  Had to break guido's lock on rev 1.1 to do
this, but I'm sure it wasn't locked intentionally.

20 years agoTeach VC6 project file about the new cjkcodecs structure.
Hye-Shik Chang [Sun, 18 Jul 2004 15:36:31 +0000 (15:36 +0000)]
Teach VC6 project file about the new cjkcodecs structure.

20 years agoReplace an extern magic to assigning declared pointer from array's.
Hye-Shik Chang [Sun, 18 Jul 2004 15:02:45 +0000 (15:02 +0000)]
Replace an extern magic to assigning declared pointer from array's.
And unifdef(1) compatibility blocks.

20 years agoOops -kb bit had been in my CVS/Entries. Converting it to plain
Hye-Shik Chang [Sun, 18 Jul 2004 08:53:18 +0000 (08:53 +0000)]
Oops -kb bit had been in my CVS/Entries.  Converting it to plain
text again.  Sorry.

20 years agocjkcodecs/mapdata_*.c are removed by the recent import CJKCodecs 1.1.
Hye-Shik Chang [Sun, 18 Jul 2004 08:45:15 +0000 (08:45 +0000)]
cjkcodecs/mapdata_*.c are removed by the recent import CJKCodecs 1.1.

20 years agoRemove unused CNS-11643 mapping which shouldn't merged into main Python
Hye-Shik Chang [Sun, 18 Jul 2004 08:35:43 +0000 (08:35 +0000)]
Remove unused CNS-11643 mapping which shouldn't merged into main Python
yet.

20 years agoRepair bizarre generated Python.
Tim Peters [Sun, 18 Jul 2004 06:35:21 +0000 (06:35 +0000)]
Repair bizarre generated Python.

20 years agoIgnore more encoding input files.
Tim Peters [Sun, 18 Jul 2004 06:27:59 +0000 (06:27 +0000)]
Ignore more encoding input files.

20 years agoIgnore input files for encoding tests (these aren't checked in).
Tim Peters [Sun, 18 Jul 2004 06:27:12 +0000 (06:27 +0000)]
Ignore input files for encoding tests (these aren't checked in).

20 years agoWhitespace normalization, via reindent.py.
Tim Peters [Sun, 18 Jul 2004 06:25:50 +0000 (06:25 +0000)]
Whitespace normalization, via reindent.py.

20 years agoWhitespace normalization, via reindent.py.
Tim Peters [Sun, 18 Jul 2004 06:16:08 +0000 (06:16 +0000)]
Whitespace normalization, via reindent.py.

20 years agoWhitespace normalization. Ran reindent.py over the entire source tree.
Tim Peters [Sun, 18 Jul 2004 05:56:09 +0000 (05:56 +0000)]
Whitespace normalization.  Ran reindent.py over the entire source tree.

20 years agoWTF is with this script? It contained illegal syntax and illegal
Tim Peters [Sun, 18 Jul 2004 05:31:31 +0000 (05:31 +0000)]
WTF is with this script?  It contained illegal syntax and illegal
indentation -- it could never have been run, under any version of Python.

20 years agoWoo hoo! All the encoding tests pass on Windows (& I downloaded the
Tim Peters [Sun, 18 Jul 2004 05:06:31 +0000 (05:06 +0000)]
Woo hoo!  All the encoding tests pass on Windows (& I downloaded the
14 input files needed to run all of them).

20 years agoRepair MS compiler warning about signed-vs-unsigned mismatch. The plane
Tim Peters [Sun, 18 Jul 2004 04:34:33 +0000 (04:34 +0000)]
Repair MS compiler warning about signed-vs-unsigned mismatch.  The plane
and width clearly don't need to be signed.

20 years agoMore cjkcodecs recovery: Python at least compiles on Window again.
Tim Peters [Sun, 18 Jul 2004 04:30:37 +0000 (04:30 +0000)]
More cjkcodecs recovery:  Python at least compiles on Window again.

20 years agoAdded a comment explaining the extern ugliness.
Tim Peters [Sun, 18 Jul 2004 04:26:10 +0000 (04:26 +0000)]
Added a comment explaining the extern ugliness.

20 years agoChanged the "predefinitions" of codec_list and mapping_list from static
Tim Peters [Sun, 18 Jul 2004 04:20:15 +0000 (04:20 +0000)]
Changed the "predefinitions" of codec_list and mapping_list from static
to extern.  It's not legal C to say

     static whatever[];

because the size isn't given.  Presumably this is a gcc extension.

20 years agoTeach VC 7.1 about the new cjkcodecs structure. This still doesn't compile
Tim Peters [Sun, 18 Jul 2004 03:48:47 +0000 (03:48 +0000)]
Teach VC 7.1 about the new cjkcodecs structure.  This still doesn't compile
on Windows, because of non-standard code in cjkcodes.h, but it's *almost*
there.

20 years agoBring CJKCodecs 1.1 into trunk. This completely reorganizes source
Hye-Shik Chang [Sun, 18 Jul 2004 03:06:29 +0000 (03:06 +0000)]
Bring CJKCodecs 1.1 into trunk.  This completely reorganizes source
and installed layouts to make maintenance simple and easy.  And it
also adds four new codecs; big5hkscs, euc-jis-2004, shift-jis-2004
and iso2022-jp-2004.

20 years agoOops! Restored the pickle test to test_pyclbr, but changed types.py so
Tim Peters [Sun, 18 Jul 2004 00:08:11 +0000 (00:08 +0000)]
Oops!  Restored the pickle test to test_pyclbr, but changed types.py so
that pyclbr doesn't need to special-case modules that do "from types
import *".

20 years agoThe Darwin-specific getproxies_internetconfig() was added to urllib,
Tim Peters [Sun, 18 Jul 2004 00:00:03 +0000 (00:00 +0000)]
The Darwin-specific getproxies_internetconfig() was added to urllib,
causing test_pyclbr to fail on all other platforms.  Added that routine
to the urllib "ignore" list.
Removed the special case for "g" in the pickle module.  types.py deletes
"g" from its namespace; maybe it didn't always.  Whatever, the special
case isn't needed today.

20 years agoTemporarily add the Tcl/Tk bin directory to PATH, so that test_tcl can
Tim Peters [Sat, 17 Jul 2004 23:44:32 +0000 (23:44 +0000)]
Temporarily add the Tcl/Tk bin directory to PATH, so that test_tcl can
actually run.  When it fails, it pops up a dialog box, and the test run
hangs waiting for you to click OK -- that sucks too much to bear.

20 years agoUpgrade None assignment SyntaxWarning to a SyntaxError.
Raymond Hettinger [Sat, 17 Jul 2004 21:46:25 +0000 (21:46 +0000)]
Upgrade None assignment SyntaxWarning to a SyntaxError.

20 years agoChange CJK encoding aliases to their most popular variation of
Hye-Shik Chang [Sat, 17 Jul 2004 14:44:43 +0000 (14:44 +0000)]
Change CJK encoding aliases to their most popular variation of
hyphen and underscores in consistency of non-CJK aliases.
(Spotted by Mike Brown at SF #969415)

20 years agoFix comment typo
Andrew M. Kuchling [Sat, 17 Jul 2004 14:44:17 +0000 (14:44 +0000)]
Fix comment typo

20 years agoAdd a definition (found in the Debian patches for 2.3.4)
Andrew M. Kuchling [Sat, 17 Jul 2004 14:43:32 +0000 (14:43 +0000)]
Add a definition (found in the Debian patches for 2.3.4)

20 years agoSF #990497: Fix a trivial typo in sorted() example.
Hye-Shik Chang [Sat, 17 Jul 2004 13:53:48 +0000 (13:53 +0000)]
SF #990497: Fix a trivial typo in sorted() example.
(Submitted by Daniel Pezely)

20 years agoMinor edits
Andrew M. Kuchling [Sat, 17 Jul 2004 13:35:43 +0000 (13:35 +0000)]
Minor edits

20 years agooptimize_code(): Repaired gross error in new special-casing for None.
Tim Peters [Sat, 17 Jul 2004 05:00:52 +0000 (05:00 +0000)]
optimize_code():  Repaired gross error in new special-casing for None.
The preceding case statement was missing a terminating "break" stmt,
so fell into the new code by mistake.  This caused uncaught out-of-bounds
accesses to the "names" tuple, leading to a variety of insane behaviors.

20 years agoSupply missing word in new datetime docs, aggravated by copy-paste-edit.
Tim Peters [Sat, 17 Jul 2004 01:42:26 +0000 (01:42 +0000)]
Supply missing word in new datetime docs, aggravated by copy-paste-edit.

20 years agoThe new distutils features justify a new version number, imo.
Thomas Heller [Fri, 16 Jul 2004 18:14:37 +0000 (18:14 +0000)]
The new distutils features justify a new version number, imo.

If someone has other ideas for the numbering scheme, please change to
something else (1.1.0 ?).

20 years agoThe interpreter popup was never filled with any data, fixed.
Jack Jansen [Fri, 16 Jul 2004 12:36:02 +0000 (12:36 +0000)]
The interpreter popup was never filled with any data, fixed.
Fixes #775878.

20 years agoMade preference window resizable (and do the most logical thing on resize)
Jack Jansen [Fri, 16 Jul 2004 12:35:06 +0000 (12:35 +0000)]
Made preference window resizable (and do the most logical thing on resize)

20 years agoCleaned up list of interpreters.
Jack Jansen [Fri, 16 Jul 2004 12:34:23 +0000 (12:34 +0000)]
Cleaned up list of interpreters.

20 years agoTreat None as a constant.
Raymond Hettinger [Fri, 16 Jul 2004 12:16:48 +0000 (12:16 +0000)]
Treat None as a constant.

20 years agoFix for #779167: use InternetConfig proxy settings on MacOSX (in addition
Jack Jansen [Fri, 16 Jul 2004 11:45:00 +0000 (11:45 +0000)]
Fix for #779167: use InternetConfig proxy settings on MacOSX (in addition
to unix-style).

20 years agoDon't hardcode "Python" as the framework name, we have a variable for it:
Jack Jansen [Fri, 16 Jul 2004 08:43:47 +0000 (08:43 +0000)]
Don't hardcode "Python" as the framework name, we have a variable for it:
$PYTHONFRAMEWORK.

20 years agoFix for #795649: explain how to use TextEdit for editing Python code.
Jack Jansen [Thu, 15 Jul 2004 22:38:06 +0000 (22:38 +0000)]
Fix for #795649: explain how to use TextEdit for editing Python code.

20 years agoFix for 838140: don't call NSUnlinkModule when we fail to find our
Jack Jansen [Thu, 15 Jul 2004 22:28:48 +0000 (22:28 +0000)]
Fix for 838140: don't call NSUnlinkModule when we fail to find our
expected entrypoint. The unlinking will crash the application if the
module contained ObjC code. The price of this is small: a little wasted
memory, and only in a case than isn't expected to occur often.

20 years agoAfter more than two years of puzzlement Jurjen Bos found the reason for
Jack Jansen [Thu, 15 Jul 2004 22:08:33 +0000 (22:08 +0000)]
After more than two years of puzzlement Jurjen Bos found the reason for
the double-scroll problem: when you pass a tracker function to TrackControl
you shouldn't call your hit function again afterwards. Fixes #711989.

20 years agoApply VISIT macro.
Raymond Hettinger [Thu, 15 Jul 2004 21:32:18 +0000 (21:32 +0000)]
Apply VISIT macro.

20 years ago- Added a note about fixversions.py
Jack Jansen [Thu, 15 Jul 2004 21:30:41 +0000 (21:30 +0000)]
- Added a note about fixversions.py
- Ran it.

20 years agoCall the correct tp_dealloc.
Jack Jansen [Thu, 15 Jul 2004 21:24:07 +0000 (21:24 +0000)]
Call the correct tp_dealloc.

20 years ago_localemodule now needs to be linked with CoreFoundation on darwin.
Jack Jansen [Thu, 15 Jul 2004 19:56:25 +0000 (19:56 +0000)]
_localemodule now needs to be linked with CoreFoundation on darwin.

20 years ago[Patch #982681] Apply this patch correctly; makes set_reuse_addr() work on Windows
Andrew M. Kuchling [Thu, 15 Jul 2004 16:17:07 +0000 (16:17 +0000)]
[Patch #982681] Apply this patch correctly; makes set_reuse_addr() work on Windows

20 years agoA script to fix version strings in .plist files.
Jack Jansen [Thu, 15 Jul 2004 16:03:55 +0000 (16:03 +0000)]
A script to fix version strings in .plist files.

20 years agoMoved SunPro warning suppression into pyport.h and out of individual
Nicholas Bastin [Thu, 15 Jul 2004 15:54:05 +0000 (15:54 +0000)]
Moved SunPro warning suppression into pyport.h and out of individual
modules and objects.

20 years agoAllow overriding of bgen pathnames in an optional module bgenlocationcustomize.
Jack Jansen [Thu, 15 Jul 2004 15:06:07 +0000 (15:06 +0000)]
Allow overriding of bgen pathnames in an optional module bgenlocationcustomize.
Editing of bgenlocations.py isn't easy if your Python was supplied by Apple.

20 years agoThe CF inheritance could cause double frees of the underlying objects.
Jack Jansen [Thu, 15 Jul 2004 14:25:48 +0000 (14:25 +0000)]
The CF inheritance could cause double frees of the underlying objects.
Fixed.

20 years agoCFStringGetUnicode() returned an extra null character at the end of the string.
Jack Jansen [Thu, 15 Jul 2004 14:11:30 +0000 (14:11 +0000)]
CFStringGetUnicode() returned an extra null character at the end of the string.
fixed.

20 years agoMake CF module PEP253 based (finally).
Jack Jansen [Thu, 15 Jul 2004 13:42:06 +0000 (13:42 +0000)]
Make CF module PEP253 based (finally).