python-iterutils 0.0.3__tar.gz → 0.0.3.1__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.1
2
2
  Name: python-iterutils
3
- Version: 0.0.3
3
+ Version: 0.0.3.1
4
4
  Summary: Python another itertools.
5
5
  Home-page: https://github.com/ChenyangGao/web-mount-packs/tree/main/python-module/python-iterutils
6
6
  License: MIT
@@ -93,7 +93,8 @@ def wrap_iter(
93
93
  break
94
94
  except BaseException as e:
95
95
  if callable(callexit):
96
- callexit(it, e)
96
+ if not callexit(it, e):
97
+ raise
97
98
  else:
98
99
  raise
99
100
  finally:
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-iterutils"
3
- version = "0.0.3"
3
+ version = "0.0.3.1"
4
4
  description = "Python another itertools."
5
5
  authors = ["ChenyangGao <wosiwujm@gmail.com>"]
6
6
  license = "MIT"