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: Threading: add builtin TID attribute to Thread objects
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Michael.Felt, eryksun, jaketesler, miss-islington, pitrou, vstinner
Priority: normal Keywords: patch

Created on 2019-02-22 22:46 by jaketesler, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11993 merged python-dev, 2019-02-22 22:47
PR 13458 merged vstinner, 2019-05-21 10:24
PR 13463 merged jaketesler, 2019-05-21 14:50
PR 13654 merged David Carlier, 2019-05-29 16:32
PR 14845 merged jaketesler, 2019-07-18 17:54
PR 15028 merged miss-islington, 2019-07-30 21:42
Messages (40)
msg336348 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-02-22 22:46
This functionality adds a native Thread ID to threading.Thread objects. This ID (TID), similar to the PID of a process, is assigned by the OS (kernel) and is generally used for externally monitoring resources consumed by the running thread (or process).
This does not replace the `ident` attribute within Thread objects, which is assigned by the Python interpreter and is guaranteed as unique for the lifetime of the Python instance.
msg339358 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-04-02 18:08
*bump*

Could someone look into reviewing this bug/PR? Thanks!
msg342024 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-10 01:09
It seems like the feature is only supported by a few operating systems and only if required functions are available:

#ifdef __APPLE__
    volatile uint64_t tid;
    pthread_threadid_np(NULL, &tid);
#elif defined(__linux__)
    volatile pid_t tid;
    tid = syscall(__NR_gettid);

I understand that it's not available on FreeBSD nor Windows?

In that case, I would prefer to only add a threading.get_tid() *function*.

Is it different than threading.get_ident() on Linux?
msg342116 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-10 18:25
The feature is supported on Windows: the file supporting Windows threading is `thread_nt.h`, not `thread_pthread.h` since Windows doesn't use POSIX-style threads.

Also it is different from threading.get_ident() - ident is a Python-issued unique identifier, TID is issued by the OS and is tracable system-wide.
msg342263 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2019-05-12 17:08
New changeset 4959c33d2555b89b494c678d99be81a65ee864b0 by Antoine Pitrou (Jake Tesler) in branch 'master':
bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)
https://github.com/python/cpython/commit/4959c33d2555b89b494c678d99be81a65ee864b0
msg342264 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2019-05-12 17:09
Thank you Jake for your contribution!
msg342292 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-13 09:13
I dislike adding a function which always return 0 when the feature is not supported:

unsigned long
PyThread_get_thread_native_id(void)
{
    ...
#if ...
    ...
#else
    unsigned long native_id;
    native_id = 0;
#endif
    return (unsigned long) native_id;
}

I would prefer to not define the function if it's not available, so the attribute would be missing.

