forked from VimPlug/jedi
forgot to deprecate source_encoding properly -> #389
This commit is contained in:
@@ -59,12 +59,19 @@ class Script(object):
|
|||||||
:param encoding: The encoding of ``source``, if it is not a
|
:param encoding: The encoding of ``source``, if it is not a
|
||||||
``unicode`` object (default ``'utf-8'``).
|
``unicode`` object (default ``'utf-8'``).
|
||||||
:type encoding: str
|
:type encoding: str
|
||||||
|
:param source_encoding: The encoding of ``source``, if it is not a
|
||||||
|
``unicode`` object (default ``'utf-8'``).
|
||||||
|
:type encoding: str
|
||||||
"""
|
"""
|
||||||
def __init__(self, source=None, line=None, column=None, path=None,
|
def __init__(self, source=None, line=None, column=None, path=None,
|
||||||
encoding='utf-8', source_path=None):
|
encoding='utf-8', source_path=None, source_encoding=None):
|
||||||
if source_path is not None:
|
if source_path is not None:
|
||||||
warnings.warn("Use path instead of source_path.", DeprecationWarning)
|
warnings.warn("Use path instead of source_path.", DeprecationWarning)
|
||||||
path = source_path
|
path = source_path
|
||||||
|
if source_encoding is not None:
|
||||||
|
warnings.warn("Use encoding instead of source_encoding.", DeprecationWarning)
|
||||||
|
encoding = source_encoding
|
||||||
|
|
||||||
self._orig_path = path
|
self._orig_path = path
|
||||||
self.path = None if path is None else os.path.abspath(path)
|
self.path = None if path is None else os.path.abspath(path)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user