Skip to content

Commit f1f977f

Browse files
committed
git subrepo pull (merge) uno
subrepo: subdir: "uno" merged: "56abef3" upstream: origin: "https://github.com/prrvchr/uno.git" branch: "main" commit: "56abef3" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
1 parent 1742d1d commit f1f977f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+13653
-2712
lines changed

uno/.gitrepo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[subrepo]
77
remote = https://github.com/prrvchr/uno.git
88
branch = main
9-
commit = f69b31a4a72032d2a003027447ee5fcb9d641560
10-
parent = b63eb5b365fd7f3ad15131b47d20dd82885524cf
9+
commit = 56abef3ff7d3ad9474d6b48cffb1019d0409fdbe
10+
parent = 1742d1d5ed5672363b109511174f26367ccf2dad
1111
method = merge
1212
cmdver = 0.4.3

uno/lib/python/calmjs-3.4.4-py3.10-nspkg.pth

Lines changed: 0 additions & 1 deletion
This file was deleted.

uno/lib/python/calmjs.parse-1.3.0-py3.9-nspkg.pth

Lines changed: 0 additions & 1 deletion
This file was deleted.

uno/lib/python/calmjs.types-1.0.1-py3.6-nspkg.pth

Lines changed: 0 additions & 1 deletion
This file was deleted.

uno/lib/python/calmjs/parse/__init__.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33
Quick access helper functions
44
"""
55

6-
from calmjs.parse.factory import ParserUnparserFactory
6+
try:
7+
from calmjs.parse.factory import ParserUnparserFactory
8+
except ImportError as e: # pragma: no cover
9+
exc = e
710

11+
def import_error(*a, **kw):
12+
raise exc
813

9-
es5 = ParserUnparserFactory('es5', 'pretty_print', 'minify_print')
14+
es5 = import_error
15+
else:
16+
es5 = ParserUnparserFactory('es5', 'pretty_print', 'minify_print')

uno/lib/python/calmjs/parse/parsers/es5.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@
4242

4343
asttypes = AstTypesFactory(pretty_print, ReprWalker())
4444

45-
# The default values for the `Parser` constructor, passed on to ply; they must
46-
# be strings
45+
# These default values for the `Parser` constructor, passed on to ply;
46+
# they must be strings; these values are for reference only as
47+
# modifications to this value will not change what's been set up as
48+
# the Parser's default.
4749
lextab, yacctab = generate_tab_names(__name__)
4850

4951

uno/lib/python/calmjs/parse/parsers/lextab_es5_py3_ply3_10.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

uno/lib/python/calmjs/parse/parsers/lextab_es5_py3_ply3_11.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

uno/lib/python/calmjs/parse/parsers/lextab_es5_py3_ply3_6.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

uno/lib/python/calmjs/parse/parsers/lextab_es5_py3_ply3_8.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)