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: Migrate decimal to use PEP 567 context variables
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: skrah Nosy List: gregory.p.smith, gvanrossum, mark.dickinson, methane, ned.deily, skrah, vstinner, yselivanov
Priority: normal Keywords: patch

Created on 2018-01-23 06:56 by yselivanov, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
xwith.py skrah, 2018-01-26 20:36 small benchmark
xwith2.py vstinner, 2018-01-26 23:11
Pull Requests
URL Status Linked Edit
PR 5278 merged yselivanov, 2018-01-23 06:58
Messages (32)
msg310472 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-23 06:56
PEP 567 allows decimal to be safely used in async/await code.

I couldn't observe any performance impact by the proposed PR.  The PR doesn't modify decimal context behaviour: instead of using a thread-local storage it now uses a context variable.
msg310482 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-23 08:25
I'll take a look.
msg310630 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-24 20:48
Stefan, it would be great to have this committed before 3.7 feature freeze.

The change is pretty straightforward -- we replaced threading.local() with a contextvar, which should be a backwards compatible change.
msg310698 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-25 18:14
I realize that you had to fight massive mailing list distractions
during the PEP discussions, but this is very close to the beta ...


Let's start here:

>>> from decimal import *
==18887== Invalid read of size 8
==18887==    at 0x5324E0: contextvar_new (context.c:744)
==18887==    by 0x53141A: PyContextVar_New (context.c:137)
==18887==    by 0xFED052B: PyInit__decimal (_decimal.c:5542)
==18887==    by 0x51FC56: _PyImport_LoadDynamicModuleWithSpec (importdl.c:159)
==18887==    by 0x51F29F: _imp_create_dynamic_impl (import.c:2145)
==18887==    by 0x51A4BA: _imp_create_dynamic (import.c.h:289)
==18887==    by 0x43257A: _PyMethodDef_RawFastCallDict (call.c:530)
==18887==    by 0x432710: _PyCFunction_FastCallDict (call.c:582)
==18887==    by 0x432DD6: PyCFunction_Call (call.c:787)
==18887==    by 0x4FAA44: do_call_core (ceval.c:4659)
==18887==    by 0x4F58CC: _PyEval_EvalFrameDefault (ceval.c:3232)
==18887==    by 0x4E7F99: PyEval_EvalFrameEx (ceval.c:545)
==18887==  Address 0xcf589a8 is 8 bytes before a block of size 64 alloc'd
==18887==    at 0x4C2A9A1: malloc (vg_replace_malloc.c:299)
==18887==    by 0x470498: _PyMem_RawMalloc (obmalloc.c:75)
==18887==    by 0x470FFC: PyMem_RawMalloc (obmalloc.c:503)
==18887==    by 0x471DEF: _PyObject_Malloc (obmalloc.c:1560)
==18887==    by 0x471312: PyObject_Malloc (obmalloc.c:616)
==18887==    by 0x4A35D6: PyUnicode_New (unicodeobject.c:1293)
==18887==    by 0x4CA16B: _PyUnicodeWriter_PrepareInternal (unicodeobject.c:13423)
==18887==    by 0x4B1843: PyUnicode_DecodeUTF8Stateful (unicodeobject.c:4806)
==18887==    by 0x4A5E67: PyUnicode_FromString (unicodeobject.c:2105)
==18887==    by 0x5313F5: PyContextVar_New (context.c:133)
==18887==    by 0xFED052B: PyInit__decimal (_decimal.c:5542)
==18887==    by 0x51FC56: _PyImport_LoadDynamicModuleWithSpec (importdl.c:159)
==18887==
msg310699 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-25 18:21
> I realize that you had to fight massive mailing list distractions
> during the PEP discussions, but this is very close to the beta ...

Oh thanks, but I see no reason for you to be condescending here.

I cannot reproduce this on Mac OS / Linux.  Are you sure you've built your Python correctly?  Can you run 'make distclean; ./configure --with-pydebug; make -j4'?
msg310700 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-25 18:42
(Just in case I rebased my patch onto the latest master)
msg310701 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-25 18:54
I think I found what cause this, but I have no idea why it has surfaced only now :)

https://github.com/python/cpython/pull/5326/files
(see the added PyType_IS_GC(Py_TYPE(name)) check)

I'll merge that PR and rebase the decimal patch again.
msg310704 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-25 19:20
I pushed a fix (already in the master branch) and rebased the patch once again.  I expect it to work now :)
msg310714 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-25 22:48
Stefan, I do think that this is a release blocker.  We want to get this change as early as possible to ensure that it's well tested.

AFAIK Guido also wants decimal to be updated and well supported in async/await code.
msg310715 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-25 22:53
Sure, and *I* am the one running the extended decimal test suite as we speak,
not Guido.

You are playing power games here, and you did that from the start by choosing
the nosy list.
msg310716 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-25 23:03
> Sure, and *I* am the one running the extended decimal test suite as we speak, not Guido.

Thank you.

> You are playing power games here, and you did that from the start by choosing the nosy list.

Please.  I thought it was pretty much decided that we will update decimal if there is no significant performance degradation, so there's no need for a conspiracy.  I put Guido to the nosy-list not because I want to force something, but just because we've discussed decimal and PEP 567/550 with him numerous times.
msg310738 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2018-01-26 06:23
You guys both need to calm down.

Stefan, what's your objection against this, assuming the crash is fixed?
msg310790 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-26 20:36
Tests
-----

I ran some of my own tests (not even close to all), they seem fine.

However, I could not find any tests for the added feature (safe
use with async) though. We would be adding a new feature without
tests.


Performance
-----------

I'm getting a large slowdown:

./python Modules/_decimal/tests/bench.py

bench.py
________

patched:    [0.199, 0.206, 0.198, 0.199, 0.197, 0.202, 0.198, 0.201, 0.213, 0.199]
status-quo: [0.187, 0.184, 0.185, 0.183, 0.184, 0.188, 0.184, 0.183, 0.183, 0.185]

slowdown: > 10%


xwith.py
--------

patched:    [0.535, 0.541, 0.523]
status-quo: [0.412, 0.393, 0.375]

slowdown: > 30%



Given the performance issues I'm -1 for adding the feature at
this point.
msg310791 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-26 21:06
> However, I could not find any tests for the added feature (safe
> use with async) though. We would be adding a new feature without
> tests.

This is no problem, I can add a few async/await tests.


> I'm getting a large slowdown:
> ./python Modules/_decimal/tests/bench.py
> [..]
> patched:    [0.199, 0.206, 0.198, 0.199, 0.197, 0.202, 0.198, 0.201, 0.213, 0.199]
> status-quo: [0.187, 0.184, 0.185, 0.183, 0.184, 0.188, 0.184, 0.183, 0.183, 0.185]

I'd like you to elaborate a bit more here.  First, bench.py produces a completely different output from what you've quoted.  How exactly did you compile these results?  Are those numbers results of Pi calculation or factorial?  Can you upload the actual script you used here (if there's one)?

Second, here's my run of bench.py with contextvars and without: https://gist.github.com/1st1/1187fc58dfdef86e3cad8874e0894938

I don't see any difference, left alone 10% slowdown.


> xwith.py
> --------
>
> patched:    [0.535, 0.541, 0.523]
> status-quo: [0.412, 0.393, 0.375]

This benchmark is specially constructed to profile creating decimal contexts and doing almost nothing with them.

I've optimized PEP 567 for contextvar.get() operation, not contextvar.set (it's hard to make hamt.set() as fast as dict.set()).  That way, if you have an some decimal code that performs actual calculations with decimal objects, the operation of looking up the current context is cheap.

It's hard to imagine a situation, where a real decimal-related code just creates decimal contexts and does nothing else with them.
msg310794 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-26 21:12
On Fri, Jan 26, 2018 at 09:06:38PM +0000, Yury Selivanov wrote:
> This benchmark is specially constructed to profile creating decimal contexts and doing almost nothing with the

