You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will be easier for users from C/C++ to use type hint of Python if Bython supports the conversion from C-style type declaration to Python type hint. For example:
C-style type declaration:
int add(int x, int y) {
return x + y;
}
Python type hint:
def add(x: int, y: int) -> int:
return x + y
The text was updated successfully, but these errors were encountered:
It will be easier for users from C/C++ to use type hint of Python if Bython supports the conversion from C-style type declaration to Python type hint. For example:
C-style type declaration:
Python type hint:
The text was updated successfully, but these errors were encountered: