We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c7778a + 80fd2c1 commit 4d529b7Copy full SHA for 4d529b7
doc/Makefile
@@ -3,7 +3,7 @@
3
4
# You can set these variables from the command line.
5
BUILDDIR = build
6
-SPHINXOPTS = -W
+SPHINXOPTS =
7
SPHINXBUILD = sphinx-build
8
PAPER =
9
git/config.py
@@ -87,15 +87,15 @@ def __new__(cls, name: str, bases: Tuple, clsdict: Dict[str, Any]) -> "MetaParse
87
mutating_methods = clsdict[kmm]
88
for base in bases:
89
methods = (t for t in inspect.getmembers(base, inspect.isroutine) if not t[0].startswith("_"))
90
- for name, method in methods:
91
- if name in clsdict:
+ for method_name, method in methods:
+ if method_name in clsdict:
92
continue
93
method_with_values = needs_values(method)
94
- if name in mutating_methods:
+ if method_name in mutating_methods:
95
method_with_values = set_dirty_and_flush_changes(method_with_values)
96
# END mutating methods handling
97
98
- clsdict[name] = method_with_values
+ clsdict[method_name] = method_with_values
99
# END for each name/method pair
100
# END for each base
101
# END if mutating methods configuration is set
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments