comparison stubs/incremental/__init__.pyi @ 1863:0f0ff27e55a3

stubs, mostly autogen or empty Ignore-this: bc70818d2bc92bf022c65c3572b9775e
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 25 May 2019 12:01:26 +0000
parents
children
comparison
equal deleted inserted replaced
1862:d92757c88817 1863:0f0ff27e55a3
1 # Stubs for incremental (Python 3)
2 #
3 # NOTE: This dynamically typed stub was automatically generated by stubgen.
4
5 from ._version import __version__ as __version__
6 from typing import Any, Optional
7
8 class _inf:
9 def __cmp__(self, other: Any): ...
10
11 class IncomparableVersions(TypeError): ...
12
13 class Version:
14 package: Any = ...
15 major: Any = ...
16 minor: Any = ...
17 micro: Any = ...
18 release_candidate: Any = ...
19 dev: Any = ...
20 def __init__(self, package: Any, major: Any, minor: Any, micro: Any, release_candidate: Optional[Any] = ..., prerelease: Optional[Any] = ..., dev: Optional[Any] = ...) -> None: ...
21 @property
22 def prerelease(self): ...
23 def public(self): ...
24 base: Any = ...
25 short: Any = ...
26 local: Any = ...
27 def __cmp__(self, other: Any): ...
28
29 def getVersionString(version: Any): ...