Skip to content
GitLab
探索
项目
群组
代码片段
项目
群组
代码片段
/
帮助
帮助
支持
社区论坛
快捷键
?
提交反馈
登录
切换导航
菜单
打开侧边栏
ExternalRepo
flake8
提交
e2d6f331
提交
e2d6f331
编辑于
9年前
作者:
Ian Cordasco
浏览文件
操作
下载
电子邮件补丁
差异文件
Fix AttributeError referring to enabled_extensions
Release v2.5.4
上级
1845ec33
main
pre-commit-ci-update-config
remove-statistics-count-benchmarks
7.0.0
6.1.0
6.0.0
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.0.1
4.0.0
3.9.2
3.9.1
3.9.0
3.8.4
3.8.3
3.8.2
3.8.1
3.8.0
3.8.0a2
3.8.0a1
3.7.9
3.7.8
3.7.7
3.7.6
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.6.0
3.5.0
3.4.1
3.4.0
3.3.0
3.2.1
3.2.0
3.1.1
3.1.0
3.1.0b2
3.1.0b1
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
3.0.0b2
3.0.0b1
2.6.2
2.6.1
2.6.0
2.5.5
2.5.4
无相关合并请求
变更
3
Hide whitespace changes
Inline
Side-by-side
显示
3 个更改的文件
CHANGES.rst
+5
-0
CHANGES.rst
flake8/__init__.py
+1
-1
flake8/__init__.py
flake8/engine.py
+1
-1
flake8/engine.py
有
7 个添加
和
2 个删除
+7
-2
CHANGES.rst
+
5
-
0
浏览文件 @
e2d6f331
CHANGES
=======
2.5.4 - 2016-02-11
------------------
- **Bug** Missed an attribute rename during the v2.5.3 release.
2.5.3 - 2016-02-11
------------------
...
...
This diff is collapsed.
Click to expand it.
flake8/__init__.py
+
1
-
1
浏览文件 @
e2d6f331
__version__
=
'2.5.
3
'
__version__
=
'2.5.
4
'
This diff is collapsed.
Click to expand it.
flake8/engine.py
+
1
-
1
浏览文件 @
e2d6f331
...
...
@@ -216,7 +216,7 @@ def _parse_multi_options(options, split_token=','):
def
_disable_extensions
(
parser
,
options
):
ignored_extensions
=
set
(
getattr
(
parser
,
'ignored_extensions'
,
[]))
enabled
=
set
(
_parse_multi_options
(
options
.
enable
d
_extensions
))
enabled
=
set
(
_parse_multi_options
(
options
.
enable_extensions
))
# Remove any of the selected extensions from the extensions ignored by
# default.
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
支持
Markdown
0%
请重试
或
添加新附件
.
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
菜单
探索
项目
群组
代码片段