New submission from mike c <coolbutusel...@gmail.com>:

Could a test be added to ./Lib/test/test_defaultdict.py to test for TypeError 
being thrown when the the first argument to collections.defaultdict is not 
callable?  

pypy does not behave the same way as CPython 2.7.2 as the problem is not 
covered in the testcases.

e.g.
def test_callable_arg:
    d1 = defaultdict({})
    self.assertRaises(TypeError)  # TypeError: first argument must be callable

----------
components: Tests
messages: 148868
nosy: mike.c
priority: normal
severity: normal
status: open
title: add test for defaultdict with non-callable first argument
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13531>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to