File: control

package info (click to toggle)
python-makefun 1.15.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: python: 2,384; makefile: 2
file content (50 lines) | stat: -rw-r--r-- 1,615 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Source: python-makefun
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
 nicoo <nicoo@debian.org>,
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-python3,
 pybuild-plugin-pyproject,
 python3,
 python3-nox <!nocheck>,
 python3-pytest <!nocheck>,
 python3-pytest-runner <!nocheck>,
 python3-setuptools,
 python3-setuptools-scm,
Rules-Requires-Root: no
Standards-Version: 4.6.2
Homepage: https://smarie.github.io/python-makefun/
Vcs-Git: https://salsa.debian.org/python-team/packages/makefun.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/makefun

Package: python3-makefun
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
 ${shlibs:Depends},
Recommends:
 ${python3:Recommends},
Suggests:
 ${python3:Suggests},
Description: Small library to dynamically create Python functions
	makefun helps one create functions dynamically, with the signature of their
	choice. It was largely inspired by decorator and functools, and created mainly
	to cover some of their limitations.
	.
	Its typical use cases are:
	.
	 - creating signature-preserving function wrappers - just like functools.wraps
	   but with accurate TypeError exception raising when user-provided arguments
	   are wrong, and with a very convenient way to access argument values;
	.
	 - creating function wrappers that have more or less arguments that the
	   function they wrap;
	.
	 - more generally, creating functions with a signature derived from a
	   reference signature;
	.
	 - or even creating functions with a signature completely defined at runtime.