他のすべてが失敗した場合は、ドキュメントを読んでみてください (つまり、ある場合は ;-)。
EasyGui には、別のダウンロードですが、このWeb ページeasygui-docs-0.97.zip
に示されているファイルがあります。関数の API セクションには、次のように記載されています。integerbox()
したがって、あなたの質問に答えるには、いいえ、モジュールの境界チェックを無効にする方法はないようintegerbox()
です。
更新:これは、境界チェックをまったく行わず、境界引数を受け入れないモジュールに追加できる新しい関数です(したがって、ストックバージョンとの厳密な呼び出し互換性はありません)。これを入れる場合は、モジュールのスクリプト ファイルの先頭近くに'integerbox2'
あるリストの定義に、その名前 も必ず追加してください。__all__
easygui
将来の更新がある場合に備えて、モジュールのスクリプト自体への変更を最小限に抑えたい場合は、代わりに新しい関数を別の.py
ファイルに入れてimport integerbox2
から、の上部近くにを追加することができますeasygui.py
(さらに、それを に追加する別の行__all__
)。
追加機能は次のとおりです。
#-------------------------------------------------------------------
# integerbox2 - like integerbox(), but without bounds checking.
#-------------------------------------------------------------------
def integerbox2(msg=""
, title=" "
, default=""
, image=None
, root=None):
"""
Show a box in which a user can enter an integer.
In addition to arguments for msg and title, this function accepts
an integer argument for "default".
The default argument may be None.
When the user enters some text, the text is checked to verify that it
can be converted to an integer, **no bounds checking is done**.
If it can be, the integer (not the text) is returned.
If it cannot, then an error msg is displayed, and the integerbox is
redisplayed.
If the user cancels the operation, None is returned.
:param str msg: the msg to be displayed
:param str title: the window title
:param str default: The default value to return
:param str image: Filename of image to display
:param tk_widget root: Top-level Tk widget
:return: the integer value entered by the user
"""
if not msg:
msg = "Enter an integer value"
# Validate the arguments and convert to integers
exception_string = ('integerbox "{0}" must be an integer. '
'It is >{1}< of type {2}')
if default:
try:
default=int(default)
except ValueError:
raise ValueError(exception_string.format('default', default,
type(default)))
while 1:
reply = enterbox(msg, title, str(default), image=image, root=root)
if reply is None:
return None
try:
reply = int(reply)
except:
msgbox('The value that you entered:\n\t"{}"\n'
'is not an integer.'.format(reply), "Error")
continue
# reply has passed validation check, it is an integer.
return reply