Skip to content

Commit 51e5a0a

Browse files
committed
Release 5.3.4
- bugfix release (supersedes 5.3.3, which had an incomplete fix)
1 parent 62369f7 commit 51e5a0a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# pyfakefs Release Notes
22
The released versions correspond to PyPI releases.
33

4-
## Unreleased
4+
## [Version 5.3.4](https://pypi.python.org/pypi/pyfakefs/5.3.4) (2024-01-19)
5+
Bugfix release.
56

67
### Fixes
78
* fixes handling of unhashable modules which cannot be cached (see [#923](../../issues/923))

pyfakefs/fake_filesystem_unittest.py

+2
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ def setUpPyfakefs(
269269
patch_open_code: PatchMode = PatchMode.OFF,
270270
patch_default_args: bool = False,
271271
use_cache: bool = True,
272+
use_dynamic_patch: bool = True,
272273
) -> None:
273274
"""Bind the file-related modules to the :py:class:`pyfakefs` fake file
274275
system instead of the real file system. Also bind the fake `open()`
@@ -300,6 +301,7 @@ def setUpPyfakefs(
300301
patch_open_code=patch_open_code,
301302
patch_default_args=patch_default_args,
302303
use_cache=use_cache,
304+
use_dynamic_patch=use_dynamic_patch,
303305
)
304306

305307
self._patcher.setUp()

0 commit comments

Comments
 (0)