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: Compact and ordered dict
Type: resource usage Stage: patch review
Components: Interpreter Core Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: dilettant, ethan.furman, jab, jcea, methane, python-dev, rhettinger, serhiy.storchaka, vstinner
Priority: normal Keywords: patch

Created on 2016-06-19 03:43 by methane, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
compact-dict.patch methane, 2016-06-19 03:42 review
compact-dict.patch methane, 2016-06-19 06:41 Use SIZEOF_VOID_P review
compact-dict.patch methane, 2016-06-19 07:51 review
compact-dict.patch methane, 2016-06-19 13:55 Use Py_LOCAL_INLINE review
compact-dict.patch methane, 2016-06-20 05:14 empty keys and values arn't special enough to break the rules review
compact-dict.patch methane, 2016-06-20 09:59 fix leak review
compact-dict.patch methane, 2016-06-22 11:38 Win32 support, fix comments and some refactoring. review
compact-dict.patch methane, 2016-06-23 16:36 more nit fix review
compact-dict.patch methane, 2016-06-26 11:24 ordered split dict, and bugfix review
compact-dict.patch methane, 2016-06-27 07:40 Add comments and tests review
compact-dict.patch methane, 2016-08-12 11:20 small fixups, thanks for Jim review
compact-dict.patch methane, 2016-08-14 23:14 Added freelist for PyDictKeys object. review
compact-dict.patch methane, 2016-08-23 07:54 Fix compile error on Windows review
compact-dict.patch methane, 2016-08-30 01:13 Add more comments and NEWS entry review
compact-dict.patch methane, 2016-08-30 13:48 Wrap lines longer than 79 characters review
compact-dict.patch methane, 2016-09-06 08:54 Update patch for current tip review
compact-dict.patch methane, 2016-09-07 02:21 Stop adding PY_INT16_T review
Messages (36)
msg268837 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-19 03:42
I've implemented compact ordered dictionary, introduced in PyPy blog [1].

To finish my work, I really need core developer's help.  Please see TODO comment
in the patch.

[1]: https://morepypy.blogspot.jp/2015/01/faster-more-memory-efficient-and-more.html

See also:
https://mail.python.org/pipermail/python-dev/2016-June/145299.html
https://github.com/methane/cpython/pull/1 (same to attached patch)
msg268842 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-06-19 05:41
> How to support sizeof(Py_ssize_t) == 4?

#if SIZEOF_VOID_P == 4

> Can I use int8_t, int16_t and int32_t

You can use PY_INT32_T for 32-bit signed integers, short for 16-bit signed integers (if SIZEOF_SHORT == 2) and signed char for 8-bit signed integers. Or introduce PY_INT16_T and PY_INT8_T similarly as it was done for PY_INT32_T.
msg268843 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-19 06:26
>> How to support sizeof(Py_ssize_t) == 4?
>#if SIZEOF_VOID_P == 4

Thanks!

>> Can I use int8_t, int16_t and int32_t
> You can use PY_INT32_T for 32-bit signed integers, short for 16-bit signed integers (if SIZEOF_SHORT == 2) and signed char for 8-bit signed integers. Or introduce PY_INT16_T and PY_INT8_T similarly as it was done for PY_INT32_T.

I found PY_INT32_T in pyport.h.  It seems only available when stdint.h is available.
What is the meaning of using PY_INT32_T instead of int32_t ?
msg268844 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-06-19 07:01
When stdint.h is not available you can define PY_INT32_T externally. E.g. CFLAGS="-DPY_INT32_T=__int32".
msg268846 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-19 07:51
Make sense! I did it.
msg269004 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-21 15:38
As I posted to python-dev ML, this compact ordered dict doesn't keep insertion order
for key-shared dict.

>>> class A:
...   ...
...
>>> a = A()
>>> b = A()
>>> a.a = 1
>>> a.b = 2
>>> b.b = 3
>>> b.a = 4
>>> a.__dict__.items()
dict_items([('a', 1), ('b', 2)])
>>> b.__dict__.items()
dict_items([('a', 4), ('b', 3)])
msg269011 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2016-06-21 17:04
> I found PY_INT32_T in pyport.h.  It seems only available when stdint.h is available.

That doesn't sound right. It should be available always.
msg269012 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2016-06-21 17:10
> That doesn't sound right. It should be available always.

To elaborate: assuming not Windows, the configure script has two checks: if AC_CHECK_TYPE(int32_t, ...) succeeds (which should happen whenever int32_t is defined in either stdint.h or inttypes.h), it #defines HAVE_INT32_T. If AC_TYPE_INT32_T succeeds (which should happen whenever int32_t is *not* defined in either stdint.h or inttypes.h), it #defines int32_t to be a suitable type. Then the pyport check makes sure than in both circumstances, PY_INT32_T is #defined.

I don't believe there are any platforms out there that we care about for Python for which both checks fail.
msg269068 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-22 11:01
Thank you, mark.

I've added PY_INT16_T and PY_UINT16_T for windows, too.

https://github.com/methane/cpython/pull/1/commits/dfaa44c051b2dbf580701729944cd0fda00cb541
https://github.com/methane/cpython/pull/1/commits/af80dc27dd381af9d211792963a23c5cecfa7009

I'll post next patchset soon.
msg269072 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-22 12:32
FYI, bench result of USABLE_FRACTION(n) = (n/2):

Report on Linux ip-10-0-1-249 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-1 (2016-03-06) x86_64
Total CPU cores: 2
+--------------+---------+------------+--------------+------------------------+
| Benchmark    | default | usable n/2 | Change       | Significance           |
+==============+=========+============+==============+========================+
| 2to3         | 5.18    | 5.17       | 1.00x faster | Not significant        |
+--------------+---------+------------+--------------+------------------------+
| chameleon_v2 | 4.03    | 3.87       | 1.04x faster | Significant (t=61.85)  |
+--------------+---------+------------+--------------+------------------------+
| django_v3    | 0.4     | 0.39       | 1.01x faster | Not significant        |
+--------------+---------+------------+--------------+------------------------+
| fastpickle   | 0.33    | 0.33       | 1.00x slower | Not significant        |
+--------------+---------+------------+--------------+------------------------+
| fastunpickle | 0.41    | 0.42       | 1.04x slower | Significant (t=-56.83) |
+--------------+---------+------------+--------------+------------------------+
| json_dump_v2 | 1.93    | 1.94       | 1.01x slower | Not significant        |
+--------------+---------+------------+--------------+------------------------+
| json_load    | 0.33    | 0.33       | 1.01x faster | Not significant        |
+--------------+---------+------------+--------------+------------------------+
| nbody        | 0.19    | 0.19       | 1.00x slower | Not significant        |
+--------------+---------+------------+--------------+------------------------+
| regex_v8     | 0.04    | 0.04       | 1.00x faster | Not significant        |
+--------------+---------+------------+--------------+------------------------+
| tornado_http | 0.19    | 0.2        | 1.01x slower | Not significant        |
+--------------+---------+------------+--------------+------------------------+


I've changed recommended usable fraction from 5/8~2/3 to 1/2~2/3.
msg269367 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-27 10:17
Last patch I've posted implements "strict ordering rule" on key sharing dict.

* Insertion order should be strictly equal to order in shared key.
  If insertion position is not equal to ma_used, convert it to combined
  form.

* Deleting from split table is prohibited.  Convert the table to combined form.  (to keep ma_used == next insertion position rule).


I ran sphinx-build on this patch and master branch.
("intern" in the result is incomplete implementation of my new idea.
 Please ignore it in this issue.)

https://gist.github.com/methane/df89221222cc2474af1fe61a960e100d

Summary
-------------
Speed:  No regression from master branch.
Memory usage:  Reduced from 172452k to 160876k
msg269369 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-27 11:05
And Python benchmark result is here.
https://gist.github.com/methane/e7a2ae389ca13905508905f5fa4ad46c

pickup
-------

### call_method_slots ###
Min: 0.282221 -> 0.266215: 1.06x faster
Avg: 0.282379 -> 0.266448: 1.06x faster
Significant (t=780.35)
Stddev: 0.00015 -> 0.00032: 2.0993x larger

### call_method_unknown ###
Min: 0.280347 -> 0.273366: 1.03x faster
Avg: 0.280579 -> 0.273538: 1.03x faster
Significant (t=800.73)
Stddev: 0.00011 -> 0.00011: 1.0061x smaller

### call_simple ###
Min: 0.202884 -> 0.208746: 1.03x slower
Avg: 0.203037 -> 0.208866: 1.03x slower
Significant (t=-642.05)
Stddev: 0.00013 -> 0.00009: 1.3236x smaller

### chameleon_v2 ###
Min: 3.715995 -> 3.819750: 1.03x slower
Avg: 3.738736 -> 3.851562: 1.03x slower
Significant (t=-62.21)
Stddev: 0.00851 -> 0.01602: 1.8817x larger

### chaos ###
Min: 0.195156 -> 0.203020: 1.04x slower
Avg: 0.195803 -> 0.203704: 1.04x slower
Significant (t=-179.73)
Stddev: 0.00026 -> 0.00035: 1.3371x larger

### django_v3 ###
Min: 0.369087 -> 0.386535: 1.05x slower
Avg: 0.370569 -> 0.388277: 1.05x slower
Significant (t=-184.30)
Stddev: 0.00064 -> 0.00072: 1.1206x larger

### formatted_logging ###                                                                                                                                                                                                          [97/1823]
Min: 0.226584 -> 0.233564: 1.03x slower
Avg: 0.229062 -> 0.235876: 1.03x slower
Significant (t=-35.32)
Stddev: 0.00133 -> 0.00140: 1.0505x larger

### normal_startup ###
Min: 0.277946 -> 0.269843: 1.03x faster
Avg: 0.279173 -> 0.271878: 1.03x faster
Significant (t=17.65)
Stddev: 0.00175 -> 0.00374: 2.1348x larger

### raytrace ###
Min: 0.961784 -> 0.991375: 1.03x slower
Avg: 0.963318 -> 0.994727: 1.03x slower
Significant (t=-159.11)
Stddev: 0.00073 -> 0.00183: 2.5204x larger

### regex_compile ###
Min: 0.256675 -> 0.267169: 1.04x slower
Avg: 0.257559 -> 0.268213: 1.04x slower
Significant (t=-136.14)
Stddev: 0.00050 -> 0.00060: 1.1996x larger

### richards ###
Min: 0.129063 -> 0.134478: 1.04x slower
Avg: 0.130158 -> 0.135382: 1.04x slower
Significant (t=-18.28)
Stddev: 0.00284 -> 0.00036: 7.8299x smaller

### startup_nosite ###
Min: 0.165788 -> 0.159139: 1.04x faster
Avg: 0.166089 -> 0.159848: 1.04x faster
Significant (t=219.05)
Stddev: 0.00021 -> 0.00035: 1.6594x larger
msg269429 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-06-28 11:01
Anyone can review this by Python 3.6a3 ?
msg272098 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-08-06 14:12
ping
msg272135 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2016-08-07 22:32
You make need to ask for review help on python-dev.  Patches this big take a lot of time and energy to review.  Making pings into the blind doesn't help much (most of the patch reviewers are highly time constrained).
msg272144 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-08-08 05:22
I see, and I'm sorry about that.
msg274703 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-09-07 02:21
Update the patch to use standard int types instead of adding PY_INT16_T
ref: https://bugs.python.org/issue17884
msg275065 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-08 16:44
New changeset 0bd618fe0639 by Victor Stinner in branch 'default':
Implement compact dict
https://hg.python.org/cpython/rev/0bd618fe0639

New changeset 66a539984c9c by Victor Stinner in branch 'default':
Add Py_MEMBER_SIZE macro
https://hg.python.org/cpython/rev/66a539984c9c
msg275067 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-08 17:02
Hi INADA Naoki, we discuss a lot about your compact dict change at the current Python core dev sprint. We *all* want your change in Python 3.6!

I looked at the code and I found some minor issues, but sadly I'm very busy right now with soooo many other topics. I proposed to just push your change *right now* (before Python 3.6 feature freeze, scheduled for this week-end with the first beta) but "polish" the code later. I made a tiny change to not hardcode PyDictKeysObject.dk_indices size (8).

I plan to write more documentations about the implementation and add some assertions, because right now it's quite hard to see the overall picture and understand details. I already started to write some doc locally.

I discussed with Eric Snow about the PEP 468 (preserve keyword ordering). He asked me the remove the sentence from the change, because he is going to rephrase his PEP to replace "OrderedDict" with "ordered mapping" (don't be specific on the type). But technically it's true that compact dict preserves the keyword order, so implement the PEP :-)

I pushed the latest patch using intXX_t types.

I made another change: I skipped test_gdb which failed because python-gdb.py wasn't updated for the new dict: I opened the issue #28023 to try to not forget to do it. I already worked on this file, so I can try to update the gdb plugin.

I also added "_PyDict_Dummy() function has been removed." to the commit message ;-)

Congrats Naoki and thanks!

--

TODO: The compact dict is not documented in What's New in Python 3.6. It would be nice to run some benchmarks and compare the memory usage to give some exciting numbers.
msg275071 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-09-08 17:23
Did you test the patch with your superstable benchmarking tools Victor?
msg275090 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-08 18:03
New changeset 36545fa93d2b by Victor Stinner in branch 'default':
Add assertions to dk_set_index()
https://hg.python.org/cpython/rev/36545fa93d2b
msg275092 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-08 18:05
Serhiy Storchaka added the comment:
> Did you test the patch with your superstable benchmarking tools Victor?