It is not constructed at all.  It was the first thing I wrote down trying
to play a bit with speed.

Even the telco benchmark (where there's a lot of other stuff going
on) slows down by around 7-8%.

I did not hunt for these benchmarks. They are the first things I tried out.  I
cannot believe that you never saw a slowdown as claimed in your OP.
msg310795 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2018-01-26 21:17
Guys. Please stop with the editorializing. "I cannot believe ..." (used
essentially by both of you) is not constructive.
msg310796 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-26 21:21
Guido, I have the feeling that the feature -- about which I was actually
positive in the first place -- is being pushed aggressively with no
respect for the module author.

BTW, prec is changed quite frequently in decimal code, so if people
want infix notation they also have to use many with-statements.
msg310799 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2018-01-26 21:27
Stefan, I don't think a module author should retain veto over everything
affecting their code forever. (We've had spectacular process failures with
this in the past.) Please take a deep breath and patiently answer Yury's
questions. If you two can't agree on this, the status quo wins, but it will
be a blemish on your reputation if you just block it unilaterally. At the
very least help Yury reproduce your timing results -- at this point the
burden is on you since nobody else can reproduce them.
msg310800 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-26 21:30
I have run about 1000 times more decimal benchmarks than both Yury and you.  You attempt to hurt my reputation is laughable.

Show me some top-performance code that you have written.
msg310803 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-26 21:37
Sorry Stefan, I never wanted this to look like "I'm pushing this without listening to Stefan".  I apologize if it looked that way.

I ran bm_telco on my machine before submitting the PR, and I indeed did not see any performance impact.  I'll try again.  I also have a idea of a micro-optimization that might make it a tiny bit faster.
msg310805 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2018-01-26 21:45
Stefan this is unacceptable abuse. Please read the code of conduct.
msg310806 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-26 21:52
Yury, would you be willing to work this out by email? -- I think it
was you who I discussed the context-subclassing with and that was
quite a pleasant experience.
msg310809 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-26 22:13
Guido, I apologize for the outburst.  I had the impression that
msg310799 implicitly asserted my incompetence in benchmarking.
msg310811 - (view) Author: Elvis Pranskevichus (Elvis.Pranskevichus) * (Python triager) Date: 2018-01-26 22:24
FWIW, I ran bm_telco with pyperformance on a benchmark-tuned system and did not observe the slowdown.  Benchmarks were done on a release build (--enable-optimizations)

$ sudo (which python3) -m perf system tune

MASTER:

$ pyperformance run --python=envs/3.7-master-pgo-lto/prefix/bin/python3.7m --affinity=2,3 --rigorous --benchmarks=telco -o json/3.7-master.json
Python benchmark suite 0.6.1

[1/1] telco...
INFO:root:Running `/home/elvis/dev/python/performance/venv/cpython3.7-8cfe759dd297/bin/python -u /home/elvis/dev/python/performance/performance/benchmarks/bm_telco.py --rigorous --affinity=2,3 --output /tmp/tmpgszxc792`
.........................................
telco: Mean +- std dev: 9.17 ms +- 0.32 ms


MASTER + contextvars patch:

$ pyperformance run --python=envs/3.7-master-pgo+lto+decimal-contextvars/prefix/bin/python3.7m --affinity=2,3 --rigorous --benchmarks=telco -o json/3.7-contextvars.json
Python benchmark suite 0.6.1

[1/1] telco...
INFO:root:Running `/home/elvis/dev/python/performance/venv/cpython3.7-8a6fbdee5a5b/bin/python -u /home/elvis/dev/python/performance/performance/benchmarks/bm_telco.py --rigorous --affinity=2,3 --output /tmp/tmp8y4mivnp`
.........................................
telco: Mean +- std dev: 9.29 ms +- 0.19 ms


COMPARISON:

