2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 08:22:28 +00:00
repo/extra/python
git-bruh d5265cfbac
python: remove --without-doc-strings
It breaks the inspect.signature function for classes that don't explicitly set a constructor, because the `__text_signature__` attribute is empty

```
from inspect import signature

class Test:
    pass

print(signature(Test.__init__))
```

This is used in some python modules like telethon
2023-01-30 16:09:48 +05:30
..
patches python: 3.10.0 2021-10-05 06:19:40 +03:00
build python: remove --without-doc-strings 2023-01-30 16:09:48 +05:30
checksums python: 3.11.1 2022-12-06 18:09:39 -06:00
depends python: depend on openssl 2021-07-08 00:14:26 +03:00
README repo: check-in readmes 2021-08-26 07:22:10 +03:00
sources python: 3.10.0 2021-10-05 06:19:40 +03:00
version python: 3.11.1 2022-12-06 18:09:39 -06:00

python
________________________________________________________________________________

Python is an interpreted high-level general-purpose programming language. Its
design philosophy emphasizes code readability with its use of significant
indentation. Its language constructs as well as its object-oriented approach aim
to help programmers write clear, logical code for small and large-scale
projects.

Python is dynamically-typed and garbage-collected. It supports multiple
programming paradigms, including structured (particularly, procedural),
object-oriented and functional programming. It is often described as a
"batteries included" language due to its comprehensive standard library. [0]

Upstream: https://www.python.org/


[000] Index
________________________________________________________________________________

* Installation ........................................................... [001]
* Usage .................................................................. [002]
* References ............................................................. [003]


[001] Installation
________________________________________________________________________________

+------------------------------------------------------------------------------+
|                                                                              |
|  $ kiss b python                                                             |
|                                                                              |
+------------------------------------------------------------------------------+


[002] Usage
________________________________________________________________________________

Refer to the manual pages and command help output.


[003] References
________________________________________________________________________________

[0] https://en.wikipedia.org/wiki/Python_(programming_language)