1
0
forked from VimPlug/jedi

Fix some warnings.

This commit is contained in:
Dave Halter
2017-05-25 12:24:12 -04:00
parent 6a320147ac
commit ef2e2f343e
7 changed files with 20 additions and 16 deletions

View File

@@ -425,7 +425,7 @@ def defined_names(source, path=None, encoding='utf-8'):
Use :func:`names` instead.
.. todo:: Remove!
"""
warnings.warn("Use call_signatures instead.", DeprecationWarning)
warnings.warn("Use names instead.", DeprecationWarning)
return names(source, path, encoding)