Skip to content

Commit

Permalink
chore: Update stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
sizmailov committed Mar 4, 2024
1 parent c66726c commit 577bb31
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@ from __future__ import annotations

import typing

__all__ = ["issue_51_catastrophic_regex", "issue_73_utf8_doc_chars"]
__all__ = [
"backslashes_should_be_escaped",
"issue_51_catastrophic_regex",
"issue_73_utf8_doc_chars",
]

def backslashes_should_be_escaped() -> None:
"""
\\brief A brief description of this function.
A detailed description of this function.
Here's some reStructuredText: :math:`x = [x, y, \\theta]^T`
"""

def issue_51_catastrophic_regex(arg0: int, arg1: int) -> None:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class MapStringComplex:
Return the canonical string representation of this map.
"""
def __setitem__(self, arg0: str, arg1: complex) -> None: ...
def items(self) -> typing.ItemsView[str, complex]: ...
def keys(self) -> typing.KeysView[str]: ...
def values(self) -> typing.ValuesView[complex]: ...
def items(self) -> typing.ItemsView: ...
def keys(self) -> typing.KeysView: ...
def values(self) -> typing.ValuesView: ...

class VectorPairStringDouble:
__hash__: typing.ClassVar[None] = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@ from __future__ import annotations

import typing

__all__ = ["issue_51_catastrophic_regex", "issue_73_utf8_doc_chars"]
__all__ = [
"backslashes_should_be_escaped",
"issue_51_catastrophic_regex",
"issue_73_utf8_doc_chars",
]

def backslashes_should_be_escaped() -> None:
"""
\\brief A brief description of this function.
A detailed description of this function.
Here's some reStructuredText: :math:`x = [x, y, \\theta]^T`
"""

def issue_51_catastrophic_regex(arg0: int, arg1: int) -> None:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class MapStringComplex:
Return the canonical string representation of this map.
"""
def __setitem__(self, arg0: str, arg1: complex) -> None: ...
def items(self) -> typing.ItemsView[str, complex]: ...
def keys(self) -> typing.KeysView[str]: ...
def values(self) -> typing.ValuesView[complex]: ...
def items(self) -> typing.ItemsView: ...
def keys(self) -> typing.KeysView: ...
def values(self) -> typing.ValuesView: ...

class VectorPairStringDouble:
__hash__: typing.ClassVar[None] = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@ from __future__ import annotations

import typing

__all__ = ["issue_51_catastrophic_regex", "issue_73_utf8_doc_chars"]
__all__ = [
"backslashes_should_be_escaped",
"issue_51_catastrophic_regex",
"issue_73_utf8_doc_chars",
]

def backslashes_should_be_escaped() -> None:
"""
\\brief A brief description of this function.
A detailed description of this function.
Here's some reStructuredText: :math:`x = [x, y, \\theta]^T`
"""

def issue_51_catastrophic_regex(arg0: int, arg1: int) -> None:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class MapStringComplex:
Return the canonical string representation of this map.
"""
def __setitem__(self, arg0: str, arg1: complex) -> None: ...
def items(self) -> typing.ItemsView[str, complex]: ...
def keys(self) -> typing.KeysView[str]: ...
def values(self) -> typing.ValuesView[complex]: ...
def items(self) -> typing.ItemsView: ...
def keys(self) -> typing.KeysView: ...
def values(self) -> typing.ValuesView: ...

class VectorPairStringDouble:
__hash__: typing.ClassVar[None] = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@ from __future__ import annotations

import typing

__all__ = ["issue_51_catastrophic_regex", "issue_73_utf8_doc_chars"]
__all__ = [
"backslashes_should_be_escaped",
"issue_51_catastrophic_regex",
"issue_73_utf8_doc_chars",
]

def backslashes_should_be_escaped() -> None:
"""
\\brief A brief description of this function.
A detailed description of this function.
Here's some reStructuredText: :math:`x = [x, y, \\theta]^T`
"""

def issue_51_catastrophic_regex(arg0: int, arg1: int) -> None:
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class MapStringComplex:
Return the canonical string representation of this map.
"""
def __setitem__(self, arg0: str, arg1: complex) -> None: ...
def items(self) -> typing.ItemsView[str, complex]: ...
def keys(self) -> typing.KeysView[str]: ...
def values(self) -> typing.ValuesView[complex]: ...
def items(self) -> typing.ItemsView: ...
def keys(self) -> typing.KeysView: ...
def values(self) -> typing.ValuesView: ...

class VectorPairStringDouble:
__hash__: typing.ClassVar[None] = None
Expand Down

0 comments on commit 577bb31

Please sign in to comment.