Not yet, as I wrote, we should benchmark the code (CPU and memory) to
document the code:

See my long comment for more details ;-)
msg275099 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-08 18:17
New changeset 19902d840448 by Victor Stinner in branch 'default':
Split lookdict_unicode_nodummy() assertion to debug
https://hg.python.org/cpython/rev/19902d840448
msg275112 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-08 18:56
New changeset 9434f511937d by Raymond Hettinger in branch 'default':
Issue #27350: Add credits
https://hg.python.org/cpython/rev/9434f511937d
msg275116 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-08 19:03
New changeset 48a1f97d03b4 by Victor Stinner in branch 'default':
dk_get_index/dk_set_index uses a type indices variable
https://hg.python.org/cpython/rev/48a1f97d03b4

New changeset fc8aaa073eb4 by Victor Stinner in branch 'default':
Reindeint DK_xxx macros
https://hg.python.org/cpython/rev/fc8aaa073eb4

New changeset 378e000a6878 by Victor Stinner in branch 'default':
Add documentation to the dict implementation
https://hg.python.org/cpython/rev/378e000a6878
msg275118 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-09-08 19:04
Isn't this premature to commit changes to critical part of Python core without having reliable benchmark results?
msg275120 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-08 19:17
For an unknown reason, the code fails on a few buildbots, but not all of them.

* PPC64 Fedora 3.x: GNU/Linux ppc64 POWER7 Fedora 20 GCC Compile Farm host gcc110.fsffrance.org
* PPC64LE Fedora 3.x: GNU/Linux ppc64le POWER8 Fedora 21 GCC Compile Farm host gcc112.fsffrance.org
* s390x Debian 3.x: GNU/Linux s390x System Z Debian Jessie
* s390x RHEL 3.x: GNU/Linux s390x System Z RHEL 7.1
* s390x SLES 3.x: GNU/Linux s390x System Z SLES 12

