setdoc 1.2.2__tar.gz → 1.2.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setdoc
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: This project helps to set the doc string.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -24,7 +24,7 @@ keywords = []
24
24
  name = "setdoc"
25
25
  readme = "README.rst"
26
26
  requires-python = ">=3.11"
27
- version = "1.2.2"
27
+ version = "1.2.3"
28
28
 
29
29
  [project.license]
30
30
  file = "LICENSE.txt"
@@ -1,16 +1,23 @@
1
1
  [basic]
2
+ __abs__ = "This magic method implements abs(self)."
2
3
  __add__ = "This magic method implements self+other."
3
4
  __and__ = "This magic method implements self&other."
4
5
  __bool__ = "This magic method implements bool(self)."
6
+ __call__ = "This magic method implements calling self."
7
+ __ceil__ = "This magic method implements math.ceil(self)."
8
+ __complex__ = "This magic method implements complex(self)."
5
9
  __contains__ = "This magic method implements other in self."
6
10
  __delitem__ = "This magic method implements del self[key]."
7
11
  __divmod__ = "This magic method implements divmod(self, other)."
8
12
  __eq__ = "This magic method implements self==other."
13
+ __float__ = "This magic method implements float(self)."
14
+ __floor__ = "This magic method implements math.floor(self)."
9
15
  __floordiv__ = "This magic method implements self//other."
10
16
  __format__ = "This magic method implements format(self, format_spec)."
11
17
  __ge__ = "This magic method implements self>=other."
12
18
  __getitem__ = "This magic method implements self[key]."
13
19
  __gt__ = "This magic method implements self>other."
20
+ __hash__ = "This magic method implements hash(self)."
14
21
  __iadd__ = "This magic method implements self+=other."
15
22
  __iand__ = "This magic method implements self&=other."
16
23
  __ifloordiv__ = "This magic method implements self//=other."
@@ -18,15 +25,17 @@ __ilshift__ = "This magic method implements self<<=other."
18
25
  __imatmul__ = "This magic method implements self@=other."
19
26
  __imod__ = "This magic method implements self%=other."
20
27
  __imul__ = "This magic method implements self*=other."
28
+ __index__ = "This magic method implements operator.index(self)."
21
29
  __ior__ = "This magic method implements self|=other."
22
30
  __ipow__ = "This magic method implements self**=other."
23
31
  __irshift__ = "This magic method implements self>>=other."
24
32
  __isub__ = "This magic method implements self-=other."
33
+ __iter__ = "This magic method implements iter(self)."
25
34
  __itruediv__ = "This magic method implements self/=other."
26
35
  __ixor__ = "This magic method implements self^=other."
27
- __iter__ = "This magic method implements iter(self)."
28
36
  __init__ = "This magic method initializes self."
29
37
  __int__ = "This magic method implements int(self)."
38
+ __invert__ = "This magic method implements ~self."
30
39
  __le__ = "This magic method implements self<=other."
31
40
  __len__ = "This magic method implements len(self)."
32
41
  __lshift__ = "This magic method implements self<<other."
@@ -36,6 +45,7 @@ __mod__ = "This magic method implements self%other."
36
45
  __mul__ = "This magic method implements self*other."
37
46
  __ne__ = "This magic method implements self!=other."
38
47
  __neg__ = "This magic method implements -self."
48
+ __next__ = "This magic method implements next(self)."
39
49
  __or__ = "This magic method implements self|other."
40
50
  __pos__ = "This magic method implements +self."
41
51
  __pow__ = "This magic method implements self**other."
@@ -50,6 +60,7 @@ __rmatmul__ = "This magic method implements other@self."
50
60
  __rmod__ = "This magic method implements other%self."
51
61
  __rmul__ = "This magic method implements other*self."
52
62
  __ror__ = "This magic method implements other|self."
63
+ __round__ = "This magic method implements round(self)."
53
64
  __rpow__ = "This magic method implements other**self."
54
65
  __rrshift__ = "This magic method implements other>>self."
55
66
  __rshift__ = "This magic method implements self>>other."
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: setdoc
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: This project helps to set the doc string.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
File without changes
File without changes
File without changes
File without changes
File without changes