diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-10-14 15:04:39 (GMT) |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-10-14 15:04:39 (GMT) |
| commit | 8022314fc2e8d6a4133c761633ab4e22404319e8 (patch) | |
| tree | d45bd35cbb6fa3a6c80beaa329af2c049e35b81a /Lib/packaging/compiler/bcppcompiler.py | |
| parent | d139b994266e0fcc90ac30b49dc9cc047c222961 (diff) | |
| download | cpython-8022314fc2e8d6a4133c761633ab4e22404319e8.zip cpython-8022314fc2e8d6a4133c761633ab4e22404319e8.tar.gz cpython-8022314fc2e8d6a4133c761633ab4e22404319e8.tar.bz2 | |
Cleanup in packaging: super considered super
Diffstat (limited to 'Lib/packaging/compiler/bcppcompiler.py')
| -rw-r--r-- | Lib/packaging/compiler/bcppcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/compiler/bcppcompiler.py b/Lib/packaging/compiler/bcppcompiler.py index 477cf93..a4aa2fa 100644 --- a/Lib/packaging/compiler/bcppcompiler.py +++ b/Lib/packaging/compiler/bcppcompiler.py @@ -48,7 +48,7 @@ class BCPPCompiler(CCompiler) : def __init__(self, verbose=0, dry_run=False, force=False): - CCompiler.__init__(self, verbose, dry_run, force) + super(BCPPCompiler, self).__init__(verbose, dry_run, force) # These executables are assumed to all be in the path. # Borland doesn't seem to use any special registry settings to |