### telco ###
Mean +- std dev: 9.17 ms +- 0.32 ms -> 9.29 ms +- 0.19 ms: 1.01x slower
Not significant
msg310815 - (view) Author: Elvis Pranskevichus (Elvis.Pranskevichus) * (Python triager) Date: 2018-01-26 22:40
Likewise, on the same builds, running _decimal/tests/bench.py does not show a significant difference: https://gist.github.com/elprans/fb31510ee28a3aa091aee3f42fe65e00
msg310817 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2018-01-26 22:52
Apologies accepted. I did not imply that -- I was simply stating that Yury
needed your help reproducing your result so he could do something about it.
It seems you two are taking this offline so I trust that there will be no
more barbs.
msg310820 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2018-01-26 23:11
Since the root of the discussion is a performance regression, let me take a look since I also care of not regressing in term of performance. We (CPython core developers, as as team) spent a lot of time on optimizing CPython to make benchmarks like telco faster at each release. The good news is that Python 3.7 *is* faster than Python 3.6 on telco. If I recall correctly, it's not because of recent optimizations in the decimal module, but more general changes like CALL_METHOD optimization!

Python master vs 3.6 (normalized on 3.6):

https://speed.python.org/comparison/?exe=12%2BL%2Bmaster%2C12%2BL%2B3.6&ben=670&env=1%2C2&hor=false&bas=12%2BL%2B3.6&chart=normal+bars

Graph of telco performance on master since April 2014 to January 2017:
https://speed.python.org/timeline/#/?exe=12&ben=telco&env=1&revs=50&equid=off&quarts=on&extr=on

20.2 ms => 14.1 ms, well done!

If you are curious of reasons why Python became faster, see my documentation:
http://pyperformance.readthedocs.io/cpython_results_2017.html

Or even my talk at Pycon 2017:
https://www.youtube.com/watch?v=d65dCD3VH9Q&t=957s

Sorry, I moved off topic. Let's move back to this measuring the performance of this issue...

--

I rewrote  xwith.py using my perf module to use CPU pinning (on my isolated CPUs), automatic calibration of the number of loops, ignore the first "warmup" value, spawn 20 processes, compute the average and standard deviation, etc. => see attached xwidth2.py

Results on my laptop with 2 physical cores isolated for best benchmark stability (*):

vstinner@apu$ ./python -m perf compare_to master.json pr5278.json 
Mean +- std dev: [master] 1.86 us +- 0.03 us -> [pr5278] 2.27 us +- 0.04 us: 1.22x slower (+22%)

Note: master is the commit 29a7df78277447cf6b898dfa0b1b42f8da7abc0c and I rebased PR 5278 on top on this commit.

(*) http://perf.readthedocs.io/en/latest/run_benchmark.html#how-to-get-reproductible-benchmark-results

This is obvious the *worst* case: a *micro* benchmark using local contexts and modifying this local context. In this case, I understand that this microbenchmark basically measures the overhead of contextvars on modying a context.

The question here is if the bottleneck of applications using decimal is the code modifying the context or the code computing numbers (a+b, a*b, a/b, etc.).

Except for a few small projects, I rarely use decimal, so I'm unable to judge that.

But just to add my 2 cents, I never used "with localcontext()", I don't see the point of this tool in my short applications. I prefer to modify directly the current context (getcontext()), and only modify this context *once*, at startup. For example, set the rounding mode and set the precision, and that's all.

--

The Python benchmark suite does have a benchmark dedicated to the decimal module:
http://pyperformance.readthedocs.io/benchmarks.html#telco

I ran this benchmark on PR 5278:

vstinner@apu$ ./python -m perf compare_to telco_master.json telco_pr5278.json 
Benchmark hidden because not significant (1): telco

... not significant. Honestly, I'm not surprised at all:

* telco benchmark doesn't modify the context in the hot code, only *outside* the benchmark
* telco likely spends most of its runtime in computing numbers (sum += x; d = d.quantize(...), etc.) and converting Decimal to string. I don't know the decimal module, but I guess that it requires to *read* the current context. But getting the context is likely efficient and not significant compared to the cost of other operations.

