pybare 1.2.0__tar.gz → 1.2.1__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.
- {pybare-1.2.0/pybare.egg-info → pybare-1.2.1}/PKG-INFO +1 -1
- {pybare-1.2.0 → pybare-1.2.1}/bare/misc.py +1 -5
- {pybare-1.2.0 → pybare-1.2.1/pybare.egg-info}/PKG-INFO +1 -1
- {pybare-1.2.0 → pybare-1.2.1}/setup.py +1 -1
- {pybare-1.2.0 → pybare-1.2.1}/LICENSE +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/README.md +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/__init__.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/barearray.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/barestruct.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/baretype.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/data.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/map.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/number.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_barearray.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_barestruct.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_data.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_encoder.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_map.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_misc.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_number.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/test_union.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/union.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/bare/util.py +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/pybare.egg-info/SOURCES.txt +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/pybare.egg-info/dependency_links.txt +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/pybare.egg-info/top_level.txt +0 -0
- {pybare-1.2.0 → pybare-1.2.1}/setup.cfg +0 -0
|
@@ -8,11 +8,7 @@ from .number import UInt
|
|
|
8
8
|
__all__ = ["Enum", "Void", "Str"]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class
|
|
12
|
-
...
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class Enum(BAREType[int], IntEnum, metaclass=BAREEnumMeta):
|
|
11
|
+
class Enum(IntEnum, metaclass=EnumType):
|
|
16
12
|
"""
|
|
17
13
|
A BARE enum type. It is a subclass of `IntEnum` and is used to represent
|
|
18
14
|
a BARE enum type.
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="pybare", # Replace with your own username
|
|
8
|
-
version="1.2.
|
|
8
|
+
version="1.2.1",
|
|
9
9
|
author="Noah Pederson",
|
|
10
10
|
author_email="noah@packetlost.dev",
|
|
11
11
|
description="A declarative implementation of BARE for Python",
|
|
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
|
|
File without changes
|
|
File without changes
|