<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ydb/contrib/tools/python3/patches/fix-name-builtin-modules.patch, branch main</title>
<subtitle>Mirror of YDB github repos</subtitle>
<id>https://code.mastervirt.ru/ydb/atom?h=main</id>
<link rel='self' href='https://code.mastervirt.ru/ydb/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/'/>
<updated>2026-02-03T19:28:51Z</updated>
<entry>
<title>Import Python 3.13.11</title>
<updated>2026-02-03T19:28:51Z</updated>
<author>
<name>shadchin</name>
<email>shadchin@yandex-team.com</email>
</author>
<published>2026-02-03T18:59:07Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=bce46f28de392862d5c6c3b185d844ee7c623be3'/>
<id>urn:sha1:bce46f28de392862d5c6c3b185d844ee7c623be3</id>
<content type='text'>
commit_hash:bbb53cefb159aa3e7afaa475fd19d5a03b66945f
</content>
</entry>
<entry>
<title>Fix `__name__` for builtin modules</title>
<updated>2026-01-14T17:30:18Z</updated>
<author>
<name>shadchin</name>
<email>shadchin@yandex-team.com</email>
</author>
<published>2026-01-14T16:52:47Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=078fd8aa66d488d1339cb64a5a3918e786b4baae'/>
<id>urn:sha1:078fd8aa66d488d1339cb64a5a3918e786b4baae</id>
<content type='text'>
Такой же подход есть у загрузки so-расширений, но для builtin его из коробки нет, так как builtin в upstream используется только для стандартной библиотеки, а там нет подпакетов, там только модули и у них нет проблемы с именем.

До патча:
```ipython
In [1]: import osgeo._gdal

In [2]: osgeo._gdal.__name__
Out[2]: '_gdal'  # &lt;- Потерялось имя пакета, должно быть `osgeo._gdal`
```

После патча:
```ipython
In [1]: import osgeo._gdal

In [2]: osgeo._gdal.__name__
Out[2]: 'osgeo._gdal'
```
commit_hash:fee95110a58cae8395a46598bf8f0b80e42b029a
</content>
</entry>
</feed>