These buildbot slaves use non-Intel CPU: POWER7, POWER8, s390x System Z (I don't know this platform at all!).

gcc -pthread   -o Programs/_freeze_importlib Programs/_freeze_importlib.o (...) -lpthread -ldl  -lutil   -lm  
./Programs/_freeze_importlib \
    ./Lib/importlib/_bootstrap.py Python/importlib.h
_freeze_importlib: Objects/dictobject.c:805: lookdict_unicode_nodummy: Assertion `ep->me_key != ((void *)0)' failed.
msg275357 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-09 17:35
> benjamin.peterson	set	status: open -> closed

Please keep it open for the remaining issue:

"TODO: The compact dict is not documented in What's New in Python 3.6. It would be nice to run some benchmarks and compare the memory usage to give some exciting numbers."
msg275378 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2016-09-09 18:40
What affect will this have with hash randomization?
msg275382 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-09 18:46
> What affect will this have with hash randomization?

Hash randomization is still used and useful to avoid the hash DoS.
msg275581 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-10 06:48
It seems like the memory usage is between 20% and 25% smaller. Great job!

Memory usage, Python 3.5 => Python 3.6 on Linux x86_64:

./python -c 'import sys; print(sys.getsizeof({str(i):i for i in range(10)}))'

* 10 items: 480 B => 384 B (-20%)
* 100 items: 6240 B => 4720 B (-24%)
* 1000 items: 49248 B => 36984 B (-25%)

Note: the size is the the size of the container itself, not of keys nor values.
msg275587 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-10 07:05
As I expected, a dictionary lookup is a _little bit_ slower (3%) between Python 3.5 and Python 3.6:

$ ./python -m perf timeit -s 'd={str(i):i for i in range(100)}' 'd["10"]; d["20"]; d["30"]; d["40"]; d["50"]; d["10"]; d["20"]; d["30"]; d["40"]; d["50"]' --rigorous

Median +- std dev: [lookup35] 309 ns +- 10 ns -> [lookup36] 320 ns +- 8 ns: 1.03x slower
msg275589 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-09-10 07:21
There are a lot of other changes in interpreter core between 3.5 and 3.5 (such as new bytecode and optimized function calls). Could you compare the performance between the version just before adding new dict implementation and the version just after this?
msg275626 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-09-10 11:26
3% slowdown in microbench is not surprising.
Compact dict introduces one additional indirection.

Instead, I've added freelist for most compact PyDictKeys.
So I think overall performance is almost same to before compact dict.
msg276030 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-12 12:47
New changeset 0773e5cb8608 by Victor Stinner in branch 'default':
Issue #27350: Document compact dict memory usage
https://hg.python.org/cpython/rev/0773e5cb8608
msg276031 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-09-12 12:49
Serhiy: "Could you compare the performance between the version just before adding new dict implementation and the version just after this?"

I'm running benchmarks, I will keep you in touch :-)

Since the main issue (implement compact dict) is solved, I close the issue. Please open new specific issue if you want to enhance the implementation, fix bugs, etc.
History
Date User Action Args
2022-04-11 14:58:32adminsetgithub: 71537
2017-05-17 17:24:07jceasetnosy: + jcea
2016-09-12 12:49:21vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg276031
2016-09-12 12:47:34python-devsetmessages: + msg276030
2016-09-10 21:19:26jabsetnosy: + jab
2016-09-10 11:26:57methanesetmessages: + msg275626
2016-09-10 07:21:00serhiy.storchakasetmessages: + msg275589
2016-09-10 07:05:47vstinnersetmessages: + msg275587
2016-09-10 06:48:15vstinnersetmessages: + msg275581
2016-09-09 18:46:53vstinnersetmessages: + msg275382
2016-09-09 18:40:36ethan.furmansetnosy: + ethan.furman
messages: + msg275378
2016-09-09 17:35:29vstinnersetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg275357
2016-09-09 17:32:40benjamin.petersonsetstatus: open -> closed
resolution: fixed
2016-09-09 05:12:16dilettantsetnosy: + dilettant
2016-09-08 19:17:52vstinnersetmessages: + msg275120
2016-09-08 19:04:59serhiy.storchakasetmessages: + msg275118
2016-09-08 19:03:13python-devsetmessages: + msg275116
2016-09-08 18:56:08python-devsetmessages: + msg275112
2016-09-08 18:17:02python-devsetmessages: + msg275099
2016-09-08 18:05:15vstinnersetmessages: + msg275092
2016-09-08 18:03:36python-devsetmessages: + msg275090
2016-09-08 17:23:07serhiy.storchakasetmessages: + msg275071
2016-09-08 17:02:03vstinnersetnosy: + vstinner
messages: + msg275067
2016-09-08 16:44:48python-devsetnosy: + python-dev
messages: + msg275065
2016-09-07 02:21:38methanesetfiles: + compact-dict.patch

messages: + msg274703
2016-09-06 08:54:52methanesetfiles: + compact-dict.patch
2016-08-30 13:48:09methanesetfiles: + compact-dict.patch
2016-08-30 01:13:52methanesetfiles: + compact-dict.patch
2016-08-23 12:38:06mark.dickinsonsetnosy: - mark.dickinson
2016-08-23 07:55:11methanesetfiles: + compact-dict.patch
2016-08-14 23:14:17methanesetfiles: + compact-dict.patch
2016-08-12 11:21:08methanesetfiles: + compact-dict.patch
2016-08-08 05:22:43methanesetmessages: + msg272144
2016-08-07 22:32:26rhettingersetmessages: + msg272135
2016-08-06 14:12:33methanesetmessages: + msg272098
2016-06-28 11:01:19methanesetmessages: + msg269429
2016-06-27 11:05:54methanesetmessages: + msg269369
2016-06-27 10:17:12methanesetmessages: + msg269367
2016-06-27 07:40:11methanesetfiles: + compact-dict.patch
2016-06-26 11:24:11methanesetfiles: + compact-dict.patch
2016-06-23 16:36:34methanesetfiles: + compact-dict.patch
2016-06-22 12:32:49methanesetmessages: + msg269072
2016-06-22 11:38:16methanesetfiles: + compact-dict.patch
2016-06-22 11:01:05methanesetmessages: + msg269068
2016-06-21 17:10:47mark.dickinsonsetmessages: + msg269012
2016-06-21 17:04:53mark.dickinsonsetnosy: + mark.dickinson
messages: + msg269011
2016-06-21 15:38:46methanesetmessages: + msg269004
2016-06-20 09:59:04methanesetfiles: + compact-dict.patch
2016-06-20 05:14:40methanesetfiles: + compact-dict.patch
2016-06-19 13:55:11methanesetfiles: + compact-dict.patch
2016-06-19 07:51:36methanesetfiles: + compact-dict.patch

messages: + msg268846
2016-06-19 07:01:12serhiy.storchakasetmessages: + msg268844
2016-06-19 06:41:13methanesetfiles: + compact-dict.patch
2016-06-19 06:26:07methanesetmessages: + msg268843
2016-06-19 05:41:04serhiy.storchakasetnosy: + rhettinger, serhiy.storchaka

messages: + msg268842
stage: patch review
2016-06-19 03:43:45methanesettype: resource usage
2016-06-19 03:43:16methanecreate