mirror of
https://github.com/python/cpython.git
synced 2025-07-28 21:55:21 +00:00
Second part of fix for #493826: regenerated suite modules so errn exists but == 0 doesn't signal an error.
Bugfix candidate.
This commit is contained in:
parent
18983536dc
commit
95df3fd159
33 changed files with 717 additions and 1042 deletions
|
@ -1,7 +1,7 @@
|
|||
"""Suite Required Suite: Events that every application should support
|
||||
Level 1, version 1
|
||||
|
||||
Generated from Macintosh HD:Internet:Internet-programma's:Internet Explorer 4.5-map:Internet Explorer 4.5
|
||||
Generated from Moes:Applications (Mac OS 9):Internet Explorer 5:Internet Explorer
|
||||
AETE/AEUT resource version 1/0, language 0, script 0
|
||||
"""
|
||||
|
||||
|
@ -26,7 +26,7 @@ class Required_Suite_Events(Required_Suite_Events):
|
|||
|
||||
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
||||
_arguments, _attributes)
|
||||
if _arguments.has_key('errn'):
|
||||
if _arguments.get('errn', 0):
|
||||
raise aetools.Error, aetools.decodeerror(_arguments)
|
||||
# XXXX Optionally decode result
|
||||
if _arguments.has_key('----'):
|
||||
|
@ -46,7 +46,7 @@ class Required_Suite_Events(Required_Suite_Events):
|
|||
|
||||
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
||||
_arguments, _attributes)
|
||||
if _arguments.has_key('errn'):
|
||||
if _arguments.get('errn', 0):
|
||||
raise aetools.Error, aetools.decodeerror(_arguments)
|
||||
# XXXX Optionally decode result
|
||||
if _arguments.has_key('----'):
|
||||
|
@ -66,7 +66,7 @@ class Required_Suite_Events(Required_Suite_Events):
|
|||
|
||||
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
||||
_arguments, _attributes)
|
||||
if _arguments.has_key('errn'):
|
||||
if _arguments.get('errn', 0):
|
||||
raise aetools.Error, aetools.decodeerror(_arguments)
|
||||
# XXXX Optionally decode result
|
||||
if _arguments.has_key('----'):
|
||||
|
@ -85,7 +85,7 @@ class Required_Suite_Events(Required_Suite_Events):
|
|||
|
||||
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
||||
_arguments, _attributes)
|
||||
if _arguments.has_key('errn'):
|
||||
if _arguments.get('errn', 0):
|
||||
raise aetools.Error, aetools.decodeerror(_arguments)
|
||||
# XXXX Optionally decode result
|
||||
if _arguments.has_key('----'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue