]> granicus.if.org Git - python/log
python
21 years agoTypo repair; added some comments and horizontal whitespace.
Tim Peters [Thu, 4 Dec 2003 05:39:43 +0000 (05:39 +0000)]
Typo repair; added some comments and horizontal whitespace.

21 years agoPorted to Universal Headers 3.4.2. Qd and Qt remain to be done.
Jack Jansen [Wed, 3 Dec 2003 23:20:13 +0000 (23:20 +0000)]
Ported to Universal Headers 3.4.2. Qd and Qt remain to be done.

Completely untested.

21 years agoAdding an interface to the high-level Open Scripting Architecture,
Jack Jansen [Wed, 3 Dec 2003 22:34:19 +0000 (22:34 +0000)]
Adding an interface to the high-level Open Scripting Architecture,
by request of Donovan Preston. In return, he promised to use this
to create a Python OSA component, which would turn Python
into a first-class OSA scripting language (like AppleScript itself).

21 years agoFix link
Raymond Hettinger [Wed, 3 Dec 2003 22:33:13 +0000 (22:33 +0000)]
Fix link

21 years agoAdd a standard library tour
Raymond Hettinger [Wed, 3 Dec 2003 22:23:46 +0000 (22:23 +0000)]
Add a standard library tour

21 years agoFix test_unicode_file errors on platforms without Unicode file support,
Mark Hammond [Wed, 3 Dec 2003 22:16:47 +0000 (22:16 +0000)]
Fix test_unicode_file errors on platforms without Unicode file support,
by setting TESTFN_UNICODE_UNENCODEABLE on these platforms.
test_unicode_file only attempts to use the name for testing if not None.

21 years agoBlacklisting LSInit and LSTerm, which are deprecated. Partial fix for 853558.
Jack Jansen [Wed, 3 Dec 2003 20:52:07 +0000 (20:52 +0000)]
Blacklisting LSInit and LSTerm, which are deprecated. Partial fix for 853558.

21 years agoAdd parameters indent, width and depth to pprint.pprint() and pprint.pformat()
Walter Dörwald [Wed, 3 Dec 2003 20:26:05 +0000 (20:26 +0000)]
Add parameters indent, width and depth to pprint.pprint() and pprint.pformat()
and pass them along to the PrettyPrinter constructor.

21 years agoPatch #750542: pprint now will pretty print subclasses of list, tuple
Walter Dörwald [Wed, 3 Dec 2003 20:15:28 +0000 (20:15 +0000)]
Patch #750542: pprint now will pretty print subclasses of list, tuple
and dict too, as long as they don't overwrite __repr__().

