scaevola 1.1.0__tar.gz → 1.1.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.
- scaevola-1.1.1/MANIFEST.in +1 -0
- {scaevola-1.1.0/src/scaevola.egg-info → scaevola-1.1.1}/PKG-INFO +1 -1
- {scaevola-1.1.0 → scaevola-1.1.1}/pyproject.toml +1 -1
- scaevola-1.1.1/src/scaevola/core/cfg.toml +20 -0
- {scaevola-1.1.0 → scaevola-1.1.1/src/scaevola.egg-info}/PKG-INFO +1 -1
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola.egg-info/SOURCES.txt +1 -0
- scaevola-1.1.0/MANIFEST.in +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/LICENSE.txt +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/README.rst +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/setup.cfg +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola/__init__.py +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola/core/__init__.py +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola/tests/__init__.py +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola/tests/test_doc.py +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola/tests/test_op.py +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola/tests/test_slots_Scaevola.py +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola/tests/test_slots_auto.py +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola.egg-info/dependency_links.txt +0 -0
- {scaevola-1.1.0 → scaevola-1.1.1}/src/scaevola.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
recursive-include src/scaevola *.toml
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[docs]
|
|
2
|
+
operator = "This magic method implements other%sself."
|
|
3
|
+
ge = "This magic method implements self>=other."
|
|
4
|
+
gt = "This magic method implements self>other."
|
|
5
|
+
rdivmod = "This magic method implements divmod(other, self)."
|
|
6
|
+
|
|
7
|
+
[operator]
|
|
8
|
+
add = "+"
|
|
9
|
+
and_ = "&"
|
|
10
|
+
floordiv = "//"
|
|
11
|
+
lshift = "<<"
|
|
12
|
+
matmul = "@"
|
|
13
|
+
mod = "%"
|
|
14
|
+
mul = "*"
|
|
15
|
+
or_ = "|"
|
|
16
|
+
pow = "**"
|
|
17
|
+
rshift = ">>"
|
|
18
|
+
sub = "-"
|
|
19
|
+
truediv = "/"
|
|
20
|
+
xor = "^"
|
|
@@ -9,6 +9,7 @@ src/scaevola.egg-info/SOURCES.txt
|
|
|
9
9
|
src/scaevola.egg-info/dependency_links.txt
|
|
10
10
|
src/scaevola.egg-info/top_level.txt
|
|
11
11
|
src/scaevola/core/__init__.py
|
|
12
|
+
src/scaevola/core/cfg.toml
|
|
12
13
|
src/scaevola/tests/__init__.py
|
|
13
14
|
src/scaevola/tests/test_doc.py
|
|
14
15
|
src/scaevola/tests/test_op.py
|
scaevola-1.1.0/MANIFEST.in
DELETED
|
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
|