Находки в опенсорсе: Python
@opensource_findings_python
696
subscribers
2
photos
68
links
Легкие задачки в опенсорсе из мира Python
Чат:
@opensource_findings_chat
Download Telegram
Join
Находки в опенсорсе: Python
696 subscribers
Находки в опенсорсе: Python
Добавить доки для
dataclasses.InitVar
https://github.com/python/cpython/issues/132111
#docs
#cpython
GitHub
dataclasses.InitVar undocumented · Issue #132111 · python/cpython
Documentation dataclasses.InitVar is mentioned in https://
docs
.python.org/3.14/library/dataclasses.html#init-only-variables but not itself documented or linkable to
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/132330
#docs
#cpython
GitHub
`typestruct.h` is outdated compared to implementation · Issue #132330 · python/cpython
Documentation
Doc
/includes/typestruct.h contains a copy of _typeobject from Include/cpython/object.h, but it is currently outdated.
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/132467
#docs
#cpython
GitHub
Document that `inspect.isclass` returns False for `GenericAlias` instances · Issue #132467 · python/cpython
Bug report Bug description: Hi I am not sure if this is a bug, but I use the bug template because I couldn't find a better one to submit questions like this one. The documentation says, "U...
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/133125
#docs
#cpython
GitHub
`zipfile`:
docs
should document what `ZipInfo.date_time` actually is · Issue #133125 · python/cpython
Documentation Currently, the documentation for ZipInfo.date_time is: The time and date of the last modification to the archive member. This is a tuple of six values: ... Note: The ZIP file format d...
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/133881
#cpython
#docs
GitHub
introduce `list.sort()` but no details before · Issue #133881 · python/cpython
Documentation A example of lambda expressions introduces list.sort(), but there aren't details of list.sort() before. >>> pairs = [(1, 'one'), (2, 'two'), (3, 'thre...
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/134559
#cpython
#docs
GitHub
copy.replace() is annotated as "versionadded: 3.13", but `object.__replace__` isn't · Issue #134559 · python/cpython
Documentation In the copy module documentation, the function copy.replace() has a .. versionadded:: annotation marking it as new in Python 3.13. But the related object.__replace__ dunder method — w...
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/134740
#cpython
#docs
GitHub
Documentation missing for `importlib.metadata.distributions()` · Issue #134740 · python/cpython
Documentation importlib.metadata.distributions() is not listed in the documentation despite being in __all__ and referred to in the
doc
strings for several other module items such as DistributionFi...
Находки в опенсорсе: Python
https://github.com/ag2ai/faststream/issues/2281
#docs
#faststream
GitHub
docs
: provide a usage example with `msgspec` · Issue #2281 · ag2ai/faststream
Right now this page https://faststream.airt.ai/latest/getting-started/serialization/examples/ has 3 non-pydantic examples: protobuf msgpack avro But, msgspec is a popular alternative. I think it mi...
Находки в опенсорсе: Python
https://github.com/python/cpython/issues/135468
#docs
#cpython
GitHub
`urllib.request.HTTPRedirectHandler` documentation uses `hdrs` instead of `headers` · Issue #135468 · python/cpython
Documentation Hello, HTTPRedirectHandler documentation documents some methods take HTTP headers in a parameter named hdrs: cpython/
Doc
/library/urllib.request.rst Line 896 in c646846 .. method:: HTT...