This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add sys.stdlib_module_names: list of stdlib module names (Python and extension modules)
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: SylvainDe, aroberge, corona10, ronaldoussoren, serhiy.storchaka, shihai1991, vstinner
Priority: normal Keywords: patch

Created on 2021-01-18 10:08 by vstinner, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 24238 merged vstinner, 2021-01-18 12:18
PR 24254 merged vstinner, 2021-01-18 23:28
PR 24258 merged vstinner, 2021-01-19 21:45
PR 24329 merged vstinner, 2021-01-25 12:40
PR 24332 merged vstinner, 2021-01-25 17:15
PR 24353 merged vstinner, 2021-01-27 11:40
PR 25122 merged vstinner, 2021-03-31 23:03
Messages (33)
msg385180 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-18 10:08
Some use cases require to know if a module comes from the stdlib or not. For example, I would like to only dump extension modules which don't come from the stdlib in bpo-42923: "Py_FatalError(): dump the list of extension modules".

Stdlib modules are special. For example, the maintenance and updates are connected to the Python lifecycle. Stdlib modules cannot be updated with "pip install --upgrade". They are shipped with the system ("system" Python). They are usually "read only": on Unix, only the root user can write into /usr directory where the stdlib is installed, whereas modules installed with "pip install --user" can be modified by the current user.

There is a third party project on PyPI which contains the list of stdlib modules:
https://pypi.org/project/stdlib-list/

There is already sys.builtin_module_names:
"A tuple of strings giving the names of all modules that are compiled into this Python interpreter."
https://docs.python.org/dev/library/sys.html#sys.builtin_module_names

I propose to add a similar sys.module_names tuple of strings (module names).

There are different constraints:

* If we add a public sys attribute, users will likely expect the list to be (1) exhaustive (2) correct
* Some extensions are not built if there are missing dependencies. Dependencies are checked after Python "core" (the sys module) is built.
* Some extensions are not available on some platforms.
* This list should be maintained.

Should we only list top level packages, or also submodules? For example, only list "asyncio", or list the 31 submodules (asyncio.base_events, asyncio.futures, ...)? Maybe it can be decided on a case by case basis. For example, I consider that "os.path" is a stdlib module, even it's just an alias to "posixpath" or "ntpath" depending on the platform.

I propose to include all extensions in the list, even if they are not built/available on some platforms. For example, "winsound" would also be listed on Linux, even if the extension is specific to Windows.

I also propose to include stdlib module names even if they are overridden at runtime using PYTHONPATH with a different implementation. For example, "asyncio" would be in the list, even if an user creates "asyncio.py" file. The list would not depend on sys.path.

--

Another option is to add an attribute to modules to mark them as coming from the stdlib. The API would be an attribute: module.__stdlib__ (bool).

The attribute could be set directly in the module code. For example, add "__stdlib__ = True" in Python modules. Similar idea for C extension modules.

Or the attribute could be set after importing the module, in the import site. But we don't control how stdlib modules are imported.

--

For the specific case of bpo-42923, another option is to use a list of stdlib paths, and check module.__file__ to check if a module is a stdlib module, and also use sys.builtin_module_names. And so don't add any API.
msg385181 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-18 10:15
On Fedora 33, the stdlib lives in two main directories:

* /usr/lib64/python3.9: Python modules
* /usr/lib64/python3.9/lib-dynload: C extension modules

Example:

>>> import os.path
>>> os.path.dirname(os.__file__) # Python
'/usr/lib64/python3.9'
>>> os.path.dirname(_asyncio.__file__)
'/usr/lib64/python3.9/lib-dynload'

The Python stdlib path can be retrieved with:

>>> import sysconfig; sysconfig.get_paths()['stdlib']
'/usr/lib64/python3.9'

But I'm not sure how to retrieve /usr/lib64/python3.9/lib-dynload path. "platstdlib" is not what I expect:

>>> import sysconfig; sysconfig.get_paths()['platstdlib']
'/usr/lib64/python3.9'

