File: control

package info (click to toggle)
flake8-comprehensions 3.10.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 200 kB
  • sloc: python: 1,037; sh: 5; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 1,133 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Source: flake8-comprehensions
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Jose Luis Rivero <jrivero@osrfoundation.org>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               python3-all,
               python3-flake8,
               python3-pytest,
               python3-setuptools,
               pybuild-plugin-pyproject,
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/python-team/packages/flake8-comprehensions
Vcs-Git: https://salsa.debian.org/python-team/packages/flake8-comprehensions.git
Rules-Requires-Root: no
Homepage: https://github.com/adamchainz/flake8-comprehensions

Package: python3-flake8-comprehensions
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends}
Enhances: flake8
Description: flake8 extension that checks for re-use of builtin identifiers
 Python allows one to override Python comprehensions as parameters, but although
 could be useful in some really specific use cases, the general approach is to
 not do that as code then can suddenly break without a clear trace.