python-redux 0.17.2__tar.gz → 0.17.2a0__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.
Files changed (20) hide show
  1. {python_redux-0.17.2 → python_redux-0.17.2a0}/PKG-INFO +1 -1
  2. {python_redux-0.17.2 → python_redux-0.17.2a0}/pyproject.toml +1 -1
  3. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/autorun.py +0 -1
  4. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/basic_types.py +0 -2
  5. {python_redux-0.17.2 → python_redux-0.17.2a0}/LICENSE +0 -0
  6. {python_redux-0.17.2 → python_redux-0.17.2a0}/README.md +0 -0
  7. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/__init__.py +0 -0
  8. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/combine_reducers.py +0 -0
  9. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/main.py +0 -0
  10. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/py.typed +0 -0
  11. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/serialization_mixin.py +0 -0
  12. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux/side_effect_runner.py +0 -0
  13. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/__init__.py +0 -0
  14. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/fixtures/__init__.py +0 -0
  15. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/fixtures/event_loop.py +0 -0
  16. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/fixtures/monitor.py +0 -0
  17. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/fixtures/snapshot.py +0 -0
  18. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/fixtures/store.py +0 -0
  19. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/fixtures/wait_for.py +0 -0
  20. {python_redux-0.17.2 → python_redux-0.17.2a0}/redux_pytest/plugin.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-redux
3
- Version: 0.17.2
3
+ Version: 0.17.2a0
4
4
  Summary: Redux implementation for Python
5
5
  Home-page: https://github.com/sassanh/python-redux/
6
6
  License: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-redux"
3
- version = "0.17.2"
3
+ version = "0.17.2a0"
4
4
  description = "Redux implementation for Python"
5
5
  authors = ["Sassan Haradji <sassanh@gmail.com>"]
6
6
  license = "Apache-2.0"
@@ -75,7 +75,6 @@ class Autorun(
75
75
  ],
76
76
  options: AutorunOptions[AutorunOriginalReturnType],
77
77
  ) -> None:
78
- self.__name__ = func.__name__
79
78
  self._store = store
80
79
  self._selector = selector
81
80
  self._comparator = comparator
@@ -168,8 +168,6 @@ class AutorunReturnType(
168
168
 
169
169
  def unsubscribe(self: AutorunReturnType) -> None: ...
170
170
 
171
- __name__: str
172
-
173
171
 
174
172
  class AutorunDecorator(
175
173
  Protocol,
File without changes
File without changes