Skip to content

Commit

Permalink
Update vendored libs
Browse files Browse the repository at this point in the history
- iniconfig 1.0.1 -> 1.1.1
  • Loading branch information
bluetech committed Dec 12, 2020
1 parent 5e8ded5 commit 94cf44f
Show file tree
Hide file tree
Showing 13 changed files with 52 additions and 18 deletions.
4 changes: 2 additions & 2 deletions py/_vendored_packages/apipkg-1.5.dist-info/RECORD
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
../../../../home/ran/.cache/pycache/tmp/pip-target-oxds71ih/lib/python/apipkg/__init__.cpython-39.pyc,,
../../../../home/ran/.cache/pycache/tmp/pip-target-oxds71ih/lib/python/apipkg/version.cpython-39.pyc,,
apipkg-1.5.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
apipkg-1.5.dist-info/METADATA,sha256=tIG1DSBzSeqmSRpOKHSEBmT1eOPdK8xK01xAIADuks4,3800
apipkg-1.5.dist-info/RECORD,,
apipkg-1.5.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
apipkg-1.5.dist-info/WHEEL,sha256=gduuPyBvFJQSQ0zdyxF7k0zynDXbIbvg5ZBHoXum5uk,110
apipkg-1.5.dist-info/top_level.txt,sha256=3TGS6nmN7kjxhUK4LpPCB3QkQI34QYGrT0ZQGWajoZ8,7
apipkg/__init__.py,sha256=VogR4mDwYmeOdJnjGi-RoMB1qJnD6_puDYj_nRolzhM,6707
apipkg/__pycache__/__init__.cpython-38.pyc,,
apipkg/__pycache__/version.cpython-38.pyc,,
apipkg/version.py,sha256=YN6DnKyEPqjDAauJuwJRG9vlKbWVLd9gAbH7mkQXXNo,114
9 changes: 0 additions & 9 deletions py/_vendored_packages/iniconfig-1.0.1.dist-info/RECORD

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: iniconfig
Version: 1.0.1
Version: 1.1.1
Summary: iniconfig: brain-dead simple config-ini parsing
Home-page: http:https://github.com/RonnyPfannschmidt/iniconfig
Author: Ronny Pfannschmidt, Holger Krekel
Expand Down
11 changes: 11 additions & 0 deletions py/_vendored_packages/iniconfig-1.1.1.dist-info/RECORD
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
../../../../home/ran/.cache/pycache/tmp/pip-target-oxds71ih/lib/python/iniconfig/__init__.cpython-39.pyc,,
iniconfig-1.1.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
iniconfig-1.1.1.dist-info/LICENSE,sha256=KvaAw570k_uCgwNW0dPfGstaBgM8ui3sehniHKp3qGY,1061
iniconfig-1.1.1.dist-info/METADATA,sha256=_4-oFKpRXuZv5rzepScpXRwhq6DzqsgbnA5ZpgMUMcs,2405
iniconfig-1.1.1.dist-info/RECORD,,
iniconfig-1.1.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
iniconfig-1.1.1.dist-info/WHEEL,sha256=ADKeyaGyKF5DwBNE0sRE5pvW-bSkFMJfBuhzZ3rceP4,110
iniconfig-1.1.1.dist-info/top_level.txt,sha256=7KfM0fugdlToj9UW7enKXk2HYALQD8qHiyKtjhSzgN8,10
iniconfig/__init__.py,sha256=-pBe5AF_6aAwo1CxJQ8i_zJq6ejc6IxHta7qk2tNJhY,5208
iniconfig/__init__.pyi,sha256=-4KOctzq28ohRmTZsqlH6aylyFqsNKxYqtk1dteypi4,1205
iniconfig/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.34.2)
Generator: bdist_wheel (0.35.1)
Root-Is-Purelib: true
Tag: py2-none-any
Tag: py3-none-any

File renamed without changes.
31 changes: 31 additions & 0 deletions py/_vendored_packages/iniconfig/__init__.pyi
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from typing import Callable, Iterator, Mapping, Optional, Tuple, TypeVar, Union
from typing_extensions import Final

_D = TypeVar('_D')
_T = TypeVar('_T')

class ParseError(Exception):
# Private __init__.
path: Final[str]
lineno: Final[int]
msg: Final[str]

class SectionWrapper:
# Private __init__.
config: Final[IniConfig]
name: Final[str]
def __getitem__(self, key: str) -> str: ...
def __iter__(self) -> Iterator[str]: ...
def get(self, key: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
def items(self) -> Iterator[Tuple[str, str]]: ...
def lineof(self, name: str) -> Optional[int]: ...

class IniConfig:
path: Final[str]
sections: Final[Mapping[str, Mapping[str, str]]]
def __init__(self, path: str, data: Optional[str] = None): ...
def __contains__(self, arg: str) -> bool: ...
def __getitem__(self, name: str) -> SectionWrapper: ...
def __iter__(self) -> Iterator[SectionWrapper]: ...
def get(self, section: str, name: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
def lineof(self, section: str, name: Optional[str] = ...) -> Optional[int]: ...
Empty file.
10 changes: 5 additions & 5 deletions py/iniconfig.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ _D = TypeVar('_D')
_T = TypeVar('_T')

class ParseError(Exception):
# Private __init__.
path: Final[str]
lineno: Final[int]
msg: Final[str]
def __init__(self, path: str, lineno: int, msg: str) -> None: ...

class _SectionWrapper:
class SectionWrapper:
# Private __init__.
config: Final[IniConfig]
name: Final[str]
def __init__(self, config: IniConfig, name: str) -> None: ...
def __getitem__(self, key: str) -> str: ...
def __iter__(self) -> Iterator[str]: ...
def get(self, key: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
Expand All @@ -25,7 +25,7 @@ class IniConfig:
sections: Final[Mapping[str, Mapping[str, str]]]
def __init__(self, path: str, data: Optional[str] = None): ...
def __contains__(self, arg: str) -> bool: ...
def __getitem__(self, name: str) -> _SectionWrapper: ...
def __iter__(self) -> Iterator[_SectionWrapper]: ...
def __getitem__(self, name: str) -> SectionWrapper: ...
def __iter__(self) -> Iterator[SectionWrapper]: ...
def get(self, section: str, name: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
def lineof(self, section: str, name: Optional[str] = ...) -> Optional[int]: ...

0 comments on commit 94cf44f

Please sign in to comment.