mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 17:00:58 +01:00
Merge branch 'master' into hist_ref
This commit is contained in:
commit
0560d7674e
7 changed files with 86 additions and 8 deletions
|
@ -8,7 +8,9 @@ from collections import namedtuple
|
|||
from collections.abc import Mapping
|
||||
from ast import parse, walk, Import, ImportFrom
|
||||
|
||||
ModNode = namedtuple('ModNode', ['name', 'pkgdeps', 'extdeps'])
|
||||
__version__ = '0.1.2'
|
||||
|
||||
ModNode = namedtuple('ModNode', ['name', 'pkgdeps', 'extdeps', 'futures'])
|
||||
ModNode.__doc__ = """Module node for dependency graph.
|
||||
|
||||
Attributes
|
||||
|
@ -19,6 +21,8 @@ pkgdeps : frozenset of str
|
|||
Module dependencies in the same package.
|
||||
extdeps : frozenset of str
|
||||
External module dependencies from outside of the package.
|
||||
futures : frozenset of str
|
||||
Import directive names antecedent to 'from __future__ import'
|
||||
"""
|
||||
|
||||
|
||||
|
@ -172,6 +176,7 @@ def make_node(name, pkg, allowed, glbnames):
|
|||
pkgdot = pkg + '.'
|
||||
pkgdeps = set()
|
||||
extdeps = set()
|
||||
futures = set()
|
||||
glbnames.module = name
|
||||
for a in tree.body:
|
||||
glbnames.add(a, istopnode=True)
|
||||
|
@ -194,7 +199,10 @@ def make_node(name, pkg, allowed, glbnames):
|
|||
pkgdeps.add(m)
|
||||
else:
|
||||
extdeps.add(a.module)
|
||||
return ModNode(name, frozenset(pkgdeps), frozenset(extdeps))
|
||||
elif a.module == '__future__':
|
||||
futures.update(n.name for n in a.names)
|
||||
return ModNode(name, frozenset(pkgdeps), frozenset(extdeps),
|
||||
frozenset(futures))
|
||||
|
||||
|
||||
def make_graph(pkg, exclude=None):
|
||||
|
@ -377,6 +385,9 @@ def rewrite_imports(name, pkg, order, imps):
|
|||
elif a.module.startswith(pkgdot) and p == pkg and m in order:
|
||||
replacements.append((start, stop,
|
||||
'# amalgamated ' + a.module + '\n'))
|
||||
elif a.module == '__future__':
|
||||
replacements.append((start, stop,
|
||||
'# amalgamated __future__ directive\n'))
|
||||
else:
|
||||
keep = []
|
||||
for n in a.names:
|
||||
|
@ -401,12 +412,23 @@ def rewrite_imports(name, pkg, order, imps):
|
|||
return ''.join(lines)
|
||||
|
||||
|
||||
def sorted_futures(graph):
|
||||
"""Returns a sorted, unique list of future imports."""
|
||||
f = set()
|
||||
for value in graph.values():
|
||||
f |= value.futures
|
||||
return sorted(f)
|
||||
|
||||
|
||||
def amalgamate(order, graph, pkg):
|
||||
"""Create amalgamated source."""
|
||||
src = ('\"\"\"Amalgamation of {0} package, made up of the following '
|
||||
'modules, in order:\n\n* ').format(pkg)
|
||||
src += '\n* '.join(order)
|
||||
src += '\n\n\"\"\"\n'
|
||||
futures = sorted_futures(graph)
|
||||
if len(futures) > 0:
|
||||
src += 'from __future__ import ' + ', '.join(futures) + '\n'
|
||||
src += LAZY_IMPORTS
|
||||
imps = set()
|
||||
for name in order:
|
||||
|
|
15
news/amalgamation.rst
Normal file
15
news/amalgamation.rst
Normal file
|
@ -0,0 +1,15 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:**
|
||||
|
||||
* Moved ``amalgamate_source`` outside ``build_tables``
|
||||
|
||||
* Disable amalgamation on setup develop
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:** None
|
||||
|
||||
**Security:** None
|
13
news/futamal.rst
Normal file
13
news/futamal.rst
Normal file
|
@ -0,0 +1,13 @@
|
|||
**Added:**
|
||||
|
||||
* amalgamate.py now properly handles ``from __future__`` imports.
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:** None
|
||||
|
||||
**Security:** None
|
13
news/jupyter.rst
Normal file
13
news/jupyter.rst
Normal file
|
@ -0,0 +1,13 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Completions in ``jupyter_kernel.py`` now use updated completion framework
|
||||
|
||||
**Security:** None
|
9
setup.py
9
setup.py
|
@ -51,8 +51,9 @@ os.environ['XONSH_DEBUG'] = '1'
|
|||
from xonsh import __version__ as XONSH_VERSION
|
||||
|
||||
|
||||
def amalagamate_source():
|
||||
"""Amalgamtes source files."""
|
||||
def amalgamate_source():
|
||||
"""Amalgamates source files."""
|
||||
sys.path.insert(0, os.path.dirname(__file__))
|
||||
try:
|
||||
import amalgamate
|
||||
except ImportError:
|
||||
|
@ -60,6 +61,7 @@ def amalagamate_source():
|
|||
return
|
||||
amalgamate.main(['amalgamate', '--debug=XONSH_DEBUG', 'xonsh',
|
||||
'xonsh.completers'])
|
||||
sys.path.pop(0)
|
||||
|
||||
|
||||
def build_tables():
|
||||
|
@ -69,7 +71,6 @@ def build_tables():
|
|||
from xonsh.parser import Parser
|
||||
Parser(lexer_table='lexer_table', yacc_table='parser_table',
|
||||
outputdir='xonsh')
|
||||
amalagamate_source()
|
||||
sys.path.pop(0)
|
||||
|
||||
|
||||
|
@ -164,6 +165,7 @@ class xinstall(install):
|
|||
def run(self):
|
||||
clean_tables()
|
||||
build_tables()
|
||||
amalgamate_source()
|
||||
# add dirty version number
|
||||
dirty = dirty_version()
|
||||
# install Jupyter hook
|
||||
|
@ -185,6 +187,7 @@ class xsdist(sdist):
|
|||
def make_release_tree(self, basedir, files):
|
||||
clean_tables()
|
||||
build_tables()
|
||||
amalgamate_source()
|
||||
dirty = dirty_version()
|
||||
sdist.make_release_tree(self, basedir, files)
|
||||
if dirty:
|
||||
|
|
|
@ -9,6 +9,7 @@ from ipykernel.kernelbase import Kernel
|
|||
from xonsh import __version__ as version
|
||||
from xonsh.main import main_context
|
||||
from xonsh.tools import redirect_stdout, redirect_stderr, swap
|
||||
from xonsh.completer import Completer
|
||||
|
||||
|
||||
MAX_SIZE = 8388608 # 8 Mb
|
||||
|
@ -28,6 +29,10 @@ class XonshKernel(Kernel):
|
|||
'file_extension': '.xsh',
|
||||
}
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
self.completer = Completer()
|
||||
super().__init__(**kwargs)
|
||||
|
||||
def do_execute(self, code, silent, store_history=True, user_expressions=None,
|
||||
allow_stdin=False):
|
||||
"""Execute user code."""
|
||||
|
@ -96,8 +101,13 @@ class XonshKernel(Kernel):
|
|||
def do_complete(self, code, pos):
|
||||
"""Get completions."""
|
||||
shell = builtins.__xonsh_shell__
|
||||
comps, beg, end = shell.completer.find_and_complete(code, pos, shell.ctx)
|
||||
message = {'matches': comps, 'cursor_start': beg, 'cursor_end': end+1,
|
||||
line = code.split('\n')[-1]
|
||||
prefix = line.split(' ')[-1]
|
||||
endidx = pos
|
||||
begidx = pos - len(prefix)
|
||||
rtn, _ = self.completer.complete(prefix, line, begidx,
|
||||
endidx, shell.ctx)
|
||||
message = {'matches': rtn, 'cursor_start': begidx, 'cursor_end': endidx,
|
||||
'metadata': {}, 'status': 'ok'}
|
||||
return message
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@ import importlib
|
|||
import importlib.util
|
||||
import collections.abc as abc
|
||||
|
||||
__version__ = '0.1.1'
|
||||
|
||||
|
||||
class LazyObject(object):
|
||||
|
||||
|
@ -285,7 +287,7 @@ class BackgroundModuleLoader(threading.Thread):
|
|||
time.sleep(0.001)
|
||||
last = hist[i % 5] = len(sys.modules)
|
||||
i += 1
|
||||
# now import pkg_resources properly
|
||||
# now import module properly
|
||||
modname = importlib.util.resolve_name(self.name, self.package)
|
||||
if isinstance(sys.modules[modname], BackgroundModuleProxy):
|
||||
del sys.modules[modname]
|
||||
|
|
Loading…
Add table
Reference in a new issue