setdoc 1.3.16__tar.gz → 1.3.18__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.18/MANIFEST.in +4 -0
- {setdoc-1.3.16/src/setdoc.egg-info → setdoc-1.3.18}/PKG-INFO +1 -1
- {setdoc-1.3.16 → setdoc-1.3.18}/pyproject.toml +1 -1
- setdoc-1.3.18/run_tests.py +4 -0
- setdoc-1.3.18/src/setdoc/_utils/cfg.toml +136 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/tests/__init__.py +2 -2
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/tests/test_core.py +2 -2
- {setdoc-1.3.16 → setdoc-1.3.18/src/setdoc.egg-info}/PKG-INFO +1 -1
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc.egg-info/SOURCES.txt +1 -0
- setdoc-1.3.16/MANIFEST.in +0 -2
- setdoc-1.3.16/src/setdoc/_utils/cfg.toml +0 -135
- {setdoc-1.3.16 → setdoc-1.3.18}/LICENSE.txt +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/README.rst +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/docs/v1.0.rst +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/docs/v1.1.rst +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/docs/v1.2.rst +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/docs/v1.3.rst +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/setup.cfg +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/__init__.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/_utils/__init__.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/core/SetDoc.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/core/__init__.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/core/basic.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/core/getbasicdoc.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/py.typed +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/typing/SupportsDoc.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/typing/SupportsDocAndName.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc/typing/__init__.py +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc.egg-info/dependency_links.txt +0 -0
- {setdoc-1.3.16 → setdoc-1.3.18}/src/setdoc.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
[basic]
|
|
2
|
+
__abs__ = "Return the absolute value of self."
|
|
3
|
+
__add__ = "Add other to self and return the result."
|
|
4
|
+
__aiter__ = "Return an async iterator over self."
|
|
5
|
+
__and__ = "Compute self & other and return the result."
|
|
6
|
+
__anext__ = "Return the next value in async iteration."
|
|
7
|
+
__bool__ = "Return the truth value of self."
|
|
8
|
+
__call__ = "Call self."
|
|
9
|
+
__ceil__ = "Return the ceiling of self."
|
|
10
|
+
__class_getitem__ = "Handle subscription on the class itself."
|
|
11
|
+
__cmp__ = "Compare self and other using all six comparison operators."
|
|
12
|
+
__complex__ = "Return the complex representation of self."
|
|
13
|
+
__contains__ = "Check whether self contains other."
|
|
14
|
+
__copy__ = "Return a shallow copy of self."
|
|
15
|
+
__deepcopy__ = "Return a deep copy of self."
|
|
16
|
+
__del__ = "Finalize self before destruction."
|
|
17
|
+
__delattr__ = "Delete the named attribute from self."
|
|
18
|
+
__delitem__ = "Delete the item at key."
|
|
19
|
+
__dir__ = "Return the directory listing of self."
|
|
20
|
+
__divmod__ = "Return the quotient and remainder of self and other."
|
|
21
|
+
__eq__ = "Compare self and other for equality."
|
|
22
|
+
__float__ = "Return the float representation of self."
|
|
23
|
+
__floor__ = "Return the floor of self."
|
|
24
|
+
__floordiv__ = "Divide self by other using floor division and return the result."
|
|
25
|
+
__format__ = "Format self according to format_spec."
|
|
26
|
+
__ge__ = "Check whether self is greater than or equal to other."
|
|
27
|
+
__getattr__ = "Look up a missing attribute."
|
|
28
|
+
__getattribute__ = "Look up an attribute on self."
|
|
29
|
+
__getitem__ = "Return the item at key."
|
|
30
|
+
__getnewargs__ = "Return the arguments for reconstructing the object."
|
|
31
|
+
__getstate__ = "Return the serializable state of self."
|
|
32
|
+
__gt__ = "Check whether self is greater than other."
|
|
33
|
+
__hash__ = "Return the hash of self."
|
|
34
|
+
__iadd__ = "Add other to self in place."
|
|
35
|
+
__iand__ = "Apply bitwise AND with other in place."
|
|
36
|
+
__ifloordiv__ = "Divide self by other using floor division in place."
|
|
37
|
+
__ilshift__ = "Shift self left by other in place."
|
|
38
|
+
__imatmul__ = "Multiply self by other using matrix multiplication in place."
|
|
39
|
+
__imod__ = "Apply modulo with other in place."
|
|
40
|
+
__imul__ = "Multiply self by other in place."
|
|
41
|
+
__index__ = "Return the integer index representation of self."
|
|
42
|
+
__init__ = "Initialize self."
|
|
43
|
+
__int__ = "Return the integer representation of self."
|
|
44
|
+
__invert__ = "Invert self bitwise."
|
|
45
|
+
__ior__ = "Apply bitwise OR with other in place."
|
|
46
|
+
__ipow__ = "Raise self to the power of other in place."
|
|
47
|
+
__irshift__ = "Shift self right by other in place."
|
|
48
|
+
__isub__ = "Subtract other from self in place."
|
|
49
|
+
__iter__ = "Return an iterator over self."
|
|
50
|
+
__itruediv__ = "Divide self by other in place."
|
|
51
|
+
__ixor__ = "Apply bitwise XOR with other in place."
|
|
52
|
+
__le__ = "Check whether self is less than or equal to other."
|
|
53
|
+
__len__ = "Return the length of self."
|
|
54
|
+
__lshift__ = "Shift self left by other and return the result."
|
|
55
|
+
__lt__ = "Check whether self is less than other."
|
|
56
|
+
__matmul__ = "Multiply self by other using matrix multiplication and return the result."
|
|
57
|
+
__missing__ = "Handle a missing key."
|
|
58
|
+
__mod__ = "Return the remainder of self divided by other."
|
|
59
|
+
__mul__ = "Multiply self by other and return the result."
|
|
60
|
+
__ne__ = "Compare self and other for inequality."
|
|
61
|
+
__neg__ = "Negate self."
|
|
62
|
+
__new__ = "Create a new instance of cls."
|
|
63
|
+
__next__ = "Return the next item."
|
|
64
|
+
__or__ = "Compute self | other and return the result."
|
|
65
|
+
__pos__ = "Return self unchanged."
|
|
66
|
+
__post_init__ = "Complete the initialization of self."
|
|
67
|
+
__pow__ = "Raise self to the power of other and return the result."
|
|
68
|
+
__radd__ = "Add self to other and return the result."
|
|
69
|
+
__rand__ = "Compute other & self and return the result."
|
|
70
|
+
__rdivmod__ = "Return the quotient and remainder of other and self."
|
|
71
|
+
__reduce__ = "Reduce the object for pickling."
|
|
72
|
+
__reduce_ex__ = "Reduce the object for pickling using the extended protocol."
|
|
73
|
+
__repr__ = "Return the official string representation of self."
|
|
74
|
+
__reversed__ = "Return a reverse iterator over self."
|
|
75
|
+
__rfloordiv__ = "Divide other by self using floor division and return the result."
|
|
76
|
+
__rlshift__ = "Shift other left by self and return the result."
|
|
77
|
+
__rmatmul__ = "Multiply other by self using matrix multiplication and return the result."
|
|
78
|
+
__rmod__ = "Return the remainder of other divided by self."
|
|
79
|
+
__rmul__ = "Multiply other by self and return the result."
|
|
80
|
+
__ror__ = "Compute other | self and return the result."
|
|
81
|
+
__round__ = "Round self and return the result."
|
|
82
|
+
__rpow__ = "Raise other to the power of self and return the result."
|
|
83
|
+
__rrshift__ = "Shift other right by self and return the result."
|
|
84
|
+
__rshift__ = "Shift self right by other and return the result."
|
|
85
|
+
__rsub__ = "Subtract self from other and return the result."
|
|
86
|
+
__rtruediv__ = "Divide other by self and return the result."
|
|
87
|
+
__rxor__ = "Compute other ^ self and return the result."
|
|
88
|
+
__setattr__ = "Set the named attribute on self."
|
|
89
|
+
__setitem__ = "Set the item at key to value."
|
|
90
|
+
__setstate__ = "Restore the serialized state of self."
|
|
91
|
+
__sizeof__ = "Return the memory size of self."
|
|
92
|
+
__str__ = "Return the string representation of self."
|
|
93
|
+
__sub__ = "Subtract other from self and return the result."
|
|
94
|
+
__subclasshook__ = "Customize subclass checks."
|
|
95
|
+
__truediv__ = "Divide self by other and return the result."
|
|
96
|
+
__xor__ = "Compute self ^ other and return the result."
|
|
97
|
+
add = "Add item to self."
|
|
98
|
+
append = "Append item to the end of self."
|
|
99
|
+
clear = "Remove everything from self."
|
|
100
|
+
copy = "Return a new copy of self."
|
|
101
|
+
count = "Count the occurrences of item."
|
|
102
|
+
data = "Access the underlying data."
|
|
103
|
+
difference = "Return the items in self but not in other."
|
|
104
|
+
difference_update = "Remove from self everything that is also in other."
|
|
105
|
+
discard = "Remove item if it exists."
|
|
106
|
+
extend = "Extend self with all items from the given iterable."
|
|
107
|
+
fdel = "Delete the property value."
|
|
108
|
+
fget = "Get the property value."
|
|
109
|
+
fromkeys = "Create a new instance from the given keys."
|
|
110
|
+
fset = "Set the property value."
|
|
111
|
+
get = "Return self[key] if it exists; otherwise return default."
|
|
112
|
+
hex = "Return the hexadecimal representation of self."
|
|
113
|
+
index = "Return the index of the first occurrence."
|
|
114
|
+
insert = "Insert value at index."
|
|
115
|
+
intersection = "Return the items common to all containers."
|
|
116
|
+
intersection_update = "Keep only the items common to self and other."
|
|
117
|
+
isdisjoint = "Check whether self and other have no intersection."
|
|
118
|
+
issubset = "Check whether self is a subset of other."
|
|
119
|
+
issuperset = "Check whether self is a superset of other."
|
|
120
|
+
items = "Return all defined key-value pairs."
|
|
121
|
+
keys = "Return all keys with defined values."
|
|
122
|
+
main = "Run the main CLI entry point."
|
|
123
|
+
parse_args = "Parse the arguments."
|
|
124
|
+
pop = "Remove and return an item from self."
|
|
125
|
+
popitem = "Remove and return a key-value pair."
|
|
126
|
+
remove = "Remove (the first occurrence of) the given value from self."
|
|
127
|
+
reverse = "Reverse self in place."
|
|
128
|
+
run = "Run the main API entry point."
|
|
129
|
+
setdefault = "Return the value of an item after ensuring it exists."
|
|
130
|
+
sort = "Sort self in place."
|
|
131
|
+
symmetric_difference = "Return the items that are in either self or other, but not both."
|
|
132
|
+
symmetric_difference_update = "Update self with the items that are in either self or other, but not both."
|
|
133
|
+
test = "Run all tests."
|
|
134
|
+
to_bytes = "Return the bytes representation of self."
|
|
135
|
+
union = "Return all items that are in any container."
|
|
136
|
+
values = "Return all values with defined keys."
|
setdoc-1.3.16/MANIFEST.in
DELETED
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
[basic]
|
|
2
|
-
__abs__ = "This magic method implements abs(self)."
|
|
3
|
-
__add__ = "This magic method implements self+other."
|
|
4
|
-
__aiter__ = "This magic method implements async iteration over self."
|
|
5
|
-
__and__ = "This magic method implements self&other."
|
|
6
|
-
__anext__ = "This magic method implements the next step of async iteration."
|
|
7
|
-
__bool__ = "This magic method implements bool(self)."
|
|
8
|
-
__call__ = "This magic method implements calling self."
|
|
9
|
-
__ceil__ = "This magic method implements math.ceil(self)."
|
|
10
|
-
__class_getitem__ = "This magic method implements subscription on the class itself."
|
|
11
|
-
__cmp__ = "This magic method implements all six comparison operators at once."
|
|
12
|
-
__complex__ = "This magic method implements complex(self)."
|
|
13
|
-
__contains__ = "This magic method implements other in self."
|
|
14
|
-
__copy__ = "This magic method implements copy.copy(self)."
|
|
15
|
-
__deepcopy__ = "This magic method implements copy.deepcopy(self)."
|
|
16
|
-
__del__ = "This magic method finalizes self before destruction."
|
|
17
|
-
__delattr__ = "This magic method implements delattr(self, name)."
|
|
18
|
-
__delitem__ = "This magic method implements del self[key]."
|
|
19
|
-
__dir__ = "This magic method implements dir(self)."
|
|
20
|
-
__divmod__ = "This magic method implements divmod(self, other)."
|
|
21
|
-
__eq__ = "This magic method implements self==other."
|
|
22
|
-
__float__ = "This magic method implements float(self)."
|
|
23
|
-
__floor__ = "This magic method implements math.floor(self)."
|
|
24
|
-
__floordiv__ = "This magic method implements self//other."
|
|
25
|
-
__format__ = "This magic method implements format(self, format_spec)."
|
|
26
|
-
__ge__ = "This magic method implements self>=other."
|
|
27
|
-
__getattr__ = "This magic method implements fallback attribute lookup."
|
|
28
|
-
__getattribute__ = "This magic method implements attribute lookup on self."
|
|
29
|
-
__getitem__ = "This magic method implements self[key]."
|
|
30
|
-
__getnewargs__ = "This magic method returns arguments for object reconstruction."
|
|
31
|
-
__getstate__ = "This magic method returns the serializable state of self."
|
|
32
|
-
__gt__ = "This magic method implements self>other."
|
|
33
|
-
__hash__ = "This magic method implements hash(self)."
|
|
34
|
-
__iadd__ = "This magic method implements self+=other."
|
|
35
|
-
__iand__ = "This magic method implements self&=other."
|
|
36
|
-
__ifloordiv__ = "This magic method implements self//=other."
|
|
37
|
-
__ilshift__ = "This magic method implements self<<=other."
|
|
38
|
-
__imatmul__ = "This magic method implements self@=other."
|
|
39
|
-
__imod__ = "This magic method implements self%=other."
|
|
40
|
-
__imul__ = "This magic method implements self*=other."
|
|
41
|
-
__index__ = "This magic method implements operator.index(self)."
|
|
42
|
-
__init__ = "This magic method initializes self."
|
|
43
|
-
__int__ = "This magic method implements int(self)."
|
|
44
|
-
__invert__ = "This magic method implements ~self."
|
|
45
|
-
__ior__ = "This magic method implements self|=other."
|
|
46
|
-
__ipow__ = "This magic method implements self**=other."
|
|
47
|
-
__irshift__ = "This magic method implements self>>=other."
|
|
48
|
-
__isub__ = "This magic method implements self-=other."
|
|
49
|
-
__iter__ = "This magic method implements iter(self)."
|
|
50
|
-
__itruediv__ = "This magic method implements self/=other."
|
|
51
|
-
__ixor__ = "This magic method implements self^=other."
|
|
52
|
-
__le__ = "This magic method implements self<=other."
|
|
53
|
-
__len__ = "This magic method implements len(self)."
|
|
54
|
-
__lshift__ = "This magic method implements self<<other."
|
|
55
|
-
__lt__ = "This magic method implements self<other."
|
|
56
|
-
__matmul__ = "This magic method implements self@other."
|
|
57
|
-
__missing__ = "This magic method provides a fallback for missing keys."
|
|
58
|
-
__mod__ = "This magic method implements self%other."
|
|
59
|
-
__mul__ = "This magic method implements self*other."
|
|
60
|
-
__ne__ = "This magic method implements self!=other."
|
|
61
|
-
__neg__ = "This magic method implements -self."
|
|
62
|
-
__new__ = "This magic method creates a new instance of cls."
|
|
63
|
-
__next__ = "This magic method implements next(self)."
|
|
64
|
-
__or__ = "This magic method implements self|other."
|
|
65
|
-
__pos__ = "This magic method implements +self."
|
|
66
|
-
__post_init__ = "This magic method completes the initialization of self."
|
|
67
|
-
__pow__ = "This magic method implements self**other."
|
|
68
|
-
__radd__ = "This magic method implements other+self."
|
|
69
|
-
__rand__ = "This magic method implements other&self."
|
|
70
|
-
__rdivmod__ = "This magic method implements divmod(other, self)."
|
|
71
|
-
__reduce__ = "This magic method implements object reduction for pickling."
|
|
72
|
-
__reduce_ex__ = "This magic method implements extended object reduction for pickling."
|
|
73
|
-
__repr__ = "This magic method implements repr(self)."
|
|
74
|
-
__reversed__ = "This magic method implements reversed(self)."
|
|
75
|
-
__rfloordiv__ = "This magic method implements other//self."
|
|
76
|
-
__rlshift__ = "This magic method implements other<<self."
|
|
77
|
-
__rmatmul__ = "This magic method implements other@self."
|
|
78
|
-
__rmod__ = "This magic method implements other%self."
|
|
79
|
-
__rmul__ = "This magic method implements other*self."
|
|
80
|
-
__ror__ = "This magic method implements other|self."
|
|
81
|
-
__round__ = "This magic method implements round(self)."
|
|
82
|
-
__rpow__ = "This magic method implements other**self."
|
|
83
|
-
__rrshift__ = "This magic method implements other>>self."
|
|
84
|
-
__rshift__ = "This magic method implements self>>other."
|
|
85
|
-
__rsub__ = "This magic method implements other-self."
|
|
86
|
-
__rtruediv__ = "This magic method implements other/self."
|
|
87
|
-
__rxor__ = "This magic method implements other^self."
|
|
88
|
-
__setattr__ = "This magic method implements setattr(self, name, value)."
|
|
89
|
-
__setitem__ = "This magic method implements self[key]=value."
|
|
90
|
-
__setstate__ = "This magic method restores the serialized state of self."
|
|
91
|
-
__sizeof__ = "This magic method returns the memory size of self."
|
|
92
|
-
__str__ = "This magic method implements str(self)."
|
|
93
|
-
__sub__ = "This magic method implements self-other."
|
|
94
|
-
__subclasshook__ = "This magic method customizes subclass checks."
|
|
95
|
-
__truediv__ = "This magic method implements self/other."
|
|
96
|
-
__xor__ = "This magic method implements self^other."
|
|
97
|
-
add = "This method adds item to self."
|
|
98
|
-
append = "This method appends item at the end of self."
|
|
99
|
-
clear = "This method removes everything from self."
|
|
100
|
-
copy = "This method returns a new copy of self."
|
|
101
|
-
count = "This method counts the occurrences of item."
|
|
102
|
-
data = "This property represents the underlying data."
|
|
103
|
-
difference = "This method returns what is in self but not in other."
|
|
104
|
-
difference_update = "This method removes everything from self that is also in other."
|
|
105
|
-
discard = "This method removes item if it exists."
|
|
106
|
-
extend = "This method extends self by everything in the given iterable."
|
|
107
|
-
fdel = "This function is the deleter of the property."
|
|
108
|
-
fget = "This function is the getter of the property."
|
|
109
|
-
fromkeys = "This classmethod creates a new instance from the given keys."
|
|
110
|
-
fset = "This function is the setter of the property."
|
|
111
|
-
get = "This method returns self[key] if it exists, otherwise default."
|
|
112
|
-
hex = "This method returns a hexadecimal representation of self."
|
|
113
|
-
index = "This method returns the index of the first occurrence."
|
|
114
|
-
insert = "This method inserts value at index."
|
|
115
|
-
intersection = "This method returns everything that is in all containers."
|
|
116
|
-
intersection_update = "This method keeps only what is in both self and other."
|
|
117
|
-
isdisjoint = "This method determines if self and other have no intersection."
|
|
118
|
-
issubset = "This method determines if self is a subset of other."
|
|
119
|
-
issuperset = "This method determines if self is a superset of other."
|
|
120
|
-
items = "This method returns all defined key-value-pairs."
|
|
121
|
-
keys = "This method returns all keys with a defined value."
|
|
122
|
-
main = "This function is the main CLI entry point."
|
|
123
|
-
parse_args = "This method parses args."
|
|
124
|
-
pop = "This method removes and returns an item from self."
|
|
125
|
-
popitem = "This method removes and returns a key-value-pair."
|
|
126
|
-
reverse = "This method reverses self in place."
|
|
127
|
-
run = "This function is the main API entry point."
|
|
128
|
-
setdefault = "This method returns the value of an item after guaranteeing its existence."
|
|
129
|
-
sort = "This method sorts self in place."
|
|
130
|
-
symmetric_difference = "This method returns what is either in self or in other."
|
|
131
|
-
symmetric_difference_update = "This method updates self to what is either in self or other."
|
|
132
|
-
test = "This function runs all the tests."
|
|
133
|
-
to_bytes = "This method returns a bytes representation of self."
|
|
134
|
-
union = "This method returns everything that is in any container."
|
|
135
|
-
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
|