Old-style class in python2, normal class in python3
| 219 | # gh-2561 |
| 220 | # Test if the oldstyle class test is bypassed in python3 |
| 221 | class C: |
| 222 | """Old-style class in python2, normal class in python3""" |
| 223 | pass |
| 224 | |
| 225 | out = open(os.devnull, 'w') |
| 226 | try: |
no outgoing calls