FYI timings can be seen in verbose mode:

vstinner@apu$ ./python -m perf compare_to telco_master.json telco_pr5278.json -v
Mean +- std dev: [telco_master] 10.7 ms +- 0.4 ms -> [telco_pr5278] 10.7 ms +- 0.4 ms: 1.00x faster (-0%)
Not significant!
msg310821 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2018-01-26 23:16
> Likewise, on the same builds, running _decimal/tests/bench.py does not show a significant difference: https://gist.github.com/elprans/fb31510ee28a3aa091aee3f42fe65e00

Note: it may be interesting to rewrite this benchmark my perf module to be able to easily check if a benchmark result is significant.

http://perf.readthedocs.io/en/latest/cli.html#perf-compare-to

"perf determines whether two samples differ significantly using a Student’s two-sample, two-tailed t-test with alpha equals to 0.95."

=> https://en.wikipedia.org/wiki/Student's_t-test


Usually, I consider that between 5% slower and 5% faster is not significant. But it depends how the benchmark was run, it depends on the type of benchmark, etc. Here I don't know bench.py so I cannot judge.

For example, for an optimization, I'm more interested by an optimization making a benchmark 10% faster ;-)
msg310864 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2018-01-27 15:09
On Fri, Jan 26, 2018 at 11:11:00PM +0000, STINNER Victor wrote:
> vstinner@apu$ ./python -m perf compare_to master.json pr5278.json 
> Mean +- std dev: [master] 1.86 us +- 0.03 us -> [pr5278] 2.27 us +- 0.04 us: 1.22x slower (+22%)
> 
> Note: master is the commit 29a7df78277447cf6b898dfa0b1b42f8da7abc0c and I rebased PR 5278 on top on this commit.

Thank you and Elvis for running the benchmarks. Yes, the exact version does seem
important -- I have been getting some differences based on the checkout.

> This is obvious the *worst* case: a *micro* benchmark using local contexts and modifying this local context. In this case, I understand that this microbenchmark basically measures the overhead of contextvars on modying a context.
> 
> The question here is if the bottleneck of applications using decimal is the code modifying the context or the code computing numbers (a+b, a*b, a/b, etc.).

Yes, that's the big question. In the generator discussions people were advised
to use "with" whenever possible, so I assume short blocks *will* be used.

I would use the context functions, which would not require PEP-567 at all.
This means that I'm somewhat okay with excessive with-statements being a
bit slower.

> vstinner@apu$ ./python -m perf compare_to telco_master.json telco_pr5278.json -v
> Mean +- std dev: [telco_master] 10.7 ms +- 0.4 ms -> [telco_pr5278] 10.7 ms +- 0.4 ms: 1.00x faster (-0%)
> Not significant!

Okay. In my above reference to telco, I ran the "telco.py full" command
from http://www.bytereef.org/mpdecimal/quickstart.html#telco-benchmark .

The numbers I posted weren't cooked, but I have a hard time reproducing
them myself now consistently with the latest revisions, so let's declare
telco.py and bench.py a tie.

This means that I no longer have any objections, so Yury, please go ahead
and merge the PR!

Stefan Krah
msg310875 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-27 18:46
Thank you, Stefan.  I've updated the PR with an asyncio+decimal test and run tests in refleak mode to make sure there's no regression there.

If during the beta/rc period we see that contextvars isn't stable enough or something I'll revert this change before 3.7.0 myself, so that decimal users will not be disturbed.

I'll merge the PR once the CI is green.

> Yes, that's the big question. In the generator discussions people were advised to use "with" whenever possible, so I assume short blocks *will* be used.

Yes, I used decimal examples all the time to showcase how context is supposed to work with generators.  Most of those examples were specifically constructed to illustrate some point, but I don't think that real-world code uses a 'with localcontext()' statement in every function.

