Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita12d339

Browse files
committed
Use Never for Python 3.11 and newer
1 parentf8aeaaf commita12d339

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+
fromtypingimportNever
26+
exceptImportError:
27+
fromtypingimportNoReturnasNever# 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
importos
3737
importsys
3838
frompathlibimportPath
39-
fromtypingimportTuple,List,Optional,NoReturn,Callable
39+
fromtypingimportTuple,List,Optional,Callable
4040
fromtypesimportModuleType
4141

4242
from .import__version__,__copyright__
4343
from .configimportdefault_config_path,Config
4444
from .translationsimport_
45+
from ._typing_compatimportNever
4546

4647
logger=logging.getLogger(__name__)
4748

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

5253

5354
classRaisingArgumentParser(argparse.ArgumentParser):
54-
deferror(self,msg:str)->NoReturn:
55+
deferror(self,msg:str)->Never:
5556
raiseArgumentParserFailed()
5657

5758

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp