xloft 0.1.10__py3-none-any.whl → 0.1.11__py3-none-any.whl

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.

Potentially problematic release.


This version of xloft might be problematic. Click here for more details.

xloft/namedtuple.py CHANGED
@@ -96,11 +96,11 @@ class NamedTuple:
96
96
  return self.__dict__[name]
97
97
 
98
98
  def __setattr__(self, name: str, value: Any) -> None:
99
- """Fail Setter."""
99
+ """Blocked Setter."""
100
100
  raise AttributeDoesNotSetValue(name)
101
101
 
102
102
  def __delattr__(self, name: str) -> None:
103
- """Fail Deleter."""
103
+ """Blocked Deleter."""
104
104
  raise AttributeCannotBeDelete(name)
105
105
 
106
106
  def get(self, key: str) -> Any:
@@ -129,7 +129,7 @@ class NamedTuple:
129
129
  Attention: This is an uncharacteristic action for the type `tuple`.
130
130
 
131
131
  Args:
132
- name: Key name.
132
+ key: Key name.
133
133
  value: Value of key.
134
134
 
135
135
  Examples:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xloft
3
- Version: 0.1.10
3
+ Version: 0.1.11
4
4
  Summary: (XLOFT) X-Library of tools
5
5
  Project-URL: Homepage, https://github.com/kebasyaty/xloft
6
6
  Project-URL: Repository, https://github.com/kebasyaty/xloft
@@ -66,6 +66,10 @@ Description-Content-Type: text/markdown
66
66
 
67
67
  ##
68
68
 
69
+ ## Documentation
70
+
71
+ Online browsable documentation is available at [https://kebasyaty.github.io/xloft/](https://kebasyaty.github.io/xloft/ "Documentation").
72
+
69
73
  ## Requirements
70
74
 
71
75
  [View the list of requirements.](https://github.com/kebasyaty/xloft/blob/main/REQUIREMENTS.md "View the list of requirements.")
@@ -0,0 +1,8 @@
1
+ xloft/__init__.py,sha256=YtzkovVqW8hLxBXxM0U7K_qqfU8XBJ1pzX6tAgTUNFw,215
2
+ xloft/errors.py,sha256=GYXvi2l01VUDQSs6skiOfQsKLF6tFuUhJMqNkL7BJNI,857
3
+ xloft/namedtuple.py,sha256=NT98kIuVoPf6LHHVaPAnveK9KdeBjxGlO_AZtpCnkWM,6745
4
+ xloft/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ xloft-0.1.11.dist-info/METADATA,sha256=NAuMTBKl9QAEiTEv7WHzxl7wPASqLDYn_P5YSjHVhDg,5834
6
+ xloft-0.1.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
7
+ xloft-0.1.11.dist-info/licenses/LICENSE,sha256=2zZINd6m_jNYlowdQImlEizyhSui5cBAJZRhWQURcEc,1095
8
+ xloft-0.1.11.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- xloft/__init__.py,sha256=YtzkovVqW8hLxBXxM0U7K_qqfU8XBJ1pzX6tAgTUNFw,215
2
- xloft/errors.py,sha256=GYXvi2l01VUDQSs6skiOfQsKLF6tFuUhJMqNkL7BJNI,857
3
- xloft/namedtuple.py,sha256=yVeP4UayzPaxi0NmpB__ILmw9sZbZpy9v5hEps1bv7E,6740
4
- xloft/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- xloft-0.1.10.dist-info/METADATA,sha256=7ckc9ufBvrltvJA5Y4fC3YPI3BS6NbESt6-UoR0vk00,5678
6
- xloft-0.1.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
7
- xloft-0.1.10.dist-info/licenses/LICENSE,sha256=2zZINd6m_jNYlowdQImlEizyhSui5cBAJZRhWQURcEc,1095
8
- xloft-0.1.10.dist-info/RECORD,,
File without changes