diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-01-09 16:26:23 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-01-09 16:26:23 (GMT) |
commit | 4b76ba3280634886356782c0ecc66ac08895826a (patch) | |
tree | d463e8783dff5d089e370dbc96e696f038e89b68 /Mac/Lib/test | |
parent | 5bc697dd31afa898ddae9d0919b50e94f3426148 (diff) | |
download | cpython-4b76ba3280634886356782c0ecc66ac08895826a.zip cpython-4b76ba3280634886356782c0ecc66ac08895826a.tar.gz cpython-4b76ba3280634886356782c0ecc66ac08895826a.tar.bz2 |
High-level interface to Internet Config
(and readability fix to icgluetest.py)
Diffstat (limited to 'Mac/Lib/test')
-rw-r--r-- | Mac/Lib/test/icgluetest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Lib/test/icgluetest.py b/Mac/Lib/test/icgluetest.py index 4552943..323f9e7 100644 --- a/Mac/Lib/test/icgluetest.py +++ b/Mac/Lib/test/icgluetest.py @@ -18,7 +18,7 @@ for i in range(1, numprefs+1): h.data = "" attrs = ici.ICFindPrefHandle(key, h) print "Attr: ", attrs - print "Data: ", h.data + print "Data: ", `h.data[:64]` ici.ICEnd() del ici |