File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11# pyfakefs Release Notes
22The released versions correspond to PyPI releases.
33
4- ## [Version 5.3.3 ](https://pypi.python.org/pypi/pyfakefs/5.3.3 ) (2024-01-19)
4+ ## [Version 5.3.4 ](https://pypi.python.org/pypi/pyfakefs/5.3.4 ) (2024-01-19)
55Bugfix release.
66
77### Fixes
Original file line number Diff line number Diff line change 6464# built documents.
6565#
6666# The short X.Y version.
67- version = "5.3.3 "
67+ version = "5.3.4 "
6868# The full version, including alpha/beta/rc tags.
69- release = "5.3.3 "
69+ release = "5.3.4 "
7070
7171# The language for content autogenerated by Sphinx. Refer to documentation
7272# for a list of supported languages.
Original file line number Diff line number Diff line change 1- __version__ = "5.3.3 "
1+ __version__ = "5.3.4 "
Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments