mirror of
https://github.com/python/cpython.git
synced 2025-09-18 22:50:26 +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 Earlier terms: Terms that have been renamed
|
||||
Level 1, version 1
|
||||
|
||||
Generated from Macintosh HD:Systeemmap:Finder
|
||||
Generated from Moes:Systeemmap:Finder
|
||||
AETE/AEUT resource version 0/144, language 0, script 0
|
||||
"""
|
||||
|
||||
|
@ -401,8 +401,10 @@ class modal(aetools.NProperty):
|
|||
"""modal - Is the window modal? """
|
||||
which = 'pmod'
|
||||
want = 'bool'
|
||||
|
||||
resizable = titled
|
||||
class resizable(aetools.NProperty):
|
||||
"""resizable - Is the window resizable? """
|
||||
which = 'prsz'
|
||||
want = 'bool'
|
||||
class zoomable(aetools.NProperty):
|
||||
"""zoomable - Is the window zoomable? """
|
||||
which = 'iszm'
|
||||
|
@ -615,110 +617,111 @@ window._elemdict = {
|
|||
# Indices of types declared in this module
|
||||
#
|
||||
_classdeclarations = {
|
||||
'iwnd' : information_window,
|
||||
'cwnd' : container_window,
|
||||
'inlf' : internet_location,
|
||||
'appf' : application_file,
|
||||
'prcs' : process,
|
||||
'cobj' : item,
|
||||
'cwin' : window,
|
||||
'pcda' : accessory_process,
|
||||
'ctrs' : trash_2d_object,
|
||||
'capp' : application,
|
||||
'dsut' : accessory_suitcase,
|
||||
'cprf' : preferences,
|
||||
'sctr' : sharable_container,
|
||||
'dsut' : accessory_suitcase,
|
||||
'capp' : application,
|
||||
'ctrs' : trash_2d_object,
|
||||
'pcda' : accessory_process,
|
||||
'cwin' : window,
|
||||
'iwnd' : information_window,
|
||||
'prcs' : process,
|
||||
'appf' : application_file,
|
||||
'inlf' : internet_location,
|
||||
'cwnd' : container_window,
|
||||
'cobj' : item,
|
||||
}
|
||||
|
||||
_propdeclarations = {
|
||||
'pidx' : index,
|
||||
'scda' : show_creation_date,
|
||||
'qpro' : properties,
|
||||
'fshr' : file_sharing,
|
||||
'pvew' : view,
|
||||
'pusd' : partition_space_used,
|
||||
'aslk' : locked,
|
||||
'sdat' : show_modification_date,
|
||||
'issl' : selected,
|
||||
'pvis' : visible,
|
||||
'slbl' : show_label,
|
||||
'wshd' : collapsed,
|
||||
'cdis' : disk,
|
||||
'usme' : use_simple_menus,
|
||||
'sord' : sort_direction,
|
||||
'sexp' : exported,
|
||||
'comt' : comment,
|
||||
'dscr' : description,
|
||||
'svew' : previous_list_view,
|
||||
'svrs' : show_version,
|
||||
'sknd' : show_kind,
|
||||
'phys' : physical_size,
|
||||
'iarr' : spatial_view_arrangement,
|
||||
'smou' : mounted,
|
||||
'posn' : position,
|
||||
'cobj' : item,
|
||||
'revt' : remote_events,
|
||||
'asmo' : modification_date,
|
||||
'ssiz' : show_size,
|
||||
'pnam' : name,
|
||||
'mprt' : minimum_partition_size,
|
||||
'cwin' : window,
|
||||
'pcli' : clipboard,
|
||||
'spro' : protected,
|
||||
'sprt' : suggested_partition_size,
|
||||
'pisf' : frontmost,
|
||||
'sele' : selection,
|
||||
'pmod' : modal,
|
||||
'fcrt' : creator_type,
|
||||
'shar' : shared,
|
||||
'dwnd' : content_space,
|
||||
'zumf' : zoomed_full_size,
|
||||
'sfsz' : calculate_folder_sizes,
|
||||
'ID ' : id,
|
||||
'c@#^' : _3c_Inheritance_3e_,
|
||||
'pspd' : stationery,
|
||||
'iprv' : inherited_privileges,
|
||||
'pfrp' : Finder_preferences,
|
||||
'barr' : button_view_arrangement,
|
||||
'ownr' : owner_privileges,
|
||||
'drwr' : popup,
|
||||
'sgrp' : group,
|
||||
'ptsz' : size,
|
||||
'kind' : kind,
|
||||
'pull' : pulled_open,
|
||||
'abbx' : about_this_computer,
|
||||
'ctnr' : container,
|
||||
'ascd' : creation_date,
|
||||
'desk' : desktop,
|
||||
'warn' : warn_before_emptying,
|
||||
'iszm' : zoomable,
|
||||
'isab' : scriptable,
|
||||
'gstp' : guest_privileges,
|
||||
'vers' : version,
|
||||
'dela' : delay_before_springing,
|
||||
'ptit' : titled,
|
||||
'uswg' : use_wide_grid,
|
||||
'cuss' : has_custom_view_settings,
|
||||
'labi' : label_index,
|
||||
'iwnd' : information_window,
|
||||
'file' : file,
|
||||
'asty' : file_type,
|
||||
'appt' : partition_size,
|
||||
'scom' : show_comments,
|
||||
'pins' : insertion_location,
|
||||
'pbnd' : bounds,
|
||||
'urdt' : use_relative_dates,
|
||||
'fsup' : sharing_starting_up,
|
||||
'sown' : owner,
|
||||
'isfl' : floating,
|
||||
'hclb' : closeable,
|
||||
'iimg' : icon,
|
||||
'gppr' : group_privileges,
|
||||
'asdr' : folder,
|
||||
'sprg' : spring_open_folders,
|
||||
'pzum' : zoomed,
|
||||
'ver2' : product_version,
|
||||
'pbnd' : bounds,
|
||||
'asdr' : folder,
|
||||
'gppr' : group_privileges,
|
||||
'pidx' : index,
|
||||
'isfl' : floating,
|
||||
'sown' : owner,
|
||||
'fsup' : sharing_starting_up,
|
||||
'urdt' : use_relative_dates,
|
||||
'scom' : show_comments,
|
||||
'appt' : partition_size,
|
||||
'iimg' : icon,
|
||||
'asty' : file_type,
|
||||
'uswg' : use_wide_grid,
|
||||
'ptit' : titled,
|
||||
'dela' : delay_before_springing,
|
||||
'cuss' : has_custom_view_settings,
|
||||
'gstp' : guest_privileges,
|
||||
'isab' : scriptable,
|
||||
'iszm' : zoomable,
|
||||
'sord' : sort_direction,
|
||||
'pins' : insertion_location,
|
||||
'pspd' : stationery,
|
||||
'desk' : desktop,
|
||||
'ascd' : creation_date,
|
||||
'ctnr' : container,
|
||||
'abbx' : about_this_computer,
|
||||
'pull' : pulled_open,
|
||||
'kind' : kind,
|
||||
'ptsz' : size,
|
||||
'hclb' : closeable,
|
||||
'sgrp' : group,
|
||||
'mfre' : largest_free_block,
|
||||
'revt' : remote_events,
|
||||
'drwr' : popup,
|
||||
'iwnd' : information_window,
|
||||
'ownr' : owner_privileges,
|
||||
'pzum' : zoomed,
|
||||
'prsz' : resizable,
|
||||
'barr' : button_view_arrangement,
|
||||
'pfrp' : Finder_preferences,
|
||||
'zumf' : zoomed_full_size,
|
||||
'iprv' : inherited_privileges,
|
||||
'vers' : version,
|
||||
'c@#^' : _3c_Inheritance_3e_,
|
||||
'ID ' : id,
|
||||
'sfsz' : calculate_folder_sizes,
|
||||
'file' : file,
|
||||
'dwnd' : content_space,
|
||||
'shar' : shared,
|
||||
'pmod' : modal,
|
||||
'sele' : selection,
|
||||
'pisf' : frontmost,
|
||||
'sprt' : suggested_partition_size,
|
||||
'spro' : protected,
|
||||
'pcli' : clipboard,
|
||||
'cwin' : window,
|
||||
'mprt' : minimum_partition_size,
|
||||
'sprg' : spring_open_folders,
|
||||
'ssiz' : show_size,
|
||||
'asmo' : modification_date,
|
||||
'svrs' : show_version,
|
||||
'cobj' : item,
|
||||
'posn' : position,
|
||||
'iarr' : spatial_view_arrangement,
|
||||
'phys' : physical_size,
|
||||
'sknd' : show_kind,
|
||||
'labi' : label_index,
|
||||
'svew' : previous_list_view,
|
||||
'dscr' : description,
|
||||
'comt' : comment,
|
||||
'sexp' : exported,
|
||||
'usme' : use_simple_menus,
|
||||
'cdis' : disk,
|
||||
'wshd' : collapsed,
|
||||
'slbl' : show_label,
|
||||
'warn' : warn_before_emptying,
|
||||
'scda' : show_creation_date,
|
||||
'pvis' : visible,
|
||||
'issl' : selected,
|
||||
'smou' : mounted,
|
||||
'sdat' : show_modification_date,
|
||||
'fcrt' : creator_type,
|
||||
'pusd' : partition_space_used,
|
||||
'pvew' : view,
|
||||
'fshr' : file_sharing,
|
||||
'qpro' : properties,
|
||||
'aslk' : locked,
|
||||
'pnam' : name,
|
||||
}
|
||||
|
||||
_compdeclarations = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue