python-utils 3.8.1__tar.gz → 3.8.2__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 (43) hide show
  1. {python-utils-3.8.1/python_utils.egg-info → python-utils-3.8.2}/PKG-INFO +1 -1
  2. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/__about__.py +1 -1
  3. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/time.py +1 -1
  4. {python-utils-3.8.1 → python-utils-3.8.2/python_utils.egg-info}/PKG-INFO +1 -1
  5. {python-utils-3.8.1 → python-utils-3.8.2}/LICENSE +0 -0
  6. {python-utils-3.8.1 → python-utils-3.8.2}/MANIFEST.in +0 -0
  7. {python-utils-3.8.1 → python-utils-3.8.2}/README.rst +0 -0
  8. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/__init__.py +0 -0
  9. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/requirements.txt +0 -0
  10. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_aio.py +0 -0
  11. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_containers.py +0 -0
  12. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_decorators.py +0 -0
  13. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_generators.py +0 -0
  14. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_import.py +0 -0
  15. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_logger.py +0 -0
  16. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_python_utils.py +0 -0
  17. {python-utils-3.8.1 → python-utils-3.8.2}/_python_utils_tests/test_time.py +0 -0
  18. {python-utils-3.8.1 → python-utils-3.8.2}/coverage.rc +0 -0
  19. {python-utils-3.8.1 → python-utils-3.8.2}/pyproject.toml +0 -0
  20. {python-utils-3.8.1 → python-utils-3.8.2}/pytest.ini +0 -0
  21. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/__init__.py +0 -0
  22. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/aio.py +0 -0
  23. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/compat.py +0 -0
  24. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/containers.py +0 -0
  25. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/converters.py +0 -0
  26. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/decorators.py +0 -0
  27. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/exceptions.py +0 -0
  28. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/formatters.py +0 -0
  29. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/generators.py +0 -0
  30. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/import_.py +0 -0
  31. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/logger.py +0 -0
  32. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/loguru.py +0 -0
  33. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/py.typed +0 -0
  34. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/terminal.py +0 -0
  35. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils/types.py +0 -0
  36. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils.egg-info/SOURCES.txt +0 -0
  37. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils.egg-info/dependency_links.txt +0 -0
  38. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils.egg-info/requires.txt +0 -0
  39. {python-utils-3.8.1 → python-utils-3.8.2}/python_utils.egg-info/top_level.txt +0 -0
  40. {python-utils-3.8.1 → python-utils-3.8.2}/requirements.txt +0 -0
  41. {python-utils-3.8.1 → python-utils-3.8.2}/setup.cfg +0 -0
  42. {python-utils-3.8.1 → python-utils-3.8.2}/setup.py +0 -0
  43. {python-utils-3.8.1 → python-utils-3.8.2}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-utils
3
- Version: 3.8.1
3
+ Version: 3.8.2
4
4
  Summary: Python Utils is a module with some convenient utilities not included with the standard Python install
5
5
  Home-page: https://github.com/WoLpH/python-utils
6
6
  Author: Rick van Hattem
@@ -7,4 +7,4 @@ __description__: str = (
7
7
  )
8
8
  __url__: str = 'https://github.com/WoLpH/python-utils'
9
9
  # Omit type info due to automatic versioning script
10
- __version__ = '3.8.1'
10
+ __version__ = '3.8.2'
@@ -130,7 +130,7 @@ def format_time(
130
130
 
131
131
  try: # pragma: no cover
132
132
  dt = datetime.datetime.fromtimestamp(seconds)
133
- except ValueError: # pragma: no cover
133
+ except (ValueError, OSError): # pragma: no cover
134
134
  dt = datetime.datetime.max
135
135
  return str(dt)
136
136
  elif isinstance(timestamp, datetime.date):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-utils
3
- Version: 3.8.1
3
+ Version: 3.8.2
4
4
  Summary: Python Utils is a module with some convenient utilities not included with the standard Python install
5
5
  Home-page: https://github.com/WoLpH/python-utils
6
6
  Author: Rick van Hattem
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes