「AttributeError」を含む例文一覧(8)

  • uses standard Python exceptions such as TypeError and AttributeError.
    は、TypeError や AttributeError といった標準の Python 例外を使います。 - Python
  • This method should return the (computed) attribute value or raise an AttributeError exception.
    このメソッドは (計算された) 属性値を返すか、AttributeError 例外を送出しなければなりません。 - Python
  • Attempts to assign to an unlisted variable name raises AttributeError.
    列挙されていない変数名を使って代入しようとした場合、AttributeError が送出されます。 - Python
  • If this attribute is not available, the exceptionAttributeError
    問い合わせた属性が得られない場合、例外AttributeError が送出されます。 - Python
  • If the named attribute does not exist, default is returned if provided,otherwise AttributeError is raised.
    指定された属性が存在しない場合、default が与えられている場合にはしれが返されます。 そうでない場合には AttributeErrorが送出されます。 - Python
  • Thatobject is then asked to assign the assigned object to the given attribute; if it cannot perform the assignment, it raises an exception(usually but not necessarily AttributeError).
    次に、このオブジェクトに対して、被代入オブジェクトを指定した属性に代入してよいか問い合わせます; 代入を実行できない場合、例外 (通常は AttributeError ですが、必然ではありません)を送出します。 - Python
  • The mapping, in particular, does not require that the IDL attributes are accessible as normal Python attributes:
    とりわけ、対応付けでは、IDL 属性が通常の Python 属性としてアクセス可能であることは必須ではありません: object.someValue が動作することは必須 ではなく 、AttributeErrorを送出してもかまいません。 - Python
  • Any attempt to access one of the object's attributes will have to be approved by the filter function; if the access is denied an AttributeError exception will be raised.If present, filter must be a function that accepts a string containing an attribute name, and returns true if access to that attribute will be permitted; if filter returns false, the access is denied.
    オブジェクトの属性に対するアクセスの試みは全て、filter 関数によって認可されなければなりません; アクセスが拒否された場合 AttributeError 例外が送出されます。 filter が存在する場合、この関数は属性名を含む文字列を受理し、その属性に対するアクセスが許可される場合には真を返さなければなりません; filter が偽を返す場合、アクセスは拒否されます。 - Python

例文データの著作権について