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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aridity
3
- Version: 77
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: 77
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 = '77',
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