Skip to content

Commit 94cf44f

Browse files
committed
Update vendored libs
- iniconfig 1.0.1 -> 1.1.1
1 parent 5e8ded5 commit 94cf44f

File tree

13 files changed

+52
-18
lines changed

13 files changed

+52
-18
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
../../../../home/ran/.cache/pycache/tmp/pip-target-oxds71ih/lib/python/apipkg/__init__.cpython-39.pyc,,
2+
../../../../home/ran/.cache/pycache/tmp/pip-target-oxds71ih/lib/python/apipkg/version.cpython-39.pyc,,
13
apipkg-1.5.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
24
apipkg-1.5.dist-info/METADATA,sha256=tIG1DSBzSeqmSRpOKHSEBmT1eOPdK8xK01xAIADuks4,3800
35
apipkg-1.5.dist-info/RECORD,,
46
apipkg-1.5.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
apipkg-1.5.dist-info/WHEEL,sha256=gduuPyBvFJQSQ0zdyxF7k0zynDXbIbvg5ZBHoXum5uk,110
68
apipkg-1.5.dist-info/top_level.txt,sha256=3TGS6nmN7kjxhUK4LpPCB3QkQI34QYGrT0ZQGWajoZ8,7
79
apipkg/__init__.py,sha256=VogR4mDwYmeOdJnjGi-RoMB1qJnD6_puDYj_nRolzhM,6707
8-
apipkg/__pycache__/__init__.cpython-38.pyc,,
9-
apipkg/__pycache__/version.cpython-38.pyc,,
1010
apipkg/version.py,sha256=YN6DnKyEPqjDAauJuwJRG9vlKbWVLd9gAbH7mkQXXNo,114

py/_vendored_packages/iniconfig-1.0.1.dist-info/RECORD

-9
This file was deleted.

py/_vendored_packages/iniconfig-1.0.1.dist-info/METADATA py/_vendored_packages/iniconfig-1.1.1.dist-info/METADATA

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

File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from typing import Callable, Iterator, Mapping, Optional, Tuple, TypeVar, Union
2+
from typing_extensions import Final
3+
4+
_D = TypeVar('_D')
5+
_T = TypeVar('_T')
6+
7+
class ParseError(Exception):
8+
# Private __init__.
9+
path: Final[str]
10+
lineno: Final[int]
11+
msg: Final[str]
12+
13+
class SectionWrapper:
14+
# Private __init__.
15+
config: Final[IniConfig]
16+
name: Final[str]
17+
def __getitem__(self, key: str) -> str: ...
18+
def __iter__(self) -> Iterator[str]: ...
19+
def get(self, key: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
20+
def items(self) -> Iterator[Tuple[str, str]]: ...
21+
def lineof(self, name: str) -> Optional[int]: ...
22+
23+
class IniConfig:
24+
path: Final[str]
25+
sections: Final[Mapping[str, Mapping[str, str]]]
26+
def __init__(self, path: str, data: Optional[str] = None): ...
27+
def __contains__(self, arg: str) -> bool: ...
28+
def __getitem__(self, name: str) -> SectionWrapper: ...
29+
def __iter__(self) -> Iterator[SectionWrapper]: ...
30+
def get(self, section: str, name: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
31+
def lineof(self, section: str, name: Optional[str] = ...) -> Optional[int]: ...

py/_vendored_packages/iniconfig/py.typed

Whitespace-only changes.

py/iniconfig.pyi

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ _D = TypeVar('_D')
55
_T = TypeVar('_T')
66

77
class ParseError(Exception):
8+
# Private __init__.
89
path: Final[str]
910
lineno: Final[int]
1011
msg: Final[str]
11-
def __init__(self, path: str, lineno: int, msg: str) -> None: ...
1212

13-
class _SectionWrapper:
13+
class SectionWrapper:
14+
# Private __init__.
1415
config: Final[IniConfig]
1516
name: Final[str]
16-
def __init__(self, config: IniConfig, name: str) -> None: ...
1717
def __getitem__(self, key: str) -> str: ...
1818
def __iter__(self) -> Iterator[str]: ...
1919
def get(self, key: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
@@ -25,7 +25,7 @@ class IniConfig:
2525
sections: Final[Mapping[str, Mapping[str, str]]]
2626
def __init__(self, path: str, data: Optional[str] = None): ...
2727
def __contains__(self, arg: str) -> bool: ...
28-
def __getitem__(self, name: str) -> _SectionWrapper: ...
29-
def __iter__(self) -> Iterator[_SectionWrapper]: ...
28+
def __getitem__(self, name: str) -> SectionWrapper: ...
29+
def __iter__(self) -> Iterator[SectionWrapper]: ...
3030
def get(self, section: str, name: str, default: _D = ..., convert: Callable[[str], _T] = ...) -> Union[_T, _D]: ...
3131
def lineof(self, section: str, name: Optional[str] = ...) -> Optional[int]: ...

0 commit comments

Comments
 (0)