I found DESTDIR in Makefile:

>>> sysconfig.get_config_var('DESTSHARED')
'/usr/lib64/python3.9/lib-dynload'
msg385186 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-01-18 10:42
There is no technical difference between stdlib modules and other modules. Stdlib modules are only special in context of copyright and responsibility.
What if set __author__ = 'PSF' in every stdib module? Or other attributes which would allow to group modules by origin. Perhaps other authors would use that feature too.
msg385194 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-18 12:36
I wrote PR 24238 which implements an hardcoded list of stdlib module names. The PR uses the CI to ensure that the list always remain up to date. If tomorrow a new module is added, a CI job fails ("file not up to date").

> What if set __author__ = 'PSF' in every stdib module? Or other attributes which would allow to group modules by origin. Perhaps other authors would use that feature too.

Hum, that would go against my bpo-42923 use case.

Also for bpo-42923, I would prefer a tuple of strings ;-)
msg385197 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-18 13:54
Use cases for sys.module_names:

* When computing dependencies of a project, ignore modules which are part of the stdlib: https://github.com/jackmaney/pypt/issues/3

* Trace the execution of third party code, but ignore stdlib, use --ignore-module option of trace: https://stackoverflow.com/questions/6463918/how-can-i-get-a-list-of-all-the-python-standard-library-modules

* When reformatting a Python source file, group imports of stdlib modules. The isort module contains the list of stdlib modules, one list py Python version: https://github.com/PyCQA/isort/tree/develop/isort/stdlibs which is generated from the online Python documentation.

---

The isort uses the following script to generate the list of stdlib modules:
https://github.com/PyCQA/isort/blob/develop/scripts/mkstdlibs.py

The script uses sphinx.ext.intersphinx.fetch_inventory(...)["py:module"]. This API uses objects.inv from the online Python documentation. Example of Python 3.9:

   https://docs.python.org/3.9/objects.inv

On the "dev" version, mkstdlibs.py lists 211 modules.
msg385200 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-18 14:54
(...) This API uses objects.inv from the online Python documentation.

By the way, there is also this documentation page listing Python stdlib modules:
https://docs.python.org/dev/py-modindex.html
msg385201 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-18 15:06
Another way to gather the list of Python modules: pydoc help("modules") uses pkgutil.walk_packages().

pydoc uses ModuleScanner which uses sys.builtin_module_names and pkgutil.walk_packages().

pkgutil.walk_packages() calls pkgutil.iter_modules() which iterates on sys.meta_path and sys.path, and calls iter_modules() on each importer.

For FileImporter, it iterates on os.listdir() on the importer path.

