xloft 0.1.4__py3-none-any.whl → 0.1.6__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xloft
3
- Version: 0.1.4
3
+ Version: 0.1.6
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
@@ -93,6 +93,8 @@ nt.z # => raise: KeyError
93
93
 
94
94
  nt["x"] # => raise: KeyError
95
95
  nt["y"] # => raise: KeyError
96
+ nt["x"] = 20 # => TypeError
97
+ nt["y"] = "Hi" # => TypeError
96
98
 
97
99
  nt.get("x") # => 10
98
100
  nt.get("y") # => "Hello"
@@ -105,8 +107,8 @@ nt.z = [1, 2, 3] # => raise: AttributeDoesNotSetValue
105
107
 
106
108
  nt.update("x", 20)
107
109
  nt.update("y", "Hi")
108
- nt["x"] # => 20
109
- nt["y"] # => "Hi"
110
+ nt.x # => 20
111
+ nt.y # => "Hi"
110
112
  nt.update("z", [1, 2, 3])
111
113
  nt.z # => [1, 2, 3]
112
114
 
@@ -2,7 +2,7 @@ xloft/__init__.py,sha256=yV847dKh9ROtw1fX5NHvPaHN-9cHYOfu9URQ--OVKXw,107
2
2
  xloft/errors.py,sha256=GYXvi2l01VUDQSs6skiOfQsKLF6tFuUhJMqNkL7BJNI,857
3
3
  xloft/namedtuple.py,sha256=05XP8vgA9_AuSyQyx2G4Wbbf2ZiPffNBjtB-w_VDAe0,1612
4
4
  xloft/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- xloft-0.1.4.dist-info/METADATA,sha256=KpM1_BB1kjid77XXBTQfm6BUVTDnfSluSAuxgma0eXg,5339
6
- xloft-0.1.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
7
- xloft-0.1.4.dist-info/licenses/LICENSE,sha256=2zZINd6m_jNYlowdQImlEizyhSui5cBAJZRhWQURcEc,1095
8
- xloft-0.1.4.dist-info/RECORD,,
5
+ xloft-0.1.6.dist-info/METADATA,sha256=RbJLzlYiegynxSn89iMTbZV2ykpFvwa4-hqu7l4iDWc,5393
6
+ xloft-0.1.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
7
+ xloft-0.1.6.dist-info/licenses/LICENSE,sha256=2zZINd6m_jNYlowdQImlEizyhSui5cBAJZRhWQURcEc,1095
8
+ xloft-0.1.6.dist-info/RECORD,,
File without changes