Block or Report
Block or report serhiy-storchaka
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePopular repositories
-
-
-
-
-
astroid Public
Forked from PyCQA/astroid
A common base representation of python source code for pylint and other projects
Python 2
-
pyflakes Public
Forked from PyCQA/pyflakes
A simple program which checks Python source files for errors
Python 3
2,326 contributions in the last year
Activity overview
Contribution activity
May 2022
Created 32 commits in 2 repositories
Created a pull request in python/cpython that received 19 comments
gh-91922: Fix sqlite connection on nonstardard locales and paths
Fix function sqlite.connect() and the sqlite.Connection constructor on non-UTF-8 locales. Fix support of bytes paths non-decodable with the curren…
Opened 30 other pull requests in 2 repositories
python/cpython
4
open
21
merged
2
closed
- gh-74696: Do not change the current working directory in shutil.make_archive() if possible
- gh-89973: Fix re.error in the fnmatch module.
- Clean up the sqlite3 tests
- [3.11] gh-93044: No longer convert the database argument of sqlite3.c…
- Improve tests for opening Sqlite by URI
- gh-93044: No longer convert the database argument of sqlite3.connect() to bytes
- gh-71223: Improve rendering of some references in the docs
- gh-92914: Round the allocated size for lists up to the even number
- Add a NEWS entry.
- gh-92550: Fix pathlib.Path.rglob() for empty pattern
-
[3.11] Revert "[3.11] gh-92550 - Fix regression in
pathlib.Path.rglob()(GH-92583)" -
Revert "gh-92550 - Fix regression in
pathlib.Path.rglob()" - gh-89325: Revert "bpo-45162: Revert "Remove many old deprecated unittest features" (GH-30935)"
- Revert "bpo-45162: Revert "Remove many old deprecated unittest features""
- gh-92530: Fix an issue that occurred after interrupting threading.Condition.notify
- Fix What's New for 3.12
- gh-88279: Fix compiler warning for using deprecated PySys_SetArgvEx
- gh-89519: Emit a warning when classmethod() wraps a non-callable descriptor
- Fix What's New: use :gh: instead of :issue:
- gh-87390: Fix starred tuple equality and pickling (alt)
- gh-91162: Fix substitution of unpacked tuples in generic aliases
- gh-92107: Add tests that subscription works on arbitrary named tuple …
- gh-92106: Add test that subscription works on arbitrary TypedDicts
- gh-92107: Forbid specialization of namedtuple types
- gh-92106: Forbid specialization of TypedDict types
- Some pull requests not shown.
neuro-inc/platform-service-accounts-api
2
merged
1
closed
Reviewed 71 pull requests in 2 repositories
python/cpython
25 pull requests
- gh-92728: Restore re.template, but deprecate it
- bpo-46142: split --help output into separate options
- gh-74696: Do not change the current working directory in shutil.make_archive() if possible
- [WIP] gh-90016: Reword sqlite3 adapter/converter docs
- gh-93099: Fix _pyio to use locale module properly
-
gh-92888: Fix memoryview bad
__index__use after free - gh-83245: Raise BadZipFile instead of ValueError when reading a corrupt file
- test_threaded_import: Fix unittest.main spelling
- gh-93033: Use wmemchr in find_char and replace_1char_inplace
- [3.11] gh-71223: Improve rendering of some references in the docs (GH-93041)
- gh-91922: Fix sqlite connection on nonstardard locales and paths
- gh-92930: _pickle.c: Acquire strong references after PyDict_Next
- [3.11] Fix NULL check in test_type_from_ephemeral_spec in_testcapimodule.c (GH-92863)
- Fix NULL check in test_type_from_ephemeral_spec
- gh-92839: fixed typo in _bisectmodule.c (line 131)
- Doc: Update references and examples of old, unsupported OSes and uarches
- gh-90861: Memory optimization for set.issubset
- Revert "bpo-45162: Revert "Remove many old deprecated unittest features""
- gh-92417: Update docs and examples of doctest.IGNORE_EXCEPTION_DETAIL for Py>=3
-
gh-87901: os.popen: Fix new
encodingargument. - gh-81548: Clarify the deprecation of octal sequences affect byte strings
- gh-91581: Check result of utc_to_seconds
- gh-86388 Remove deprecated behaviors in randrange()
- gh-92525: make inspect.getfile PEP 420 compliant
- Typo in unittest.rst
- Some pull request reviews not shown.
neuro-inc/platform-service-accounts-api
1 pull request
Created an issue in python/cpython that received 8 comments
Specialization of namedtuple types
collections.namedtuple() creates a tuple subclass, and as a subclass it inherits all tuple methods, including __class_getitem__.
The __new__ method…