With the commited change, how can I know if native thread identifier is supported or not?
msg342293 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-13 09:17
> """Native integral thread ID of this thread or 0 if it has not been started. (...)

Why not set the attribute to None before a thread starts? It would be more consistent with the the "ident" attribute behavior, no? Extract __repr__():

    def __repr__(self):
        assert self._initialized, "Thread.__init__() was not called"
        status = "initial"
        if self._started.is_set():
            status = "started"
        ...
        if self._ident is not None:
            status += " %s" % self._ident
        return "<%s(%s, %s)>" % (self.__class__.__name__, self._name, status)

"is None" is a reliable check to decide if the attribute is set or not.

With the current implementation, it's hard to guess since PyThread_get_thread_native_id() returns on some platforms... But again, I would prefer to not have the attribute if PyThread_get_thread_native_id() is not available on a platform.
msg342346 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-13 15:42
This change broke the AIX buildbot:
https://buildbot.python.org/all/#/builders/132/builds/486

======================================================================
FAIL: test_various_ops (test.test_threading.ThreadTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-aix-ppc64/build/Lib/test/test_threading.py", line 109, in test_various_ops
    self.assertEqual(len(native_ids), NUMTASKS + 1)
AssertionError: 1 != 11

======================================================================
FAIL: test_various_ops_large_stack (test.test_threading.ThreadTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-aix-ppc64/build/Lib/test/test_threading.py", line 159, in test_various_ops_large_stack
    self.test_various_ops()
  File "/home/shager/cpython-buildarea/3.x.edelsohn-aix-ppc64/build/Lib/test/test_threading.py", line 109, in test_various_ops
    self.assertEqual(len(native_ids), NUMTASKS + 1)
AssertionError: 1 != 11

======================================================================
FAIL: test_various_ops_small_stack (test.test_threading.ThreadTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/shager/cpython-buildarea/3.x.edelsohn-aix-ppc64/build/Lib/test/test_threading.py", line 147, in test_various_ops_small_stack
    self.test_various_ops()
  File "/home/shager/cpython-buildarea/3.x.edelsohn-aix-ppc64/build/Lib/test/test_threading.py", line 109, in test_various_ops
    self.assertEqual(len(native_ids), NUMTASKS + 1)
AssertionError: 1 != 11
msg342396 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-13 22:28
So where do we go from here?
msg342920 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-20 15:33
> So where do we go from here?

I propose to only add attribute if it's supported.

If nobody comes with a fix, I would prefer to remove the feature to repair the AIX buildbot.
msg343000 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-21 10:28
I wrote PR 13458 to revert the change which broke the CI for longer than one week, see the rationale there:
https://github.com/python/cpython/pull/13458#issuecomment-494334241

Email thread about the regression:
https://mail.python.org/pipermail/python-buildbots/2019-May/000280.html
msg343001 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-21 10:33
Jake Tesler: In the meanwhile, can you please try to rewrite your change to make the attribute optional?

C PyThread_get_thread_native_id() function and Python _thread.get_native_id() should not be defined if it's not supported by 
the platform.

I suggest to add the following #define in Include/pythread.h:

#if (... list of supported platforms ...
#  define PY_HAVE_THREAD_NATIVE_ID 1
#endif

It would be great if you can come up with a solution before the end of the month, otherwise we will miss Python 3.8 deadline for new feature :-(

Tell me if you need help to rework your PR. IMHO it's a nice feature. There is just an issue in your first implementation.
msg343002 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-21 10:45
New changeset d12e75734d46ecde588c5de65e6d64146911d20c by Victor Stinner in branch 'master':
Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)" (GH-13458)
https://github.com/python/cpython/commit/d12e75734d46ecde588c5de65e6d64146911d20c
msg343003 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2019-05-21 10:45
Jake, would you like to submit a new PR that implements Victor's suggestion (i.e. only define and test the attribute on supported systems)?
msg343046 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-21 13:16
I will implement these changes - let’s try to hit that end-of-month target!
msg343059 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-21 14:51
New PR created with requested edits. :)
msg343060 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-21 14:53
Victor Stinner: would you mind taking a look at the new PR? Is this more along the lines of what you had in mind?
msg343151 - (view) Author: Michael Felt (Michael.Felt) * Date: 2019-05-22 07:54
Repeating a bot of what I added to PR13463

AIX has native support for thread-id since at least AIX 4.1 (1994-1995) where every process has an initial TID (PID are even numbers and "own" the resources, TID are odd and are the "workers" - very simply put). Hence, by default, an AIX process is "mono-threaded".

The key concern - when calling thread related issues, is to ensure that all compiled code uses the same definitions in include files - namely, with _THREAD_SAFE defined.

There are couple of ways to accomplish this:
a) ensure that #include <pthread.h> is first (everywhere!)
b) use cc_r, xlc_r, etc_r (with IBM compiler)
c) -D_THREAD_SAFE

As a) seems unpractical to ensure all the time; b) is also unpractical (no idea how/if gcc, e.g., has a way to 'signal' the need to be thread_safe - so a change in configure.ac, and maybe in setup.py, and thinking further yet - in the CFLAGS that get passed to extrnal modules and extensions - adding -D_THREAD_SAFE seems the most complete (aka safe) approach.

And, of course, for this specific function a call to

Syntax
#include <pthread.h>
pthread_t pthread_self (void);

Description
The pthread_self subroutine returns the calling thread's ID.
msg343159 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-22 08:44
The AIX case sounds way more complex. I suggest to start without AIX
support, since it is already complex enough, and then open a new issue to
discuss/implement AIX support, once this issue is done.
msg343168 - (view) Author: Michael Felt (Michael.Felt) * Date: 2019-05-22 10:22
I do not know if it is that much mode complex. Unless I missed something it seems to be that this bit - needs three lines added after the FREEBSD block - per below: 
All the other "assurances" are just things that need to be assured. Adding a -D_XXX to CFLAGS is not all that complex either. Perhaps getting the need for the flag documented is 'complex'.

#ifdef PY_HAVE_THREAD_NATIVE_ID
unsigned long
PyThread_get_thread_native_id(void)
{
    if (!initialized)
        PyThread_init_thread();
#ifdef __APPLE__
    uint64_t native_id;
    (void) pthread_threadid_np(NULL, &native_id);
#elif defined(__linux__)
    pid_t native_id;
    native_id = syscall(SYS_gettid);
#elif defined(__FreeBSD__)
    int native_id;
    native_id = pthread_getthreadid_np();
#elif defined(_AIX)
    pthread_t native_id;
    native_id = pthread_self()

****
More may be needed, but I expect it the include file mentioned is already included - but perhaps without the assurance that AIX says it wants/needs for real thread safe builds. And fixing that is just a bonus!
msg343169 - (view) Author: Michael Felt (Michael.Felt) * Date: 2019-05-22 10:30
On 22/05/2019 12:22, Michael Felt wrote:
> All the other "assurances" are just things that need to be assured. Adding a -D_XXX to CFLAGS is not all that complex either. Perhaps getting the need for the flag documented is 'complex'.

Now that I think about it, perhaps I should make a separate PR just for
the -D_THREAD_SAFE definition. Python does reference the AIX "threading"
include files and documentation has always indicated they should be
first, or have this define. If it is already there, please excuse the
noise; if not, imho - it should be there.
msg343175 - (view) Author: Eryk Sun (eryksun) * (Python triager) Date: 2019-05-22 11:10
> The pthread_self subroutine returns the calling thread's ID.

I don't know much about AIX, but according to the docs [1] the kernel thread ID should be thread_self(), which is not the same as pthread_self().

[1]: https://www.ibm.com/support/knowledgecenter/en/ssw_aix_72/com.ibm.aix.basetrf2/thread_self.htm
msg343191 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-22 12:57
In general, I’ve concluded most ‘editions’ of pthread_self() are not the same value as this feature aims to implement. I’m not familiar enough with AIX to be certain about that platform, though. 

If there’s an equivalent function in AIX to capture the actual integral thread ID in the same 3-line way as Linux, FreeBSD, et al., are implemented (the big block in PyThread_get_thread_native_id), then it’s worth including. If the mechanism required is a more complex one than just adding a few lines, then it might be best left for a new PR. :)
msg343192 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-22 13:15
I will look into whether adding thread_self() for AIX would be simple enough for this PR.
msg343203 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-22 15:43
New changeset b121f63155d8e3c7c42ab6122e36eaf7f5e9f7f5 by Victor Stinner (Jake Tesler) in branch 'master':
bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)
https://github.com/python/cpython/commit/b121f63155d8e3c7c42ab6122e36eaf7f5e9f7f5
msg343204 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-22 15:44
Currently, Threading.start() ignores _start_new_thread() return value which is an identifier. Is it the same value than threading.get_native_id()? It might be good to clarify _thread._start_new_thread() documentation since we now have 2 kinds of "identifier".

Later it might be interesting to attempt to support NetBSD, OpenBSD, and more operating systems. Well, that can be done... later :-)
msg343206 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-22 15:52
glibc 2.30 scheduled in August 2019 will finally provide a gettid() function!
* https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=NEWS;hb=HEAD
* http://man7.org/linux/man-pages/man2/gettid.2.html

Once it will be released, it would be interesting to use it rather than using a direct syscall.
msg343207 - (view) Author: Michael Felt (Michael.Felt) * Date: 2019-05-22 15:56
On 22/05/2019 15:15, Jake Tesler wrote:
> Jake Tesler <jake.tesler@gmail.com> added the comment:
>
> I will look into whether adding thread_self() for AIX would be simple enough for this PR.
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue36084>
> _______________________________________
>
Blush. Maybe I should have read further (to chapter T)

Here is a bare bones example - showing the pthread_self() is not the
right value, but thread_self is.

michael@x071:[/data/prj/aixtools/tests/posix]cat thread*.c
#include <pthread.h>
#include <sys/thread.h>
#include <stdio.h>

main()
{
        pid_t pid;
        tid_t tid;
        pthread_t ptid;

        pid = getpid();
        tid = thread_self();
        ptid = pthread_self();

        fprintf(stderr,"thread_self: pid:%d tid:%d ptid:%d\n", pid, tid,
ptid);
        sleep(300);     /* give time to run ps -mo THREAD */
}

michael@x071:[/data/prj/aixtools/tests/posix]./thread_self
thread_self: pid:*4129010 *tid:*23724099 *ptid:1

michael@x071:[/data/prj/aixtools/tests/posix]ps -mo THREAD
    USER     PID    PPID       TID S  CP PRI SC    WCHAN        F     TT
BND COMMAND
 michael 3408006 7012502         - A   3  61  1        -   200001 
pts/0  -1 ps -mo THREAD
       -       -       -  22282455 R   3  61  1        -   400000     
-  -1 -
 michael *4129010 *7012502         - A   0  60  1 f1000a03e16533b0 
8200011  pts/0  -1 ./thread_self
       -       -       -  *23724099 *S   0  60  1 f1000a03e16533b0  
410400      -  -1 -
msg343209 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-22 16:08
Michael Felt: it's annoying when you ignore Antoine's comment and my comment.
* https://github.com/python/cpython/pull/13463#issuecomment-494797084
* https://bugs.python.org/issue36084#msg343159

The AIX case is very special and required a separated issue. Please open a separated if you want to discuss/implement get_native_id() on AIX.
msg343224 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-22 17:59
Victor – the return value of _start_new_thread is the the `ident` parameter, and its not the same as the native id.

See here: https://github.com/python/cpython/pull/11993#issuecomment-491544908
msg343225 - (view) Author: Michael Felt (Michael.Felt) * Date: 2019-05-22 18:08
On 22/05/2019 18:08, STINNER Victor wrote:
> STINNER Victor <vstinner@redhat.com> added the comment:
>
> Michael Felt: it's annoying when you ignore Antoine's comment and my comment.
> * https://github.com/python/cpython/pull/13463#issuecomment-494797084
> * https://bugs.python.org/issue36084#msg343159
>
> The AIX case is very special and required a separated issue. Please open a separated if you want to discuss/implement get_native_id() on AIX.

My apologies. I was not ignoring anyone. I am sorry you had that impression.

I had already taken it as a given that it would not be in this PR (re:
https://bugs.python.org/issue36084#msg343159)

And, I had expressed my hope - it would not be too complex in
https://bugs.python.org/issue36084#msg343168. Which also made me realize
that an 'issue' around the "define" described in the "pthread"
documentation (so in hindsight, not applicable to an implementation of
"get_native_id()".

And, while I am sorry you feel I have ignored you - it is hardly the
case. Everyone's comments have given me a reason to look further. And it
grieves me that my intentions are misunderstood.

Thank you for your honesty!

>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue36084>
> _______________________________________
>
msg343307 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-05-23 16:16
Michael Felt -
If you would like some help with adding/building AIX support for this functionality, tag me, I'd be glad to help out! :)
msg343313 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-05-23 17:14
If someone wants to document that _start_new_thread() return value is similar to threading.get_ident() but not threading.get_native_id(): please go ahead and propose a PR :-)

Adding support for AIX to get_native_id() should be done in a separated issue since AIX seems to come with specific challenges :-)

The initial feature request is now implemented. Well done! I know that many people were awaiting to expose "gettid()" in Python. Now it's there!

Thanks everyone who was involved in this issue.

Sorry for the CI hiccup which required to revert the change temporarily. At least, it didn't miss Python 3.8 feature freeze!
msg343513 - (view) Author: Michael Felt (Michael.Felt) * Date: 2019-05-25 21:10
On 23/05/2019 18:16, Jake Tesler wrote:
> Jake Tesler <jake.tesler@gmail.com> added the comment:
>
> Michael Felt -
> If you would like some help with adding/building AIX support for this functionality, tag me, I'd be glad to help out! :)
>
> ----------
Thanks - I'll try to look at this early next week.
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue36084>
> _______________________________________
>
msg348769 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-07-30 21:42
New changeset 84846b0187919551b1b08dca447658bbbbb710b1 by Victor Stinner (Jake Tesler) in branch 'master':
bpo-36084: Add threading Native ID information to What's New documentation (GH-14845)
https://github.com/python/cpython/commit/84846b0187919551b1b08dca447658bbbbb710b1
msg348770 - (view) Author: miss-islington (miss-islington) Date: 2019-07-30 21:49
New changeset 7026737d77836657c3b713000c3154cfdb7451db by Miss Islington (bot) in branch '3.8':
bpo-36084: Add threading Native ID information to What's New documentation (GH-14845)
https://github.com/python/cpython/commit/7026737d77836657c3b713000c3154cfdb7451db
msg355764 - (view) Author: Jake Tesler (jaketesler) * Date: 2019-10-31 19:28
I have encountered a minor bug with this new feature. The bug occurs when creating a new multiprocessing.Process object on Unix (or on any platform where the multiprocessing start_method is 'fork' or 'forkserver').

When creating a new process via fork, the Native ID in the new MainThread is incorrect. The new forked process' threading.MainThread object inherits the Native ID from the parent process' MainThread instead of capturing/updating its own (new) Native ID.

See the following snippet:

>>> import threading, multiprocessing
>>> multiprocessing.set_start_method('fork') # or 'forkserver'
>>> def proc(): print(threading.get_native_id(), threading.main_thread().native_id) # get_native_id(), mainthread.native_id
>>> proc()
22605 22605 # get_native_id(), mainthread.native_id
>>> p = multiprocessing.Process(target=proc)
>>> p.start()
22648 22605 # get_native_id(), mainthread.native_id
>>>
>>> def update(): threading.main_thread()._set_native_id()
>>> def print_and_update(): proc(); update(); proc()
>>> print_and_update()
22605 22605 # get_native_id(), mainthread.native_id
22605 22605 
>>> p2=multiprocessing.Process(target=print_and_update); p2.start()
22724 22605 # get_native_id(), mainthread.native_id
22724 22724
>>> print_and_update()
22605 22605 # get_native_id(), mainthread.native_id
22605 22605

As you can see, the new Process object's MainThread.native_id attribute matches that of the MainThread of its parent process. 

Unfortunately, I'm not too familiar with the underlying mechanisms that Multiprocessing uses to create forked processes. 
I believe this behavior occurs because (AFAIK) a forked multiprocessing.Process copies the MainThread object from its parent process, rather than reinitializing a new one. Looking further into the multiprocessing code, it appears the right spot to fix this would be in the multiprocessing.Process.bootstrap() function. 

I've created a branch containing a working fix - I'm also open to suggestions of how a fix might otherwise be implemented. 
If it looks correct I'll create a PR against the CPython 3.8 branch. 

See the branch here: https://github.com/jaketesler/cpython/tree/fix-mp-native-id

Thanks all!
-Jake
msg355992 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-11-05 01:25
> I have encountered a minor bug with this new feature.

Please open a new issue.
msg356201 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-11-07 16:38
Jake created bpo-38707.
History
Date User Action Args
2022-04-11 14:59:11adminsetgithub: 80265
2019-11-07 16:38:36vstinnersetmessages: + msg356201
2019-11-05 22:36:39jaketeslersetstatus: open -> closed
2019-11-05 01:25:38vstinnersetmessages: + msg355992
2019-10-31 19:28:19jaketeslersetstatus: closed -> open

messages: + msg355764
2019-07-30 21:49:28miss-islingtonsetnosy: + miss-islington
messages: + msg348770
2019-07-30 21:42:48miss-islingtonsetpull_requests: + pull_request14787
2019-07-30 21:42:12vstinnersetmessages: + msg348769
2019-07-18 17:54:40jaketeslersetpull_requests: + pull_request14636
2019-05-29 16:32:16David Carliersetpull_requests: + pull_request13548
2019-05-25 21:10:31Michael.Feltsetmessages: + msg343513
2019-05-23 17:14:10vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg343313

stage: patch review -> resolved
2019-05-23 16:16:16jaketeslersetmessages: + msg343307
2019-05-22 18:08:34Michael.Feltsetmessages: + msg343225
2019-05-22 17:59:41jaketeslersetmessages: + msg343224
2019-05-22 16:08:04vstinnersetmessages: + msg343209
2019-05-22 15:56:48Michael.Feltsetmessages: + msg343207
2019-05-22 15:52:11vstinnersetmessages: + msg343206
2019-05-22 15:44:57vstinnersetmessages: + msg343204
2019-05-22 15:43:21vstinnersetmessages: + msg343203
2019-05-22 13:15:43jaketeslersetmessages: + msg343192
2019-05-22 12:57:53jaketeslersetmessages: + msg343191
2019-05-22 11:10:04eryksunsetnosy: + eryksun
messages: + msg343175
2019-05-22 10:30:41Michael.Feltsetmessages: + msg343169
2019-05-22 10:22:26Michael.Feltsetmessages: + msg343168
2019-05-22 08:44:17vstinnersetmessages: + msg343159
2019-05-22 07:54:48Michael.Feltsetnosy: + Michael.Felt
messages: + msg343151
2019-05-21 14:53:02jaketeslersetmessages: + msg343060
2019-05-21 14:51:12jaketeslersetmessages: + msg343059
2019-05-21 14:50:39jaketeslersetpull_requests: + pull_request13373
2019-05-21 13:16:08jaketeslersetmessages: + msg343046
2019-05-21 10:45:55pitrousetmessages: + msg343003
2019-05-21 10:45:00vstinnersetmessages: + msg343002
2019-05-21 10:33:37vstinnersetmessages: + msg343001
2019-05-21 10:28:30vstinnersetmessages: + msg343000
2019-05-21 10:24:57vstinnersetstage: resolved -> patch review
pull_requests: + pull_request13368
2019-05-20 15:33:42vstinnersetmessages: + msg342920
2019-05-13 22:28:32jaketeslersetmessages: + msg342396
2019-05-13 15:42:25vstinnersetmessages: + msg342346
2019-05-13 09:17:18vstinnersetmessages: + msg342293
2019-05-13 09:13:20vstinnersetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg342292
2019-05-12 17:09:04pitrousetstatus: open -> closed
messages: + msg342264

components: + Library (Lib)
resolution: fixed
stage: patch review -> resolved
2019-05-12 17:08:27pitrousetmessages: + msg342263
2019-05-10 18:25:20jaketeslersetmessages: + msg342116
2019-05-10 01:09:49vstinnersetnosy: + vstinner
messages: + msg342024
2019-04-02 18:08:43jaketeslersetmessages: + msg339358
2019-02-23 06:26:43xtreaksetnosy: + pitrou
2019-02-22 22:47:58python-devsetkeywords: + patch
stage: patch review
pull_requests: + pull_request12016
2019-02-22 22:46:11jaketeslercreate