- avandierast implemented `thenCallOriginalImplementation`. See 60
::
Let `os.path.exists` use the real filesystem (often needed when the testing framework needs itself a working `os.path.exists` implementation) *but* fake a `.flake8` file. when(os.path).exists(...).thenCallOriginalImplementation() when(os.path).exists('.flake8').thenReturn(True)
1.3.5
-------------------------------
- Restore compatibility with Python 2.7
1.3.3
-----------------------------
- Hotfix: Correctly unstub methods extracted to the module level, for example ``random.randint()`` et.al. from the standard library. See 53
1.3.2
-----------------------------
- Let `mock(spec=SomeClass)` work just as `mock(SomeClass)`
1.3.1
-----------------------------
- Reimplement `captor` to capture only during execution phase of a test.