]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
canonic(): This used to be equivalent to str() but that caused too
authorBarry Warsaw <barry@python.org>
Thu, 9 Sep 1999 23:24:33 +0000 (23:24 +0000)
committerBarry Warsaw <barry@python.org>
Thu, 9 Sep 1999 23:24:33 +0000 (23:24 +0000)
commit148ffbc886a35751ca65447de5c22387ce7ca6f0
treea8792f826d6acf9312f9fa2220cdd86f6fde05f7
parent2bee8feac614599d172ea4483a17294b81063fdc
canonic(): This used to be equivalent to str() but that caused too
much breakage (esp. in JPython which holds absolute path names in
co_filename already).  This implementation uses os.path.abspath() as a
slightly better way to canonicalize path names.  It implements a
cache.
Lib/bdb.py