setdoc 1.3.8__tar.gz → 1.3.10__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.
- {setdoc-1.3.8/src/setdoc.egg-info → setdoc-1.3.10}/PKG-INFO +1 -1
- {setdoc-1.3.8 → setdoc-1.3.10}/pyproject.toml +1 -1
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/_utils/cfg.toml +7 -0
- {setdoc-1.3.8 → setdoc-1.3.10/src/setdoc.egg-info}/PKG-INFO +1 -1
- {setdoc-1.3.8 → setdoc-1.3.10}/LICENSE.txt +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/MANIFEST.in +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/README.rst +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/docs/v1.0.rst +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/docs/v1.1.rst +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/docs/v1.2.rst +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/docs/v1.3.rst +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/setup.cfg +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/__init__.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/_utils/__init__.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/core/SetDoc.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/core/__init__.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/core/basic.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/core/getbasicdoc.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/py.typed +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/tests/__init__.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/tests/test_core.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/typing/SupportsDoc.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/typing/SupportsDocAndName.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc/typing/__init__.py +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc.egg-info/SOURCES.txt +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc.egg-info/dependency_links.txt +0 -0
- {setdoc-1.3.8 → setdoc-1.3.10}/src/setdoc.egg-info/top_level.txt +0 -0
|
@@ -76,14 +76,21 @@ __str__ = "This magic method implements str(self)."
|
|
|
76
76
|
__sub__ = "This magic method implements self-other."
|
|
77
77
|
__truediv__ = "This magic method implements self/other."
|
|
78
78
|
__xor__ = "This magic method implements self^other."
|
|
79
|
+
append = "This method appends item at the end of self."
|
|
79
80
|
copy = "This method returns a new copy of self."
|
|
81
|
+
count = "This method counts the occurrences of item."
|
|
80
82
|
data = "This property represents the underlying data."
|
|
83
|
+
difference = "This method returns what is in self but not in other."
|
|
84
|
+
get = "This method returns self[key] if it exists, otherwise default."
|
|
81
85
|
index = "This method returns the index of the first occurrence."
|
|
82
86
|
insert = "This method inserts value at index."
|
|
87
|
+
intersection = "This method returns everything that is in all containers."
|
|
83
88
|
isdisjoint = "This method determines if self and other have no intersection."
|
|
84
89
|
issubset = "This method determines if self is a subset of other."
|
|
85
90
|
issuperset = "This method determines if self is a superset of other."
|
|
86
91
|
items = "This method returns all defined key-value-pairs."
|
|
87
92
|
keys = "This method returns all keys with a defined value."
|
|
88
93
|
setdefault = "This method returns the value of an item after guaranteeing its existence."
|
|
94
|
+
symmetric_difference = "This method returns what is either in self or in other."
|
|
95
|
+
union = "This method returns everything that is in any container."
|
|
89
96
|
values = "This method returns all values with a defined key."
|
|
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
|