mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-27 23:51:26 +08:00
move mixin to evaluate directory
This commit is contained in:
@@ -165,7 +165,7 @@ class BuiltinModule(modules.CachedModule):
|
|||||||
|
|
||||||
if name == '__builtin__' and not is_py3k:
|
if name == '__builtin__' and not is_py3k:
|
||||||
name = 'builtins'
|
name = 'builtins'
|
||||||
path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
path = os.path.dirname(os.path.abspath(__file__))
|
||||||
with open(os.path.join(path, 'mixin', name) + '.pym') as f:
|
with open(os.path.join(path, 'mixin', name) + '.pym') as f:
|
||||||
s = f.read()
|
s = f.read()
|
||||||
except IOError:
|
except IOError:
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -27,7 +27,7 @@ setup(name='jedi',
|
|||||||
keywords='python completion refactoring vim',
|
keywords='python completion refactoring vim',
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
packages=['jedi', 'jedi.parser', 'jedi.evaluate'],
|
packages=['jedi', 'jedi.parser', 'jedi.evaluate'],
|
||||||
package_data={'jedi': ['mixin/*.pym']},
|
package_data={'jedi': ['evlaluate/evaluate/mixin/*.pym']},
|
||||||
platforms=['any'],
|
platforms=['any'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
|
|||||||
Reference in New Issue
Block a user