Skip to content

Commit a12d339

Browse files
committed
Use Never for Python 3.11 and newer
1 parent f8aeaaf commit a12d339

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

bpython/_typing_compat.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# The MIT License
2+
#
3+
# Copyright (c) 2024 Sebastian Ramacher
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in
13+
# all copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
# THE SOFTWARE.
22+
23+
try:
24+
# introduced in Python 3.11
25+
from typing import Never
26+
except ImportError:
27+
from typing import NoReturn as Never # type: ignore
28+

bpython/args.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@
3636
import os
3737
import sys
3838
from pathlib import Path
39-
from typing import Tuple, List, Optional, NoReturn, Callable
39+
from typing import Tuple, List, Optional, Callable
4040
from types import ModuleType
4141

4242
from . import __version__, __copyright__
4343
from .config import default_config_path, Config
4444
from .translations import _
45+
from ._typing_compat import Never
4546

4647
logger = logging.getLogger(__name__)
4748

@@ -51,7 +52,7 @@ class ArgumentParserFailed(ValueError):
5152

5253

5354
class RaisingArgumentParser(argparse.ArgumentParser):
54-
def error(self, msg: str) -> NoReturn:
55+
def error(self, msg: str) -> Never:
5556
raise ArgumentParserFailed()
5657

5758

0 commit comments

Comments
 (0)