<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ydb/contrib/python/numpy, 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-01-14T17:30:18Z</updated>
<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>
<entry>
<title>Split cython for py3 and py2</title>
<updated>2026-01-13T07:20:05Z</updated>
<author>
<name>mikhnenko</name>
<email>mikhnenko@yandex-team.com</email>
</author>
<published>2026-01-13T06:51:48Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=05c0c8a128582bb1391c8e78f3e9269b9876e079'/>
<id>urn:sha1:05c0c8a128582bb1391c8e78f3e9269b9876e079</id>
<content type='text'>
commit_hash:be16297e622cad23f9548bedfb2710b51b967573
</content>
</entry>
<entry>
<title>Intermediate changes</title>
<updated>2025-12-30T14:51:37Z</updated>
<author>
<name>robot-piglet</name>
<email>robot-piglet@yandex-team.com</email>
</author>
<published>2025-12-30T14:37:54Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=26d8f09eae82d17d490d062c7d91d5ae23f134f1'/>
<id>urn:sha1:26d8f09eae82d17d490d062c7d91d5ae23f134f1</id>
<content type='text'>
commit_hash:47f24cea4d80c671dac66f536874a25381953463
</content>
</entry>
<entry>
<title>Intermediate changes</title>
<updated>2025-11-28T20:01:09Z</updated>
<author>
<name>robot-piglet</name>
<email>robot-piglet@yandex-team.com</email>
</author>
<published>2025-11-28T19:49:18Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=c680daa333dfe2b7ada2a479adc8758e5036f0a7'/>
<id>urn:sha1:c680daa333dfe2b7ada2a479adc8758e5036f0a7</id>
<content type='text'>
commit_hash:bfeccc45169aaaa9244d52ddd63e29fa086dd051
</content>
</entry>
<entry>
<title>Intermediate changes</title>
<updated>2025-11-28T17:36:39Z</updated>
<author>
<name>robot-piglet</name>
<email>robot-piglet@yandex-team.com</email>
</author>
<published>2025-11-28T17:07:09Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=58231bec0c447968e213059860a163e950407ead'/>
<id>urn:sha1:58231bec0c447968e213059860a163e950407ead</id>
<content type='text'>
commit_hash:30f4602dbcd98a42145163d6890ec6ee6bfee959
</content>
</entry>
<entry>
<title>Update Cython to 3.0.10.</title>
<updated>2025-05-19T04:36:02Z</updated>
<author>
<name>nik-bes</name>
<email>nik-bes@yandex-team.com</email>
</author>
<published>2025-05-19T04:20:13Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=317b7368e24941ff76499f500579fd9b10f6656e'/>
<id>urn:sha1:317b7368e24941ff76499f500579fd9b10f6656e</id>
<content type='text'>
commit_hash:b43c96b868cd36d636192fd2c6024d9f0d2fb6f8
</content>
</entry>
<entry>
<title>Remove Cygwin headers from sysincl/unsorted.yml</title>
<updated>2025-05-15T08:52:25Z</updated>
<author>
<name>thegeorg</name>
<email>thegeorg@yandex-team.com</email>
</author>
<published>2025-05-15T08:27:40Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=f9bf93a1d46559e7c9f99d23ae31befd03476139'/>
<id>urn:sha1:f9bf93a1d46559e7c9f99d23ae31befd03476139</id>
<content type='text'>
Cygwin is not supported: we have neither toolchain for it not corresponding SDK.
It is probably broken already, but I am unable to check this due to the above.
commit_hash:da1c24d78cffef68634e2bad041060508cb760eb
</content>
</entry>
<entry>
<title>Intermediate changes</title>
<updated>2024-12-18T07:29:14Z</updated>
<author>
<name>robot-piglet</name>
<email>robot-piglet@yandex-team.com</email>
</author>
<published>2024-12-18T07:16:08Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=691a35e0546dbd763dd51657b1a3816a3c40e094'/>
<id>urn:sha1:691a35e0546dbd763dd51657b1a3816a3c40e094</id>
<content type='text'>
commit_hash:1a5e9f4585838729a12fdcba5306caddb2c0c7ac
</content>
</entry>
<entry>
<title>publishFullContrib: true for ydb</title>
<updated>2024-10-09T10:14:22Z</updated>
<author>
<name>maxim-yurchuk</name>
<email>maxim-yurchuk@yandex-team.com</email>
</author>
<published>2024-10-09T09:29:46Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80'/>
<id>urn:sha1:9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80</id>
<content type='text'>
&lt;HIDDEN_URL&gt;
commit_hash:c82a80ac4594723cebf2c7387dec9c60217f603e
</content>
</entry>
<entry>
<title>Intermediate changes</title>
<updated>2024-08-22T09:03:38Z</updated>
<author>
<name>robot-piglet</name>
<email>robot-piglet@yandex-team.com</email>
</author>
<published>2024-08-22T08:54:59Z</published>
<link rel='alternate' type='text/html' href='https://code.mastervirt.ru/ydb/commit/?id=fb42c24f3a5a933f3e5c6680dd4378e310aab400'/>
<id>urn:sha1:fb42c24f3a5a933f3e5c6680dd4378e310aab400</id>
<content type='text'>
</content>
</entry>
</feed>
