source: trunk/essentials/dev-lang/python/Tools/pybench/NewInstances.py@ 3397

Last change on this file since 3397 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 1.5 KB
Line 
1from pybench import Test
2
3# Check for new-style class support:
4try:
5 class c(object):
6 pass
7except NameError:
8 raise ImportError
9
10###
11
12class CreateNewInstances(Test):
13