| 8 | # From 3.3 _pyio.py. A closure is created here. |
| 9 | # This changes how the default params are found |
| 10 | class StringIO(object): |
| 11 | def __init__(self, initial_value="", newline="\n"): |
| 12 | super(StringIO, self).__init__() |
| 13 | |
| 14 | # No closure created here |
| 15 | class StringIO2(object): |
no outgoing calls
no test coverage detected