Commit 51e5a0a 1 parent 62369f7 commit 51e5a0a Copy full SHA for 51e5a0a
File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
# pyfakefs Release Notes
2
2
The released versions correspond to PyPI releases.
3
3
4
- ## Unreleased
4
+ ## [Version 5.3.4](https://pypi.python.org/pypi/pyfakefs/5.3.4) (2024-01-19)
5
+ Bugfix release.
5
6
6
7
### Fixes
7
8
* fixes handling of unhashable modules which cannot be cached (see [#923](../../issues/923))
Original file line number Diff line number Diff line change @@ -269,6 +269,7 @@ def setUpPyfakefs(
269
269
patch_open_code : PatchMode = PatchMode .OFF ,
270
270
patch_default_args : bool = False ,
271
271
use_cache : bool = True ,
272
+ use_dynamic_patch : bool = True ,
272
273
) -> None :
273
274
"""Bind the file-related modules to the :py:class:`pyfakefs` fake file
274
275
system instead of the real file system. Also bind the fake `open()`
@@ -300,6 +301,7 @@ def setUpPyfakefs(
300
301
patch_open_code = patch_open_code ,
301
302
patch_default_args = patch_default_args ,
302
303
use_cache = use_cache ,
304
+ use_dynamic_patch = use_dynamic_patch ,
303
305
)
304
306
305
307
self ._patcher .setUp ()
You can’t perform that action at this time.
0 commit comments