mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Bug #1560617: in pyclbr, return full module name not only for classes,
but also for functions.
This commit is contained in:
parent
05b3c450a8
commit
154324a8c3
3 changed files with 7 additions and 1 deletions
|
@ -172,7 +172,7 @@ def _readmodule(module, path, inpackage=None):
|
|||
# else it's a nested def
|
||||
else:
|
||||
# it's a function
|
||||
dict[meth_name] = Function(module, meth_name, file, lineno)
|
||||
dict[meth_name] = Function(fullmodule, meth_name, file, lineno)
|
||||
stack.append((None, thisindent)) # Marker for nested fns
|
||||
elif token == 'class':
|
||||
lineno, thisindent = start
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue