: [Python-Dev] [Python-checkins] cpython: PEP 417: Adding
unittest.mock
On 14 Mar 2012, at 13:46, Terry Reedy wrote:
> On 3/14/2012 4:22 PM, Michael Foord wrote:
>>
>> On 14 Mar 2012, at 13:08, Terry Reedy wrote:
>>
>>> On 3/14/2012 3:25 PM, michael.foord wrote:
>
On 14 Mar 2012, at 13:46, Terry Reedy wrote:
> On 3/14/2012 4:22 PM, Michael Foord wrote:
>>
>> On 14 Mar 2012, at 13:08, Terry Reedy wrote:
>>
>>> On 3/14/2012 3:25 PM, michael.foord wrote:
+# mock.py +# Test tools for mocking and patching.
>
>>> Should there be a note here about restric
On 3/14/2012 4:22 PM, Michael Foord wrote:
On 14 Mar 2012, at 13:08, Terry Reedy wrote:
On 3/14/2012 3:25 PM, michael.foord wrote:
+# mock.py +# Test tools for mocking and patching.
Should there be a note here about restrictions on editing this
file? I notice that there are things like
+
On 14 Mar 2012, at 13:08, Terry Reedy wrote:
> On 3/14/2012 3:25 PM, michael.foord wrote:
>> +# mock.py
>> +# Test tools for mocking and patching.
>
> Should there be a note here about restrictions on editing this file?
> I notice that there are things like
>
> > +class OldStyleClass:
> > +
On 3/14/2012 3:25 PM, michael.foord wrote:
+# mock.py
+# Test tools for mocking and patching.
Should there be a note here about restrictions on editing this file?
I notice that there are things like
> +class OldStyleClass:
> +pass
> +ClassType = type(OldStyleClass)
which are only present