diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-03 14:12:36 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-03 14:12:36 (GMT) |
commit | 446b3b2d58ede771e7cbfaa1b09eba1021d5a472 (patch) | |
tree | 04a50cce5f8e5944f306b52e9a25a89e37cdc751 /Mac | |
parent | 83e6ae9b12bf2c7d051bec451daa86fd1466b21d (diff) | |
download | cpython-446b3b2d58ede771e7cbfaa1b09eba1021d5a472.zip cpython-446b3b2d58ede771e7cbfaa1b09eba1021d5a472.tar.gz cpython-446b3b2d58ede771e7cbfaa1b09eba1021d5a472.tar.bz2 |
ICFindConfigFile isn't needed, and it's gone under carbon.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Lib/test/icgluetest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mac/Lib/test/icgluetest.py b/Mac/Lib/test/icgluetest.py index 323f9e7..97c0c74 100644 --- a/Mac/Lib/test/icgluetest.py +++ b/Mac/Lib/test/icgluetest.py @@ -1,10 +1,11 @@ -"""Test icglue module by printing all preferences""" +"""Test icglue module by printing all preferences. Note that the ic module, +not the icglue module, is what you should normally use.""" import icglue import Res ici = icglue.ICStart('Pyth') -ici.ICFindConfigFile() +#ici.ICFindConfigFile() h = Res.Resource("") ici.ICBegin(1) |