For zipimporter, it iterates on zipimport._zip_directory_cache[importer.archive].
msg385208 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-18 17:41
Note for myself: regen-keyword should be included in "make regen-all".
msg385250 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2021-01-19 10:03
A list of stdlib modules/extensions is IMHO problematic for maintenance, esp. if you consider that not all modules/extensions are installed on all systems (both because dependencies aren't present and because packagers have decided to unbundle parts of the stdlib).

Wouldn't it be sufficient to somehow mark the stdlib entries on sys.path? Although that might give misleading answers with tools like pyinstaller/py2exe/py2app that package an application and its dependencies into a single zipfile.
msg385251 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-19 11:09
Ronald Oussoren:
> A list of stdlib modules/extensions is IMHO problematic for maintenance, esp. if you consider that not all modules/extensions are installed on all systems (both because dependencies aren't present and because packagers have decided to unbundle parts of the stdlib).

My PR 24238 adds a list of module names (tuple of str): sys.module_names. It includes modules which are not available on the platform. For example, "winsound" is listed on Linux but not available, and "tkinter" is listed even if the extension could not be built (missing dependency).

I tried to make it clear in the sys.module_names documentation (see my PR).

Making the list conditional depending if the module is built or not is causing different issues. For example, for the "isort" (sort and group imports) use case, you want to know on Linux if "import winsound" is a stdlib import or a third party import (same for Linux-only modules on Windows). Moreover, there is a practical issue: extension modules are only built by setup.py *after* the sys module is built. I don't want to rebuild the sys module if building an extension failed.

Even if a module is available (listed in sys.module_names and the file is present on disk), it doesn't mean that "it works". For example, "import multiprocessing" fails if there is no working lock implementation. Other modules have similar issues.


> Wouldn't it be sufficient to somehow mark the stdlib entries on sys.path? Although that might give misleading answers with tools like pyinstaller/py2exe/py2app that package an application and its dependencies into a single zipfile.

Having to actually import modules to check if it's a stdlib module or not is not convenient. Many stdlib modules have side effects on import. For example, "import antigravity" opens a web browser. An import can open files, spawn threads, run programs, etc.
msg385252 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2021-01-19 11:18
>> Wouldn't it be sufficient to somehow mark the stdlib entries on sys.path? Although that might give misleading answers with tools like pyinstaller/py2exe/py2app that package an application and its dependencies into a single zipfile.

> Having to actually import modules to check if it's a stdlib module or not is not convenient. Many stdlib modules have side effects on import. For example, "import antigravity" opens a web browser. An import can open files, spawn threads, run programs, etc.

You wouldn't necessarily have to import a module to test, this is something that could be added to importlib.  One (poorly thought out) option is to add sys._stdlib_path with the subsection of sys.path that contains the stdlib, and a function in importlib that returns if a spec is for a stdlib module.

The disadvantage of this, or for the most part anything but your initial proposal, is that might not be save to use a function in importlib in Py_FatalError.
msg385253 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-19 11:30
Myself:
> Having to actually import modules to check if it's a stdlib module or not is not convenient. Many stdlib modules have side effects on import.

The "trace" usecase needs an exhaustive list of all module names. It is even less convenient to have to list all Python modules available on the system only to check modules coming from the stdlib.


Ronald:
> You wouldn't necessarily have to import a module to test, this is something that could be added to importlib.  One (poorly thought out) option is to add sys._stdlib_path with the subsection of sys.path that contains the stdlib, and a function in importlib that returns if a spec is for a stdlib module.

I'm not sure how it would work. I listed different cases which have different constraints:

* From a module name, check if it's part of the stdlib or not
* From a module object, check if it's part of the stdlib or not

For the test on the module name, how would it work with sys._stdlib_path? Should you import the module and then check if its path comes from sys._stdlib_path?


Ronald:
> The disadvantage of this, or for the most part anything but your initial proposal, is that might not be save to use a function in importlib in Py_FatalError.

PR 24254 is a working implementation of my use case: only list third party extension modules on a Python fatal error. It relies on PR 24238 sys.module_names list. The implementation works when called from a signal handler (when faulthandler catch fatal signals like SIGSEGV), it avoids memory allocations on the heap (one of the limits of a signal handler).
msg385254 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2021-01-19 12:24
> On 19 Jan 2021, at 12:30, STINNER Victor <report@bugs.python.org> wrote:
> 
> Ronald:
>> You wouldn't necessarily have to import a module to test, this is something that could be added to importlib.  One (poorly thought out) option is to add sys._stdlib_path with the subsection of sys.path that contains the stdlib, and a function in importlib that returns if a spec is for a stdlib module.
> 
> I'm not sure how it would work. I listed different cases which have different constraints:
> 
> * From a module name, check if it's part of the stdlib or not
> * From a module object, check if it's part of the stdlib or not
> 
> For the test on the module name, how would it work with sys._stdlib_path? Should you import the module and then check if its path comes from sys._stdlib_path?

For a module name use importlib.util.find_spec() to locate the module (or toplevel package if this is a module in package). The new importlib function could then use the spec and sys._stdlib_path to check if the spec is one for a stdlib module.  This is pretty handwavy, but I do something similar in py2app (but completely based on paths calculated outside of the import machinery).

For a module object you can extract the spec from the object and use the same function. 

> 
> 
> Ronald:
>> The disadvantage of this, or for the most part anything but your initial proposal, is that might not be save to use a function in importlib in Py_FatalError.
> 
> PR 24254 is a working implementation of my use case: only list third party extension modules on a Python fatal error. It relies on PR 24238 sys.module_names list. The implementation works when called from a signal handler (when faulthandler catch fatal signals like SIGSEGV), it avoids memory allocations on the heap (one of the limits of a signal handler).

I think we agree on that point: my counter proposal won’t work in the faulthandler scenario, and may be problematic in the Py_FatalError case as well.

Ronald
msg385255 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2021-01-19 12:39
BTW. A list of stdlib module names is not sufficient to determine if a module is in the stdlib, thanks to .pth files it is possible to have entries on sys.path before the stdlib.
msg385270 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-19 16:15
Ronald:
> BTW. A list of stdlib module names is not sufficient to determine if a module is in the stdlib, thanks to .pth files it is possible to have entries on sys.path before the stdlib.

Yeah, I wrote it in my first message. I solved this issue with documentation:

"Note: If a third party module has the same name than a standard library module and it comes before the standard library in sys.path, it overrides the standard library module on import."

I updated sys.module_names documentation in my PR.

IMO it's an acceptable limitation.
msg385272 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-19 16:35
Ronald:
> I think we agree on that point: my counter proposal won’t work in the faulthandler scenario, and may be problematic in the Py_FatalError case as well.

The API providing a tuple of str (sys.module_names) works with the 4 use cases that I listed:

* faulthandler/Py_FatalError (dump third party extensions of sys.modules)
* isort (group stdlib imports)
* trace (don't trace stdlib modules)
* pypt (ignore stdlib modules when computing dependencies)


Ronald:
> Although that might give misleading answers with tools like pyinstaller/py2exe/py2app that package an application and its dependencies into a single zipfile.

These tools worked for years without sys.module_names and don't need to be modified to use sys.module_names.

sys.module_names is well defined, extract of its doc:

"The list is the same on all platforms. Modules which are not available on some platforms and modules disabled at Python build are also listed."

These packaging tools may require further checks than just checking if the name is in sys.module_names. These tools are complex anyway ;-)
msg385273 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-19 16:37
> One (poorly thought out) option is to add sys._stdlib_path with the subsection of sys.path that contains the stdlib, and a function in importlib that returns if a spec is for a stdlib module.

There is already sysconfig.get_paths()['stdlib']. Maybe we need to add a new key for extension modules.

I don't think that these two options are exclusive. For me, it can even be a similar but different use case.
msg385300 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-19 22:04
New changeset cad8020cb83ec6d904f874c0e4f599e651022196 by Victor Stinner in branch 'master':
bpo-42955: Add Python/module_names.h (GH-24258)
https://github.com/python/cpython/commit/cad8020cb83ec6d904f874c0e4f599e651022196
msg385310 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-20 00:32
sys.module_names also solves the following old StackOverflow question:
"How to check if a module/library/package is part of the python standard library?"
https://stackoverflow.com/questions/22195382/how-to-check-if-a-module-library-package-is-part-of-the-python-standard-library

"I have installed sooo many libraries/modules/packages with pip and now I cannot differentiate which is native to the python standard library and which is not. This causes problem when my code works on my machine but it doesn't work anywhere else."
msg385311 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-20 00:37
The pants project also uses a list of stdlib module names, similar to isort, to infer dependencies:
https://github.com/pantsbuild/pants/tree/master/src/python/pants/backend/python/dependency_inference/python_stdlib

"Pants is a scalable build system for monorepos: codebases containing multiple projects, often using multiple programming languages and frameworks, in a single unified code repository."

See https://blog.pantsbuild.org/dependency-inference/
msg385312 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-20 00:39
Yet another use case: the friendly-traceback project detects typos on imports using the list of stdlib module names:
https://aroberge.github.io/friendly-traceback-docs/docs/html/tracebacks_en_3.8.html#standard-library-module

For example, it suggest to replace "import Tkinter" with "import tkinter".
msg385317 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-20 08:51
Another use case similar to the "isort" use case: vim plugin to insert an import, it checks if the module name is a stdlib module. It checks the module path (for Python stdlib modules) and uses an hardcoded list of builtin stdlib modules.

https://github.com/mgedmin/python-imports.vim
msg385350 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-20 16:00
Another example: the unimport project ("linter, formatter for finding and removing unused import statements") uses the following function to guess if a module object is part of the stdlib:

def is_std(package: str) -> bool:
    """Returns True if package module came with from Python."""

    if package in C.BUILTIN_MODULE_NAMES:
        return True
    spec = get_spec(package)
    if spec and isinstance(spec.origin, str):
        return any(
            (
                spec.origin.startswith(C.STDLIB_PATH),
                spec.origin in ["built-in", "frozen"],
                spec.origin.endswith(".so"),
            )
        )
    else:
        return False

https://github.com/hakancelik96/unimport/blob/c9bd5de99bd8a5239d3dee2c3ff633979bb3ead2/unimport/utils.py#L61-L77
msg385364 - (view) Author: SylvainDe (SylvainDe) * Date: 2021-01-20 19:51
For similar reasons as friendly-traceback, I'd be interested in a list of stdlib modules to be able to provide additional information in case of exceptions.

For instance:

string.ascii_lowercase
> Before: NameError("name 'string' is not defined",)
> After: NameError("name 'string' is not defined. Did you mean to import string first)

from maths import pi
> Before: ImportError('No module named maths',)
> After: ImportError("No module named maths. Did you mean 'math'?",)

choice
> Before: NameError("name 'choice' is not defined",)
> After: NameError("name 'choice' is not defined. Did you mean 'choice' from random (not imported)?",)

from itertools import pi
> Before: ImportError('cannot import name pi',)
> After: ImportError("cannot import name pi. Did you mean 'from math import pi'?",)

The first 2 cases only use the module name but the last 2 cases will actually import the modules to get the names in it and I want to do this for modules which are safe to import (no side-effect expected).

Source: https://github.com/SylvainDe/DidYouMean-Python/blob/master/didyoumean/didyoumean_internal.py#L30 (but if you are interested in that kind of features, I'd recommend using friendly-traceback instead)
msg385493 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-22 11:40
Another potential use case: restrict pydoc web server to stdlib modules, see bpo-42988.
msg385623 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-25 12:25
New changeset db584bdad32d81e42b71871077a8008036f5c048 by Victor Stinner in branch 'master':
bpo-42955: Add sys.modules_names (GH-24238)
https://github.com/python/cpython/commit/db584bdad32d81e42b71871077a8008036f5c048
msg385624 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-25 12:30
I merged my PR, thanks for the feedback and reviews.
msg385625 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-25 12:59
New changeset 483359174e92489e13959977824806734f1a8cdd by Victor Stinner in branch 'master':
bpo-42955: Fix sys.module_names doc (GH-24329)
https://github.com/python/cpython/commit/483359174e92489e13959977824806734f1a8cdd
msg385670 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-25 22:13
New changeset 9852cb38112a4f8d11e26c3423643ea994d5a14f by Victor Stinner in branch 'master':
bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)
https://github.com/python/cpython/commit/9852cb38112a4f8d11e26c3423643ea994d5a14f
msg385671 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-25 22:13
Update: attribute renamed to sys.stdlib_module_names.
msg385817 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-27 23:03
New changeset 64fc105b2d2faaeadd1026d2417b83915af6622f by Victor Stinner in branch 'master':
bpo-42955: Remove sub-packages from sys.stdlib_module_names (GH-24353)
https://github.com/python/cpython/commit/64fc105b2d2faaeadd1026d2417b83915af6622f
msg388419 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-03-10 10:16
I also created a thread on python-dev to discuss this new feature:
https://mail.python.org/archives/list/python-dev@python.org/thread/BTX7SH2CR66QCLER2EXAK2GOUAH2U4CL/
msg389942 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-04-01 00:28
New changeset ad493edf5791e7abb2588852e876b8584945c653 by Victor Stinner in branch 'master':
bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122)
https://github.com/python/cpython/commit/ad493edf5791e7abb2588852e876b8584945c653
History
Date User Action Args
2022-04-11 14:59:40adminsetgithub: 87121
2021-04-01 00:28:36vstinnersetmessages: + msg389942
2021-03-31 23:03:30vstinnersetpull_requests: + pull_request23869
2021-03-10 10:16:44vstinnersetmessages: + msg388419
2021-01-27 23:03:30vstinnersetmessages: + msg385817
2021-01-27 11:40:07vstinnersetpull_requests: + pull_request23173
2021-01-25 22:13:40vstinnersetmessages: + msg385671
title: Add sys.module_names: list of stdlib module names (Python and extension modules) -> Add sys.stdlib_module_names: list of stdlib module names (Python and extension modules)
2021-01-25 22:13:19vstinnersetmessages: + msg385670
2021-01-25 17:15:01vstinnersetpull_requests: + pull_request23151
2021-01-25 12:59:10vstinnersetmessages: + msg385625
2021-01-25 12:40:37vstinnersetpull_requests: + pull_request23148
2021-01-25 12:30:06vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg385624

stage: patch review -> resolved
2021-01-25 12:25:14vstinnersetmessages: + msg385623
2021-01-22 19:02:26arobergesetnosy: + aroberge
2021-01-22 11:40:04vstinnersetmessages: + msg385493
2021-01-21 13:09:15shihai1991setnosy: + shihai1991
2021-01-20 19:51:21SylvainDesetnosy: + SylvainDe
messages: + msg385364
2021-01-20 16:00:32vstinnersetmessages: + msg385350
2021-01-20 08:51:55vstinnersetmessages: + msg385317
2021-01-20 00:39:00vstinnersetmessages: + msg385312
2021-01-20 00:37:29vstinnersetmessages: + msg385311
2021-01-20 00:32:39vstinnersetmessages: + msg385310
2021-01-19 22:04:57vstinnersetmessages: + msg385300
2021-01-19 21:45:40vstinnersetpull_requests: + pull_request23082
2021-01-19 16:37:42vstinnersetmessages: + msg385273
2021-01-19 16:35:33vstinnersetmessages: + msg385272
2021-01-19 16:15:13vstinnersetmessages: + msg385270
2021-01-19 12:39:23ronaldoussorensetmessages: + msg385255
2021-01-19 12:24:41ronaldoussorensetmessages: + msg385254
2021-01-19 11:30:46vstinnersetmessages: + msg385253
2021-01-19 11:18:36ronaldoussorensetmessages: + msg385252
2021-01-19 11:09:56vstinnersetmessages: + msg385251
2021-01-19 10:03:19ronaldoussorensetnosy: + ronaldoussoren
messages: + msg385250
2021-01-19 09:25:49corona10setnosy: + corona10
2021-01-18 23:28:49vstinnersetpull_requests: + pull_request23075
2021-01-18 17:41:45vstinnersetmessages: + msg385208
2021-01-18 15:06:38vstinnersetmessages: + msg385201
2021-01-18 14:54:00vstinnersetmessages: + msg385200
2021-01-18 13:54:44vstinnersetmessages: + msg385197
2021-01-18 12:36:12vstinnersetmessages: + msg385194
2021-01-18 12:18:48vstinnersetkeywords: + patch
stage: patch review
pull_requests: + pull_request23060
2021-01-18 10:42:55serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg385186
2021-01-18 10:15:17vstinnersetmessages: + msg385181
2021-01-18 10:08:34vstinnercreate