'inspect' was not listing the functions in a module properly if the module was

reached through a symlink (was comparing path of module to path to function and
were not matching because of the symlink).  os.path.realpath() is now used to
solve this discrepency.

Closes bug #570300.  Thanks Johannes Gijsbers for the fix.
This commit is contained in:
Brett Cannon 2004-08-13 18:46:24 +00:00
parent 08d786a608
commit b3de2e13ba
2 changed files with 7 additions and 1 deletions

View file

@ -380,7 +380,9 @@ def getmodule(object):
return sys.modules.get(modulesbyfile[file])
for module in sys.modules.values():
if hasattr(module, '__file__'):
modulesbyfile[getabsfile(module)] = module.__name__
modulesbyfile[
os.path.realpath(
getabsfile(module))] = module.__name__
if file in modulesbyfile:
return sys.modules.get(modulesbyfile[file])
main = sys.modules['__main__']