aridity 77__tar.gz → 78__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aridity-77 → aridity-78}/PKG-INFO +2 -2
- {aridity-77 → aridity-78}/README.md +1 -1
- {aridity-77 → aridity-78}/aridity/functions.py +2 -2
- {aridity-77 → aridity-78}/aridity.egg-info/PKG-INFO +2 -2
- {aridity-77 → aridity-78}/setup.py +1 -1
- {aridity-77 → aridity-78}/aridity/__init__.py +0 -0
- {aridity-77 → aridity-78}/aridity/arid_config.py +0 -0
- {aridity-77 → aridity-78}/aridity/config.py +0 -0
- {aridity-77 → aridity-78}/aridity/directives.py +0 -0
- {aridity-77 → aridity-78}/aridity/grammar.py +0 -0
- {aridity-77 → aridity-78}/aridity/keyring.py +0 -0
- {aridity-77 → aridity-78}/aridity/model.py +0 -0
- {aridity-77 → aridity-78}/aridity/processtemplate.py +0 -0
- {aridity-77 → aridity-78}/aridity/repl.py +0 -0
- {aridity-77 → aridity-78}/aridity/resolve.py +0 -0
- {aridity-77 → aridity-78}/aridity/scope.py +0 -0
- {aridity-77 → aridity-78}/aridity/search.py +0 -0
- {aridity-77 → aridity-78}/aridity/stacks.py +0 -0
- {aridity-77 → aridity-78}/aridity/util.py +0 -0
- {aridity-77 → aridity-78}/aridity.egg-info/SOURCES.txt +0 -0
- {aridity-77 → aridity-78}/aridity.egg-info/dependency_links.txt +0 -0
- {aridity-77 → aridity-78}/aridity.egg-info/entry_points.txt +0 -0
- {aridity-77 → aridity-78}/aridity.egg-info/requires.txt +0 -0
- {aridity-77 → aridity-78}/aridity.egg-info/top_level.txt +0 -0
- {aridity-77 → aridity-78}/parabject.py +0 -0
- {aridity-77 → aridity-78}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aridity
|
|
3
|
-
Version:
|
|
3
|
+
Version: 78
|
|
4
4
|
Summary: DRY config and template system, easily extensible with Python
|
|
5
5
|
Home-page: https://pypi.org/project/aridity/
|
|
6
6
|
Author: foyono
|
|
@@ -604,7 +604,7 @@ Python object in given module with given qualified name. Module may be relative
|
|
|
604
604
|
###### pyres
|
|
605
605
|
|
|
606
606
|
```python
|
|
607
|
-
def pyres(scope, packageresolvable, nameresolvable)
|
|
607
|
+
def pyres(scope, packageresolvable, nameresolvable, encoding=Text('ascii'))
|
|
608
608
|
```
|
|
609
609
|
|
|
610
610
|
Python resource for inclusion with `.` directive.
|
|
@@ -592,7 +592,7 @@ Python object in given module with given qualified name. Module may be relative
|
|
|
592
592
|
###### pyres
|
|
593
593
|
|
|
594
594
|
```python
|
|
595
|
-
def pyres(scope, packageresolvable, nameresolvable)
|
|
595
|
+
def pyres(scope, packageresolvable, nameresolvable, encoding=Text('ascii'))
|
|
596
596
|
```
|
|
597
597
|
|
|
598
598
|
Python resource for inclusion with `.` directive.
|
|
@@ -221,9 +221,9 @@ class Functions:
|
|
|
221
221
|
pyobj = getattr(pyobj, name)
|
|
222
222
|
return wrap(pyobj)
|
|
223
223
|
|
|
224
|
-
def pyres(scope, packageresolvable, nameresolvable):
|
|
224
|
+
def pyres(scope, packageresolvable, nameresolvable, encoding = Text('ascii')):
|
|
225
225
|
'Python resource for inclusion with `.` directive.'
|
|
226
|
-
return Resource(packageresolvable.resolve(scope).cat(), nameresolvable.resolve(scope).cat())
|
|
226
|
+
return Resource(packageresolvable.resolve(scope).cat(), nameresolvable.resolve(scope).cat(), encoding.resolve(scope).cat())
|
|
227
227
|
|
|
228
228
|
@realname('\N{NOT SIGN}')
|
|
229
229
|
def not_(scope, resolvable):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aridity
|
|
3
|
-
Version:
|
|
3
|
+
Version: 78
|
|
4
4
|
Summary: DRY config and template system, easily extensible with Python
|
|
5
5
|
Home-page: https://pypi.org/project/aridity/
|
|
6
6
|
Author: foyono
|
|
@@ -604,7 +604,7 @@ Python object in given module with given qualified name. Module may be relative
|
|
|
604
604
|
###### pyres
|
|
605
605
|
|
|
606
606
|
```python
|
|
607
|
-
def pyres(scope, packageresolvable, nameresolvable)
|
|
607
|
+
def pyres(scope, packageresolvable, nameresolvable, encoding=Text('ascii'))
|
|
608
608
|
```
|
|
609
609
|
|
|
610
610
|
Python resource for inclusion with `.` directive.
|
|
@@ -6,7 +6,7 @@ def long_description():
|
|
|
6
6
|
|
|
7
7
|
setup(
|
|
8
8
|
name = 'aridity',
|
|
9
|
-
version = '
|
|
9
|
+
version = '78',
|
|
10
10
|
description = 'DRY config and template system, easily extensible with Python',
|
|
11
11
|
long_description = long_description(),
|
|
12
12
|
long_description_content_type = 'text/markdown',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|