21 years agoReduce the size of Big String and Big Binary tests to 2**14 (minus one
Guido van Rossum [Wed, 3 Dec 2003 15:24:02 +0000 (15:24 +0000)]
Reduce the size of Big String and Big Binary tests to 2**14 (minus one
for Big String).  This should make the tests pass on Win98SE.  Note
that the docs only promise lengths up to 2048.  Unfortunately this no
longer tests for the segfault I was seeing earlier, but I'm confident
I've nailed that one. :-)  Fixes SF 852281.  Will backport to 2.3.

21 years agoFix typo. (From SF bug #853064)
Walter Dörwald [Wed, 3 Dec 2003 10:34:57 +0000 (10:34 +0000)]
Fix typo. (From SF bug #853064)

21 years agoAdd test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with
Mark Hammond [Wed, 3 Dec 2003 01:29:56 +0000 (01:29 +0000)]
Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with
unicode filenames"
Reorganize tests into functions so more combinations of
unicode/encoded/ascii can be tested, and while I was at it, upgrade to
unittest based test.

21 years agoAdd TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be
Mark Hammond [Wed, 3 Dec 2003 01:27:23 +0000 (01:27 +0000)]
Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be
encoded using the default file system encoding.

21 years agoFix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenames
Mark Hammond [Wed, 3 Dec 2003 01:22:38 +0000 (01:22 +0000)]
Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenames

21 years agoAn interface to the LaunchServices API.
Jack Jansen [Tue, 2 Dec 2003 23:01:43 +0000 (23:01 +0000)]
An interface to the LaunchServices API.

21 years agodoc nit
Skip Montanaro [Tue, 2 Dec 2003 18:57:47 +0000 (18:57 +0000)]
doc nit

21 years agoOS/2+EMX: make the link() emulation available as os.link()
Andrew MacIntyre [Tue, 2 Dec 2003 12:33:01 +0000 (12:33 +0000)]
OS/2+EMX: make the link() emulation available as os.link()

21 years agoEMX lacks an implementation of link(). As Mailman wants os.link() to
Andrew MacIntyre [Tue, 2 Dec 2003 12:31:09 +0000 (12:31 +0000)]
EMX lacks an implementation of link().  As Mailman wants os.link() to
implement its locking scheme, this module implements a crude link() by
way of copying the source to the destination provided the destination
doesn't already exist.

21 years agoTo find the curses extension as a DLL (on OS/2), we need to adjust the
Andrew MacIntyre [Tue, 2 Dec 2003 12:27:25 +0000 (12:27 +0000)]
To find the curses extension as a DLL (on OS/2), we need to adjust the
library search path to include the extension directory.  Without this,
the curses_panel extension can't find the curses extension/DLL, which
exports some curses symbols to it.

21 years ago- add notes about os.link() emulation;
Andrew MacIntyre [Tue, 2 Dec 2003 12:23:07 +0000 (12:23 +0000)]
- add notes about os.link() emulation;
- various minor cleanups and updates.

21 years ago- add build support for curses extension to be a normal DLL as well as
Andrew MacIntyre [Tue, 2 Dec 2003 12:21:20 +0000 (12:21 +0000)]
- add build support for curses extension to be a normal DLL as well as
  a Python extension, so that the curses_panel extension works.
- minor compiler switch tweak.

21 years agouse same compiler switches as core for extensions
Andrew MacIntyre [Tue, 2 Dec 2003 12:17:59 +0000 (12:17 +0000)]
use same compiler switches as core for extensions

21 years agoSF patch #852140: keyword.py - use __contains__ and bool
Raymond Hettinger [Tue, 2 Dec 2003 07:48:15 +0000 (07:48 +0000)]
SF patch #852140:  keyword.py - use __contains__ and bool

Use a set instead of dict with values equal to one.

21 years agoConvert a 0/1 to False/True.
Raymond Hettinger [Tue, 2 Dec 2003 07:38:30 +0000 (07:38 +0000)]
Convert a 0/1 to False/True.

21 years agoPy_Finalize(): disabled the second call of cyclic gc, and added extensive
Tim Peters [Mon, 1 Dec 2003 21:35:27 +0000 (21:35 +0000)]
Py_Finalize():  disabled the second call of cyclic gc, and added extensive
comments about why both calls to cyclic gc here can cause problems.

I'll backport to 2.3 maint.  Since the calls were introduced in 2.3,
that will be the end of it.

21 years agoConvert path objects to strings in askdirectory. Fixes #852314.
Martin v. Löwis [Mon, 1 Dec 2003 21:04:22 +0000 (21:04 +0000)]
Convert path objects to strings in askdirectory. Fixes #852314.
Backported to 2.3.

21 years agoApply extract functions instead of lambda.
Raymond Hettinger [Mon, 1 Dec 2003 20:12:15 +0000 (20:12 +0000)]
Apply extract functions instead of lambda.

21 years agoRevert previous change. MAL preferred the old version.
Raymond Hettinger [Mon, 1 Dec 2003 13:26:46 +0000 (13:26 +0000)]
Revert previous change.  MAL preferred the old version.

21 years agoAs discussed on python-dev, added two extractor functions to the
Raymond Hettinger [Mon, 1 Dec 2003 13:18:39 +0000 (13:18 +0000)]
As discussed on python-dev, added two extractor functions to the
operator module.

21 years agoSimplifed the code.
Raymond Hettinger [Mon, 1 Dec 2003 10:41:02 +0000 (10:41 +0000)]
Simplifed the code.

21 years agoAdd testcases for _winreg segfault (SF 851056).
Guido van Rossum [Sun, 30 Nov 2003 22:46:18 +0000 (22:46 +0000)]
Add testcases for _winreg segfault (SF 851056).

21 years agoAdd news item for _winreg fix (SF bug 851056).
Guido van Rossum [Sun, 30 Nov 2003 22:10:15 +0000 (22:10 +0000)]
Add news item for _winreg fix (SF bug 851056).

21 years agoRemove all uses of alloca() from this module. The alloca() return value
Guido van Rossum [Sun, 30 Nov 2003 22:01:43 +0000 (22:01 +0000)]
Remove all uses of alloca() from this module.  The alloca() return value
isn't checked, and it *is* possible that a very large alloca() call is
made, e.g. when a large registry value is being read.  I don't know if
alloca() in that case returns NULL or returns a pointer pointing outside
the stack, and I don't want to know -- I've simply replaced all calls to
alloca() with either PyMem_Malloc() or PyString_FromStringAndSize(NULL,)
as appropriate, followed by a size check.  This addresses SF buf 851056.
Will backport to 2.3 next.

21 years agoFix a bug discovered by Kalle Svensson: comparing sys.maxint to
Guido van Rossum [Sat, 29 Nov 2003 23:55:09 +0000 (23:55 +0000)]
Fix a bug discovered by Kalle Svensson: comparing sys.maxint to
2**32-1 makes no sense.  Use 2**31-1 instead.

21 years ago- Removed FutureWarnings related to hex/oct literals and conversions
Guido van Rossum [Sat, 29 Nov 2003 23:52:13 +0000 (23:52 +0000)]
- Removed FutureWarnings related to hex/oct literals and conversions
  and left shifts.  (Thanks to Kalle Svensson for SF patch 849227.)
  This addresses most of the remaining semantic changes promised by
  PEP 237, except for repr() of a long, which still shows the trailing
  'L'.  The PEP appears to promise warnings for operations that
  changed semantics compared to Python 2.3, but this is not
  implemented; we've suffered through enough warnings related to
  hex/oct literals and I think it's best to be silent now.

21 years agoMake sure the list.sort's decorate step unwinds itself before returning
Raymond Hettinger [Fri, 28 Nov 2003 21:43:02 +0000 (21:43 +0000)]
Make sure the list.sort's decorate step unwinds itself before returning
an exception raised by the key function.
(Suggested by Michael Hudson.)

21 years agoSee SF #848614: distutils' msvccompiler now tries to detect that MSVC6
Thomas Heller [Fri, 28 Nov 2003 19:42:56 +0000 (19:42 +0000)]
See SF #848614: distutils' msvccompiler now tries to detect that MSVC6
is installed but the registry settings are incomplete because the gui
has never been run.

Already backported to release23-maint.

21 years agoFix (workaround, actually) for bug #844676: deselecting "show hidden" can
Jack Jansen [Thu, 27 Nov 2003 23:19:33 +0000 (23:19 +0000)]
Fix (workaround, actually) for bug #844676: deselecting "show hidden" can
cause an index error. We now select the first package if this threatens
to happen. Will backport.

21 years agoPackage Mnager error dialogs could refer to hidden packages, which was
Jack Jansen [Thu, 27 Nov 2003 23:12:17 +0000 (23:12 +0000)]
Package Mnager error dialogs could refer to hidden packages, which was
confusing. To be on the safe side we always show hidden packages before
showing error dialogs. Will backport.

21 years ago2.4a0 Package Manager shouldn't attempt to use the 2.3 database.
Jack Jansen [Thu, 27 Nov 2003 22:55:39 +0000 (22:55 +0000)]
2.4a0 Package Manager shouldn't attempt to use the 2.3 database.
Things will definitely change before 2.4, but for now use a slightly
different URL.

21 years agothe "idle" script has moved from Lib/idlelib to Tools/scripts.
Jack Jansen [Thu, 27 Nov 2003 22:54:28 +0000 (22:54 +0000)]
the "idle" script has moved from Lib/idlelib to Tools/scripts.

21 years agoPatch #849350: Update to document bool return values. Backported to 2.3.
Martin v. Löwis [Thu, 27 Nov 2003 19:48:03 +0000 (19:48 +0000)]
Patch #849350: Update to document bool return values. Backported to 2.3.

21 years agoPatch #849595: Add socket.shutdown() constants.
Martin v. Löwis [Thu, 27 Nov 2003 19:40:22 +0000 (19:40 +0000)]
Patch #849595: Add socket.shutdown() constants.

21 years ago- clean up generated HTML
Fred Drake [Wed, 26 Nov 2003 20:55:49 +0000 (20:55 +0000)]
- clean up generated HTML
- make the output more XHTML friendly

21 years agoFix typo and mark-up; shorten text
Andrew M. Kuchling [Wed, 26 Nov 2003 18:05:26 +0000 (18:05 +0000)]
Fix typo and mark-up; shorten text

21 years agoFix typos
Andrew M. Kuchling [Wed, 26 Nov 2003 18:03:48 +0000 (18:03 +0000)]
Fix typos

21 years agoNits from a review of the documentation update.
Raymond Hettinger [Wed, 26 Nov 2003 17:52:45 +0000 (17:52 +0000)]
Nits from a review of the documentation update.

21 years agoAdd version changed doc for addition of fillchar to ljust/rjust/center
Neal Norwitz [Wed, 26 Nov 2003 14:54:56 +0000 (14:54 +0000)]
Add version changed doc for addition of fillchar to ljust/rjust/center

21 years agoAdd optional fillchar argument to ljust(), rjust(), and center() string methods.
Raymond Hettinger [Wed, 26 Nov 2003 08:21:35 +0000 (08:21 +0000)]
Add optional fillchar argument to ljust(), rjust(), and center() string methods.

21 years agoAs discussed on python-dev, banish apply(), buffer(), coerce(), and
Raymond Hettinger [Tue, 25 Nov 2003 21:48:21 +0000 (21:48 +0000)]
As discussed on python-dev, banish apply(), buffer(), coerce(), and
intern() to a separate region in the docs.

21 years agoExpose dict_contains() and PyDict_Contains() with is about 10% faster
Raymond Hettinger [Tue, 25 Nov 2003 21:12:14 +0000 (21:12 +0000)]
Expose dict_contains() and PyDict_Contains() with is about 10% faster
than PySequence_Contains() and more clearly applicable to dicts.

Apply the new function in setobject.c where __contains__ checking is
ubiquitous.

21 years agomake the generated HTML more XHTML friendly
Fred Drake [Tue, 25 Nov 2003 16:21:00 +0000 (16:21 +0000)]
make the generated HTML more XHTML friendly

21 years agoFix a typo introduced at 1.21
Kurt B. Kaiser [Tue, 25 Nov 2003 05:01:00 +0000 (05:01 +0000)]
Fix a typo introduced at 1.21

M IOBinding.py

Backported to 23-maint

21 years agoFactor out more duplicate code.
Raymond Hettinger [Mon, 24 Nov 2003 22:18:49 +0000 (22:18 +0000)]
Factor out more duplicate code.

21 years agoNote the addition of set() and frozenset().
Raymond Hettinger [Mon, 24 Nov 2003 07:14:54 +0000 (07:14 +0000)]
Note the addition of set() and frozenset().

21 years agoKeybindings with the Shift modifier now work correctly. So do bindings
Kurt B. Kaiser [Mon, 24 Nov 2003 05:26:16 +0000 (05:26 +0000)]
Keybindings with the Shift modifier now work correctly.  So do bindings
which use the Space key.  Limit unmodified user keybindings to the
function keys.
Python Bug 775353, IDLEfork Bugs 755647, 761557

Improve error handling during startup if there's no Tkinter.

M NEWS.txt
M PyShell.py
M config-keys.def
M configHandler.py
M keybindingDialog.py

Backport candidate.

21 years agoStop GCC warning about int literal that's so long that it becomes an
Guido van Rossum [Mon, 24 Nov 2003 04:13:13 +0000 (04:13 +0000)]
Stop GCC warning about int literal that's so long that it becomes an
unsigned int (on a 32-bit machine), by adding an explicit 'u' to the
literal (a prime used to improve the hash function for frozenset).

21 years agoSilence GCC warning when asserts are turned off.
Guido van Rossum [Mon, 24 Nov 2003 04:02:13 +0000 (04:02 +0000)]
Silence GCC warning when asserts are turned off.

21 years agoUpdate NEWS.txt to include some items missed earlier. Update the
Kurt B. Kaiser [Mon, 24 Nov 2003 03:23:16 +0000 (03:23 +0000)]
Update NEWS.txt to include some items missed earlier.  Update the
IDLE version to 1.1a0.
Modified Files:
NEWS.txt idlever.py

21 years ago* Checkin remaining documentation
Raymond Hettinger [Mon, 24 Nov 2003 02:57:33 +0000 (02:57 +0000)]
* Checkin remaining documentation
* Add more tests
* Refactor and neaten the code a bit.
* Rename union_update() to update().
* Improve the algorithms (making them a closer to sets.py).

21 years agotest_guess_all_types(): Use a more robust test for checking that
Barry Warsaw [Sun, 23 Nov 2003 16:21:55 +0000 (16:21 +0000)]
test_guess_all_types(): Use a more robust test for checking that
guess_all_extensions() returns (at least) what we expect.  As Jeff
Epler suggests in

http://mail.python.org/pipermail/python-dev/2003-September/038264.html

We use a set to test the results.  This fixes the test when
test_urllib2 is run before test_mimetypes.

21 years ago* Simplify hash function and add test to show effectiveness of the hash
Raymond Hettinger [Sun, 23 Nov 2003 02:49:05 +0000 (02:49 +0000)]
* Simplify hash function and add test to show effectiveness of the hash
  function.

* Add a better test for deepcopying.

* Add tests to show the __init__() function works like it does for list
  and tuple.  Add related test.

* Have shallow copies of frozensets return self.  Add related test.

* Have frozenset(f) return f if f is already a frozenset. Add related test.

* Beefed-up some existing tests.

21 years ago- When method objects have an attribute that can be satisfied either
Guido van Rossum [Sat, 22 Nov 2003 23:55:50 +0000 (23:55 +0000)]
- When method objects have an attribute that can be satisfied either
  by the function object or by the method object, the function
  object's attribute usually wins.  Christian Tismer pointed out that
  that this is really a mistake, because this only happens for special
  methods (like __reduce__) where the method object's version is
  really more appropriate than the function's attribute.  So from now
  on, all method attributes will have precedence over function
  attributes with the same name.

21 years agoExtend temporary hashability to remove() and discard().
Raymond Hettinger [Sat, 22 Nov 2003 03:55:23 +0000 (03:55 +0000)]
Extend temporary hashability to remove() and discard().
Brings the functionality back in line with sets.py.

21 years agoMore words: gave more motivation, and added cautions about the special
Tim Peters [Fri, 21 Nov 2003 22:20:57 +0000 (22:20 +0000)]
More words:  gave more motivation, and added cautions about the special
dangers of trying to iterate over weak dicts.

21 years agoAdd a missing import. Closes SF # 816344.
Barry Warsaw [Fri, 21 Nov 2003 20:28:15 +0000 (20:28 +0000)]
Add a missing import.  Closes SF # 816344.

21 years agoAllow temporary hashability for the __contains__ test.
Raymond Hettinger [Fri, 21 Nov 2003 18:36:54 +0000 (18:36 +0000)]
Allow temporary hashability for the __contains__ test.
(Requested by Alex Martelli.)

21 years agoissubset() and issuperset() to work with general iterables
Raymond Hettinger [Fri, 21 Nov 2003 07:56:36 +0000 (07:56 +0000)]
issubset() and issuperset() to work with general iterables

21 years agoThree minor performance improvements:
Raymond Hettinger [Thu, 20 Nov 2003 22:54:33 +0000 (22:54 +0000)]
Three minor performance improvements:

* Improve the hash function to increase the chance that distinct sets will
  have distinct xor'd hash totals.

* Use PyDict_Merge where possible (it is faster than an equivalent iter/set
  pair).

* Don't rebuild dictionaries where the input already has one.

21 years agoAdd two items
Andrew M. Kuchling [Thu, 20 Nov 2003 22:22:19 +0000 (22:22 +0000)]
Add two items

21 years agotest_applesingle is an expected skip almost anywhere.
Guido van Rossum [Thu, 20 Nov 2003 22:11:29 +0000 (22:11 +0000)]
test_applesingle is an expected skip almost anywhere.

21 years agoSF bug 839548: Bug in type's GC handling causes segfaults.
Tim Peters [Thu, 20 Nov 2003 21:21:46 +0000 (21:21 +0000)]
SF bug 839548:  Bug in type's GC handling causes segfaults.
Also SF patch 843455.

This is a critical bugfix.
I'll backport to 2.3 maint, but not beyond that.  The bugs this fixes
have been there since weakrefs were introduced.

21 years agotest_applesingle is an expected skip on Win32
Raymond Hettinger [Thu, 20 Nov 2003 19:02:02 +0000 (19:02 +0000)]
test_applesingle is an expected skip on Win32

21 years agoAdded some help to OSX/Dist/README.txt, plus all the information
Jack Jansen [Thu, 20 Nov 2003 13:50:28 +0000 (13:50 +0000)]
Added some help to OSX/Dist/README.txt, plus all the information
from the OS9 readme that is still relevant.
Got rid of Distributions/readme.txt.

21 years agoFix typo fix.
Walter Dörwald [Thu, 20 Nov 2003 13:38:01 +0000 (13:38 +0000)]
Fix typo fix.

21 years agoTalk about old code: removed a reference to THINK_C.
Jack Jansen [Thu, 20 Nov 2003 13:33:48 +0000 (13:33 +0000)]
Talk about old code: removed a reference to THINK_C.

21 years agoGot rid of macglue.h, replacing it by pymactoolbox.h where relevant.
Jack Jansen [Thu, 20 Nov 2003 13:31:00 +0000 (13:31 +0000)]
Got rid of macglue.h, replacing it by pymactoolbox.h where relevant.
Cleaned up various things in the toolbox modules.

21 years agoGot rid of macglue.h, moved the little bit that remains relevant
Jack Jansen [Thu, 20 Nov 2003 13:28:19 +0000 (13:28 +0000)]
Got rid of macglue.h, moved the little bit that remains relevant
to pymactoolbox.h (where it should have been in the first place).

21 years agoNo longer used.
Jack Jansen [Thu, 20 Nov 2003 13:27:33 +0000 (13:27 +0000)]
No longer used.

21 years agoGetting rid of all the code inside #ifdef macintosh too.
Jack Jansen [Thu, 20 Nov 2003 01:44:59 +0000 (01:44 +0000)]
Getting rid of all the code inside #ifdef macintosh too.

21 years agoGetting rid of code dependent on GUSI or the MetroWerks compiler.
Jack Jansen [Wed, 19 Nov 2003 22:52:23 +0000 (22:52 +0000)]
Getting rid of code dependent on GUSI or the MetroWerks compiler.

21 years agoGetting rid of one more TARGET_API_MAC_OSX.
Jack Jansen [Wed, 19 Nov 2003 22:43:57 +0000 (22:43 +0000)]
Getting rid of one more TARGET_API_MAC_OSX.

21 years agoPatch #831747: Add skip_accept_encoding parameter to putrequest.
Martin v. Löwis [Wed, 19 Nov 2003 19:51:55 +0000 (19:51 +0000)]
Patch #831747: Add skip_accept_encoding parameter to putrequest.

21 years agoGetting rid of code conditional on TARGET_API_MAC_*.
Jack Jansen [Wed, 19 Nov 2003 16:34:04 +0000 (16:34 +0000)]
Getting rid of code conditional on TARGET_API_MAC_*.

21 years agoPyDoc_STR is always defined nowadays (and has been for quite some time:-)
Jack Jansen [Wed, 19 Nov 2003 16:18:02 +0000 (16:18 +0000)]
PyDoc_STR is always defined nowadays (and has been for quite some time:-)

21 years agoGetting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS:
Jack Jansen [Wed, 19 Nov 2003 16:13:35 +0000 (16:13 +0000)]
Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS:
MacOS9isms.

21 years agoGet rid of MacOS9 support. Paths are still hard-coded, that'll be fixed
Jack Jansen [Wed, 19 Nov 2003 16:12:08 +0000 (16:12 +0000)]
Get rid of MacOS9 support. Paths are still hard-coded, that'll be fixed
later.

21 years agoRemove deprecation of sets.Set.update().
Raymond Hettinger [Wed, 19 Nov 2003 15:52:14 +0000 (15:52 +0000)]
Remove deprecation of sets.Set.update().

21 years agoWITHOUT_FRAMEWORKS conditional code bites the dust: this was for
Jack Jansen [Wed, 19 Nov 2003 15:32:46 +0000 (15:32 +0000)]
WITHOUT_FRAMEWORKS conditional code bites the dust: this was for
pre-carbon MacOS9 support.

21 years agoGone: all this functionality is now in the Carbon.File and Folder modules.
Jack Jansen [Wed, 19 Nov 2003 15:30:41 +0000 (15:30 +0000)]
Gone: all this functionality is now in the Carbon.File and Folder modules.

21 years agoGetting rid of support for the ancient Apple MPW compiler.
Jack Jansen [Wed, 19 Nov 2003 15:24:47 +0000 (15:24 +0000)]
Getting rid of support for the ancient Apple MPW compiler.

21 years agoMacOS9 support is gone.
Jack Jansen [Wed, 19 Nov 2003 14:55:33 +0000 (14:55 +0000)]
MacOS9 support is gone.

21 years agoRemoving the obvious OS9-only documents§
Jack Jansen [Wed, 19 Nov 2003 14:54:25 +0000 (14:54 +0000)]
Removing the obvious OS9-only documents§

21 years agoGetting rid of support for MacOS9 and earlier. This is the first step,
Jack Jansen [Wed, 19 Nov 2003 14:34:18 +0000 (14:34 +0000)]
Getting rid of support for MacOS9 and earlier. This is the first step,
and the biggest in size, but probably the easiest. Hunting through the
source code comes next.

21 years agoTemporary fix for buildon on both Panther and Jaguar.
Jack Jansen [Wed, 19 Nov 2003 13:56:40 +0000 (13:56 +0000)]
Temporary fix for buildon on both Panther and Jaguar.

21 years agoMoved various files over from the release23-maint branch.
Jack Jansen [Wed, 19 Nov 2003 13:53:55 +0000 (13:53 +0000)]
Moved various files over from the release23-maint branch.

21 years agoUpped version
Jack Jansen [Wed, 19 Nov 2003 13:50:21 +0000 (13:50 +0000)]
Upped version

21 years agoUpped version numbers, and converted to UTF-16.
Jack Jansen [Wed, 19 Nov 2003 13:49:28 +0000 (13:49 +0000)]
Upped version numbers, and converted to UTF-16.

21 years agoUpped.
Jack Jansen [Wed, 19 Nov 2003 13:48:13 +0000 (13:48 +0000)]
Upped.

21 years agoThis file is utf-16, not utf-8 (or ascii).
Jack Jansen [Wed, 19 Nov 2003 13:47:22 +0000 (13:47 +0000)]
This file is utf-16, not utf-8 (or ascii).