summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/file/filesupport.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-12-26 20:45:43 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-12-26 20:45:43 (GMT)
commit248f6f1f73ffff0e3a4445c59009ecc3e64bca1e (patch)
tree7960594fa7deb0d860198f0af35ee438794204b1 /Mac/Modules/file/filesupport.py
parent9a40c1c2994f596b6a769201b71c54e0530e7220 (diff)
downloadcpython-248f6f1f73ffff0e3a4445c59009ecc3e64bca1e.zip
cpython-248f6f1f73ffff0e3a4445c59009ecc3e64bca1e.tar.gz
cpython-248f6f1f73ffff0e3a4445c59009ecc3e64bca1e.tar.bz2
Second-argument alias methods were generated with a variation on
MethodGenerator, this should be OSErrMethodGenerator.
Diffstat (limited to 'Mac/Modules/file/filesupport.py')
-rw-r--r--Mac/Modules/file/filesupport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/file/filesupport.py b/Mac/Modules/file/filesupport.py
index ffe6c0e..7ba0b47 100644
--- a/Mac/Modules/file/filesupport.py
+++ b/Mac/Modules/file/filesupport.py
@@ -527,7 +527,7 @@ class AliasDefinition(PEP253Mixin, ObjectDefinition):
# Alias methods come in two flavors: those with the alias as arg1 and
# those with the alias as arg 2.
-class Arg2MethodGenerator(MethodGenerator):
+class Arg2MethodGenerator(OSErrMethodGenerator):
"""Similar to MethodGenerator, but has self as second argument"""
def parseArgumentList(self, args):