Unfortunately there's no way (at least known to me) to make 'ContextVar.set()' faster than it is now.  I use HAMT which guarantees that all set operations will have O(log n) performance; the other known approach is to use copy-on-write (as in .NET), but that has an O(n) ContextVar.set() performance.  So I guess a slightly slower 'with localcontext()' is the price to pay to make decimal easier to use for async/await code.
msg310876 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-01-27 18:46
New changeset f13f12d8daa587b5fcc66fe3ed1090a5dadab289 by Yury Selivanov in branch 'master':
bpo-32630: Use contextvars in decimal (GH-5278)
https://github.com/python/cpython/commit/f13f12d8daa587b5fcc66fe3ed1090a5dadab289
msg363091 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2020-03-01 20:18
FYI - this appears to have caused a regression - https://bugs.python.org/issue39776
History
Date User Action Args
2022-04-11 14:58:56adminsetgithub: 76811
2020-03-01 20:18:29gregory.p.smithsetnosy: + gregory.p.smith
messages: + msg363091
2018-01-27 18:47:18yselivanovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-01-27 18:46:48yselivanovsetmessages: + msg310876
2018-01-27 18:46:03yselivanovsetmessages: + msg310875
2018-01-27 15:09:06skrahsetmessages: + msg310864
2018-01-26 23:16:30vstinnersetmessages: + msg310821
2018-01-26 23:11:00vstinnersetfiles: + xwith2.py
nosy: + vstinner, - Elvis.Pranskevichus
messages: + msg310820
2018-01-26 22:52:30gvanrossumsetmessages: + msg310817
2018-01-26 22:40:55Elvis.Pranskevichussetmessages: + msg310815
2018-01-26 22:24:08Elvis.Pranskevichussetnosy: + Elvis.Pranskevichus
messages: + msg310811
2018-01-26 22:13:17skrahsetmessages: + msg310809
2018-01-26 21:52:30skrahsetmessages: + msg310806
2018-01-26 21:45:19gvanrossumsetmessages: + msg310805
2018-01-26 21:37:35yselivanovsetmessages: + msg310803
2018-01-26 21:30:55skrahsetmessages: + msg310800
2018-01-26 21:27:21gvanrossumsetmessages: + msg310799
2018-01-26 21:21:40skrahsetmessages: + msg310796
2018-01-26 21:17:54gvanrossumsetmessages: + msg310795
2018-01-26 21:12:40skrahsetmessages: + msg310794
2018-01-26 21:06:38yselivanovsetmessages: + msg310791
2018-01-26 20:36:19skrahsetfiles: + xwith.py

messages: + msg310790
2018-01-26 06:23:22gvanrossumsetmessages: + msg310738
2018-01-25 23:05:36vstinnersetnosy: - vstinner
2018-01-25 23:03:39yselivanovsetmessages: + msg310716
2018-01-25 22:53:23skrahsetmessages: + msg310715
2018-01-25 22:48:04yselivanovsetmessages: + msg310714
2018-01-25 22:44:38skrahsetpriority: release blocker -> normal
2018-01-25 22:34:05yselivanovsetpriority: normal -> release blocker
nosy: + ned.deily
2018-01-25 20:11:28mark.dickinsonsetnosy: + mark.dickinson
2018-01-25 19:20:12yselivanovsetmessages: + msg310704
2018-01-25 18:54:41yselivanovsetmessages: + msg310701
2018-01-25 18:42:57yselivanovsetmessages: + msg310700
2018-01-25 18:21:44yselivanovsetmessages: + msg310699
2018-01-25 18:14:08skrahsetmessages: + msg310698
2018-01-24 20:48:18yselivanovsetmessages: + msg310630
2018-01-23 08:25:54skrahsetassignee: skrah
messages: + msg310482
2018-01-23 06:58:37yselivanovsetkeywords: + patch
pull_requests: + pull_request5122
2018-01-23 06:56:55yselivanovcreate