@@ -7,14 +7,18 @@ The release versions are PyPi releases.
7
7
* Added helper method ` TestCase.copyRealFile() ` to copy a file from
8
8
the real file system to the fake file system. This makes it easy to use
9
9
files from the real file system in your tests.
10
- * A pytest plugin is now installed with pyfakefs that exports ` fs `
11
- as a pytest fixture.
10
+ * A pytest plugin is now installed with pyfakefs that exports the
11
+ fake filesystem as pytest fixture ` fs ` .
12
+
13
+ #### Fixes
14
+ * Incorrect disk usage calculation if too large file created (#155 )
12
15
13
16
## Version 3.0
14
17
15
18
#### New Features
16
19
* support for path-like objects as arguments in fake ` os `
17
20
and ` os.path ` modules (Python >= 3.6)
21
+ * some changes to make pyfakefs work with Python 3.6
18
22
* support for ` pathlib ` module (Python >= 3.4)
19
23
* support for ` os.replace ` (Python >= 3.3)
20
24
* ` os.access ` , ` os.chmod ` , ` os.chown ` , ` os.stat ` , ` os.utime ` :
@@ -23,12 +27,16 @@ The release versions are PyPi releases.
23
27
* option to not fake modules named ` path `
24
28
* ` glob.glob ` , ` glob.iglob ` : support for ` recursive ` argument (Python >= 3.5)
25
29
* support for ` glob.iglob `
30
+
31
+ #### Infrastructure
32
+ * added [ auto-generated documentation] ( http://jmcgeheeiv.github.io/pyfakefs/ )
26
33
27
34
#### Fixes
28
35
* shutil.move incorrectly moves directories (#145 )
29
36
* Missing support for 'x' mode in ` open ` (Python >= 3.3) (#147 )
30
37
* Incorrect exception type in Posix if path ancestor is a file (#139 )
31
38
* Exception handling when using ` Patcher ` with py.test (#135 )
39
+ * Fake ` os.listdir ` returned sorted instead of unsorted entries
32
40
33
41
## Version 2.9
34
42
0 commit comments