mytoolbox.mysubpackage.mymodule3.myClass3

class myClass3(arg1, arg2)[source]

Bases: mytoolbox.mymodule1.myClass1

This is the third class.

Parameters

Methods

myMethod1

This is the first public method.

myMethod2

This is the second public method.

Attributes

myAttribute

This is a public attribute.

__call__(arg)

This class is callable.

Parameters

arg (int) – Pass one of these in.

Return type

str

Returns

Get one of these out.

property myAttribute

This is a public attribute.

Return type

int

myMethod1(arg)

This is the first public method.

Parameters

arg (~T) – Pass a myTypeVar in.

Return type

str

Returns

Get one of these out.

myMethod2()

This is the second public method.

Return type

str