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: Speedup method calls 1.2x
Type: performance Stage: commit review
Components: Interpreter Core Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: yselivanov Nosy List: Ryan May, abarry, alecsandru.patrascu, benjamin.peterson, brett.cannon, dino.viehland, eric.fahlgren, florin.papa, jcea, jdemeyer, josh.r, jstasiak, kj, maciej.szulik, methane, ncoghlan, python-dev, santagada, serhiy.storchaka, twouters, vstinner, yselivanov
Priority: normal Keywords: patch

Created on 2016-01-14 17:09 by yselivanov, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
call_method_1.patch yselivanov, 2016-01-14 17:09 review
call_method_2.patch methane, 2016-07-01 12:18 review
call_method_3.patch methane, 2016-07-01 12:46 review
call_method_4.patch methane, 2016-12-07 12:39 updated for Python 3.7 review
default.json.gz methane, 2016-12-07 14:37
callmethod4.json.gz methane, 2016-12-07 14:38
call_method_5.patch methane, 2016-12-13 02:41 review
default.json.gz methane, 2016-12-14 06:26
patched.json.gz methane, 2016-12-14 06:26
callmethod-doc.patch methane, 2016-12-14 06:45 review
callmethod-doc2.patch methane, 2016-12-14 09:57 review
callmethod-doc3.patch methane, 2016-12-14 11:16 review
call-method-doc4.patch methane, 2016-12-19 11:59 review
call-method-doc5.patch methane, 2017-01-16 03:03 review
Pull Requests
URL Status Linked Edit
PR 552 closed dstufft, 2017-03-31 16:36
PR 26014 merged kj, 2021-05-10 11:01
PR 26159 merged kj, 2021-05-16 09:26
Messages (31)
msg258204 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-01-14 17:09
This issue supersedes issue #6033.  I decided to open a new one, since the patch is about Python 3.6 (not 2.7) and is written from scratch.

The idea is to add new opcodes to avoid instantiation of BoundMethods.  The patch only affects method calls of Python functions with positional arguments.

I'm working on the attached patch in this repo: https://github.com/1st1/cpython/tree/call_meth2

If the patch gets accepted, I'll update it with the docs etc.


Performance Improvements
------------------------

Method calls in micro-benchmarks are 1.2x faster:

### call_method ###
Avg: 0.330371 -> 0.281452: 1.17x faster

### call_method_slots ###
Avg: 0.333489 -> 0.280612: 1.19x faster

### call_method_unknown ###
Avg: 0.304949 -> 0.251623: 1.21x faster

Improvements in mini-benchmarks, such as Richards are less impressive, I'd say it's 3-7% improvement.  The full output of benchmarks/perf.py is here: https://gist.github.com/1st1/e00f11586329f68fd490

When the full benchmarks suite is run, some of them report that they were slow.  When I ran them separately several times, they all show no real slowdowns.  It's just some of them (such as nbody) are highly unstable.

It's actually possible to improve the performance another 1-3% if we fuse __PyObject_GetMethod with ceval/LOAD_METHOD code.  I've tried this here: https://github.com/1st1/cpython/tree/call_meth4, however I don't like to have so many details of object.c into ceval.c.


Changes in the Core
-------------------

Two new opcodes are added -- LOAD_METHOD and CALL_METHOD.  Whenever compiler sees a method call "obj.method(..)" with positional arguments it compiles it as follows:

  LOAD_FAST(obj)
  LOAD_METHOD(method)
  {call arguments}
  CALL_METHOD

LOAD_METHOD implementation in ceval looks up "method" on obj's type, and checks that it wasn't overridden in obj.__dict__.  Apparently, even with the __dict__ check this is still faster then creating a BoundMethod instance etc.  

If the method is found and not overridden, LOAD_METHOD pushes the resolved method object, and 'obj'.  If the method was overridden, the resolved method object and NULL are pushed to the stack.

CALL_METHOD then looks at the two stack values after call arguments.  If the first one isn't NULL, it means that we have a method call.


Why CALL_METHOD?
----------------

It's actually possible to hack CALL_FUNCTION to support LOAD_METHOD.  I've tried this approach in https://github.com/1st1/cpython/tree/call_meth3.  It looks like that adding extra checks in CALL_FUNCTION have negative impact on many benchmarks.  It's really easier to add another opcode.


Why only pure-Python methods?
-----------------------------

LOAD_METHOD atm works only with methods defined in pure Python.  C methods, such as `list.append` are still wrapped into a descriptor, that creates a PyCFunction object on each attribute access.  I've tried to do that in https://github.com/1st1/cpython/tree/call_cmeth.  It does impact C method calls in a positive way, although my implementation is very hacky.  It still uses LOAD_METHOD and CALL_METHOD opcodes, so my idea is to consider merging this patch first, and then introduce the necessary refactoring of PyCFunction and MethodDesctiptors in a separate issue.


Why only calls with positional arguments?
-----------------------------------------

As showed in "Why CALL_METHOD?", making CALL_FUNCTION to work with LOAD_METHOD slows it down.  For keyword and var-arg calls we have three more opcodes -- CALL_FUNCTION_VAR, CALL_FUNCTION_KW, and CALL_FUNCTION_VAR_KW.  I suspect that making them work with LOAD_METHOD would slow them down too, which will probably require us to add three (!) more opcodes for LOAD_METHOD.

And these kind of calls require much more overhead anyways, I don't expect them to be as optimizable as positional arg calls.
msg258205 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-01-14 17:44
> For keyword and var-arg calls we have three more opcodes -- CALL_FUNCTION_VAR, CALL_FUNCTION_KW, and CALL_FUNCTION_VAR_KW.  I suspect that making them work with LOAD_METHOD would slow them down too, which will probably require us to add three (!) more opcodes for LOAD_METHOD.

I don't think that it's an issue to add 3 more opcodes for performance. If you prefer to limit the number of opcodes, you can pass a flag in arguments. For example, use 2 bytes for 2 arguments instead of only 1?

See also the (now old) WPython project which proposed kind of CISC instructions:
https://code.google.com/p/wpython/
msg258206 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-01-14 17:51
> If you prefer to limit the number of opcodes, you can pass a flag in arguments. For example, use 2 bytes for 2 arguments instead of only 1?

I tried two approaches:

1. Push one more leading NULL to the stack in LOAD_METHOD (which makes it push 3 vals).  Then, in CALL_FUNCTION, detect when the callable is NULL and to the stuff that CALL_METHOD does.

2. Use a bitflag on oparg for CALL_FUNCTION and CALL_* opcodes.  This adds EXTENDED_ARG opcode overhead.

Long story short, the only option would be to add dedicated opcodes to work with LOAD_METHOD.  However, I'd prefer to first merge this patch, as it's relatively small and easy to review, and then focus on improving other things (keyword/*arg calls, C methods, etc).  This is just a first step.
msg258211 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2016-01-14 18:37
I like this idea! I like the limitations to positional-only calls. I do think that it would be nice if we could speed up C calls too -- today, s.startswith('abc') is slower than s[:3] == 'abc' precisely because of the lookup. But I'm all for doing this one step at a time, so we can be sure it is solid before taking the next step(s).
msg258220 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-01-14 21:12
> I like this idea! I like the limitations to positional-only calls. I do think that it would be nice if we could speed up C calls too -- today, s.startswith('abc') is slower than s[:3] == 'abc' precisely because of the lookup. But I'm all for doing this one step at a time, so we can be sure it is solid before taking the next step(s).

Yes, I think we can make `<built-in type>.method(..)` calls much faster with LOAD_METHOD.  Since those types lack `__dict__` and their `__class__` is read-only, we can use a far better optimized code path without extra lookups and creation of BoundMethod/PyCFunction objects.
msg258222 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-01-14 21:16
I'm happy to see people working on optimizing CPython ;-)
msg259333 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-02-01 17:09
For those interested in reviewing this patch at some point: please wait until I upload a new version.  The current patch is somewhat outdated.
msg259339 - (view) Author: Alecsandru Patrascu (alecsandru.patrascu) * Date: 2016-02-01 18:11
Yury, thank you for the heads up! Here at Intel, in the Dynamic Scripting Languages Optimization Team, we can help the community with reviewing and measuring this patch in our quiet and stable environment, the same one that we use to provide public CPython daily measurements. We will wait for your update.
msg264659 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2016-05-02 18:44
This patch doesn't apply cleanly any more. Is it easy to update?
msg269662 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-07-01 12:18
Updated, based on 102241:908b801f8a62
msg269665 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-07-01 12:46
Oops, previous patch doesn't update magic number in PC/launcher.c
Should I update it?  Or don't touch it to avoid additional conflicts?
msg282620 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-12-07 12:53
Please increase the magic number by 10. We need to reserve few numbers for the case of bytecode bug fixes in 3.6.
msg282621 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-12-07 13:50
Added comments on Rietveld. Please document new bytecodes in the dis module documentation and What's New.
msg282622 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-12-07 14:37
$ ./python-default -m perf compare_to default.json callmethod4.json -G
Slower (7):
- pickle_dict: 66.0 us +- 4.6 us -> 77.0 us +- 5.9 us: 1.17x slower
- json_loads: 63.7 us +- 0.7 us -> 68.4 us +- 1.4 us: 1.07x slower
- unpack_sequence: 120 ns +- 2 ns -> 125 ns +- 3 ns: 1.04x slower
- scimark_lu: 499 ms +- 12 ms -> 514 ms +- 24 ms: 1.03x slower
- scimark_monte_carlo: 272 ms +- 10 ms -> 278 ms +- 9 ms: 1.02x slower
- scimark_sor: 517 ms +- 9 ms -> 526 ms +- 10 ms: 1.02x slower
- regex_effbot: 5.25 ms +- 0.15 ms -> 5.27 ms +- 0.17 ms: 1.00x slower

Faster (52):
- call_method: 18.1 ms +- 0.1 ms -> 14.8 ms +- 0.1 ms: 1.22x faster
- call_method_slots: 17.9 ms +- 0.2 ms -> 14.7 ms +- 0.2 ms: 1.22x faster
- call_method_unknown: 20.0 ms +- 0.9 ms -> 16.5 ms +- 0.1 ms: 1.21x faster
- xml_etree_parse: 304 ms +- 13 ms -> 283 ms +- 6 ms: 1.07x faster
- float: 310 ms +- 4 ms -> 292 ms +- 4 ms: 1.06x faster
- call_simple: 14.2 ms +- 0.6 ms -> 13.4 ms +- 0.3 ms: 1.06x faster
- pickle_pure_python: 1.34 ms +- 0.02 ms -> 1.27 ms +- 0.02 ms: 1.05x faster
- richards: 189 ms +- 3 ms -> 180 ms +- 7 ms: 1.05x faster
- logging_silent: 793 ns +- 14 ns -> 754 ns +- 9 ns: 1.05x faster
- deltablue: 18.4 ms +- 0.2 ms -> 17.6 ms +- 0.1 ms: 1.05x faster
- go: 623 ms +- 5 ms -> 594 ms +- 5 ms: 1.05x faster
- genshi_xml: 202 ms +- 2 ms -> 193 ms +- 3 ms: 1.04x faster
- fannkuch: 1.10 sec +- 0.02 sec -> 1.05 sec +- 0.02 sec: 1.04x faster
- raytrace: 1.38 sec +- 0.02 sec -> 1.32 sec +- 0.00 sec: 1.04x faster
- django_template: 419 ms +- 5 ms -> 402 ms +- 4 ms: 1.04x faster
- hexiom: 24.2 ms +- 0.2 ms -> 23.3 ms +- 0.2 ms: 1.04x faster
- xml_etree_iterparse: 225 ms +- 4 ms -> 216 ms +- 5 ms: 1.04x faster
- spectral_norm: 282 ms +- 14 ms -> 271 ms +- 4 ms: 1.04x faster
- python_startup_no_site: 9.83 ms +- 0.02 ms -> 9.46 ms +- 0.03 ms: 1.04x faster
- python_startup: 16.4 ms +- 0.0 ms -> 15.7 ms +- 0.0 ms: 1.04x faster
- unpickle_pure_python: 918 us +- 24 us -> 884 us +- 24 us: 1.04x faster
- unpickle: 33.0 us +- 0.4 us -> 31.8 us +- 0.4 us: 1.04x faster
- dulwich_log: 158 ms +- 1 ms -> 153 ms +- 1 ms: 1.04x faster
- html5lib: 234 ms +- 6 ms -> 225 ms +- 6 ms: 1.04x faster
- scimark_fft: 735 ms +- 19 ms -> 709 ms +- 22 ms: 1.04x faster
- sqlalchemy_declarative: 325 ms +- 4 ms -> 314 ms +- 3 ms: 1.04x faster
- mako: 45.4 ms +- 0.3 ms -> 43.8 ms +- 0.7 ms: 1.04x faster
- genshi_text: 90.1 ms +- 0.9 ms -> 87.0 ms +- 0.9 ms: 1.04x faster
- tornado_http: 388 ms +- 4 ms -> 375 ms +- 4 ms: 1.03x faster
- 2to3: 758 ms +- 4 ms -> 734 ms +- 4 ms: 1.03x faster
- scimark_sparse_mat_mult: 8.75 ms +- 0.25 ms -> 8.48 ms +- 0.39 ms: 1.03x faster
- json_dumps: 29.9 ms +- 0.4 ms -> 29.0 ms +- 0.3 ms: 1.03x faster
- sqlite_synth: 10.1 us +- 0.2 us -> 9.80 us +- 0.19 us: 1.03x faster
- regex_dna: 286 ms +- 6 ms -> 278 ms +- 4 ms: 1.03x faster
- crypto_pyaes: 235 ms +- 2 ms -> 228 ms +- 2 ms: 1.03x faster
- pidigits: 320 ms +- 0 ms -> 311 ms +- 1 ms: 1.03x faster
- logging_format: 38.1 us +- 0.5 us -> 37.1 us +- 0.4 us: 1.03x faster
- meteor_contest: 206 ms +- 3 ms -> 201 ms +- 1 ms: 1.03x faster
- xml_etree_process: 248 ms +- 4 ms -> 241 ms +- 4 ms: 1.03x faster
- chameleon: 30.9 ms +- 0.4 ms -> 30.1 ms +- 0.4 ms: 1.03x faster
- logging_simple: 32.8 us +- 0.4 us -> 32.0 us +- 0.3 us: 1.03x faster
- sqlalchemy_imperative: 61.3 ms +- 1.6 ms -> 59.9 ms +- 1.6 ms: 1.02x faster
- chaos: 308 ms +- 2 ms -> 301 ms +- 2 ms: 1.02x faster
- unpickle_list: 7.90 us +- 0.04 us -> 7.73 us +- 0.10 us: 1.02x faster
- sympy_integrate: 47.9 ms +- 0.3 ms -> 46.9 ms +- 0.4 ms: 1.02x faster
- sympy_sum: 216 ms +- 6 ms -> 212 ms +- 6 ms: 1.02x faster
- sympy_str: 481 ms +- 5 ms -> 473 ms +- 2 ms: 1.02x faster
- sympy_expand: 1.08 sec +- 0.01 sec -> 1.06 sec +- 0.01 sec: 1.02x faster
- regex_compile: 449 ms +- 3 ms -> 442 ms +- 5 ms: 1.02x faster
- nqueens: 275 ms +- 3 ms -> 271 ms +- 3 ms: 1.02x faster
- pathlib: 51.6 ms +- 0.6 ms -> 50.9 ms +- 0.7 ms: 1.01x faster
- pickle_list: 8.85 us +- 0.09 us -> 8.79 us +- 0.11 us: 1.01x faster

Benchmark hidden because not significant (5): nbody, pickle, regex_v8, telco, xml_etree_generate
msg282627 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-12-07 15:16
Please don't merge this without my review.
msg283075 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-12-13 06:09
Technically the patch LGTM. But we should find the cause of the regression in some benchmarks.

And would be nice to extend the optimization to C functions.

In any case this optimization is worth mentioning in What's New.
msg283077 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-12-13 06:36
> Technically the patch LGTM. But we should find the cause of the regression in some benchmarks.

The benchmark is on Sandy Bridge (Core i5 2400) and I didn't use PGO build.
perf_event reported branch-miss rate increase at cpickle's save function.

I'll rerun benchmark with PGO build. I hope PGO is friendly with CPU branch
prediction, like L1/L2 cache.

Anyway, recent amd64 CPUs have more large branch history.

> And would be nice to extend the optimization to C functions.
> In any case this optimization is worth mentioning in What's New.

I'll do them.
msg283093 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-12-13 10:41
> And would be nice to extend the optimization to C functions.

I tried it but skipping creating PyCFunction seems impossible for now.

My current idea is adding new `tp_fastcall` slot which has same signature
to _PyFunction_FastCallDict or _PyCFunction_FastCallDict.

If MethodDescrObject implement it, we can skip temporary PyCFunction object and
argument tuple.

But I think it should be separated issue. Patch is large enough already.
msg283094 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-12-13 11:08
> But I think it should be separated issue.

Agreed if that so hard.
msg283147 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-12-13 23:40
Inada-san, when I tested the patch last time, I think there was a regression somewhere, related to the descriptor protocol.  Have you fixed that one?
msg283148 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-12-14 00:04
New changeset 64afd5cab40a by Yury Selivanov in branch 'default':
Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.
https://hg.python.org/cpython/rev/64afd5cab40a
msg283149 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2016-12-14 00:07
> Inada-san, when I tested the patch last time, I think there was a regression somewhere, related to the descriptor protocol.  Have you fixed that one?

Seems to be either fixed, or maybe those bugs were related to my opcode cache patch.  Anyways, I decided to commit the patch to 3.7, otherwise it might miss the commit window as it did for 3.6.  Let's fix any regressions right in the repo now.

> My current idea is adding new `tp_fastcall` slot which has same signature
to _PyFunction_FastCallDict or _PyCFunction_FastCallDict.

I like this idea!

Thanks Inada-san for pushing this patch through, and thanks to Serhiy for reviewing it.
msg283160 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-12-14 03:50
I'm working on changing stack layout slightly

current patch: callable | NULL | arg1 | ...argN
next patch will: NULL | callable | arg1 | ...argN

After benchmark with PGO build, I'll post it.
msg283161 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-12-14 04:02
I haven't noticed the patch is committed already.

Changing stack layout slightly is for easy to document, not for performance.
Please don't close this issue until adding document in Doc/library/dis.rst
msg283166 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-12-14 06:26
PGO benchmark result
https://gist.github.com/methane/64ab60c38324423ef27af70cc6db1dfd
msg283168 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2016-12-14 06:45
This patch modify stack layout slightly and adds document in Doc/library/dis.rst
msg283177 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-12-14 09:11
INADA Naoki: "My current idea is adding new `tp_fastcall` slot which has same signature to _PyFunction_FastCallDict or _PyCFunction_FastCallDict."

FYI I'm working on a solution to avoid tuple and dict to pass parameters to tp_new, tp_init and tp_call. I have PoC implementations (yeah, more than one). Please come to me directly if you are interested, this issue is not the right place to discuss.
msg285415 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-01-13 16:10
I just created the issue #29263: "Implement LOAD_METHOD/CALL_METHOD for C functions".
msg285511 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2017-01-15 15:36
Yury, could you review this?
msg285544 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2017-01-16 08:23
New changeset a6241b2073c6 by INADA Naoki in branch 'default':
Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode.
https://hg.python.org/cpython/rev/a6241b2073c6
msg345335 - (view) Author: Jeroen Demeyer (jdemeyer) * (Python triager) Date: 2019-06-12 12:49
Note that this idea has been generalized by PEP 590: any type can support this optimization by setting the Py_TPFLAGS_METHOD_DESCRIPTOR flag.
History
Date User Action Args
2022-04-11 14:58:26adminsetgithub: 70298
2021-05-16 09:26:18kjsetpull_requests: + pull_request24793
2021-05-10 11:01:28kjsetnosy: + kj

pull_requests: + pull_request24665
2019-06-12 12:49:12jdemeyersetnosy: + jdemeyer
messages: + msg345335
2017-08-10 01:46:50jceasetnosy: + jcea
2017-03-31 16:36:33dstufftsetpull_requests: + pull_request1065
2017-01-16 08:23:59methanesetstatus: open -> closed
2017-01-16 08:23:41python-devsetmessages: + msg285544
2017-01-16 03:03:55methanesetfiles: + call-method-doc5.patch
2017-01-15 15:36:46methanesetmessages: + msg285511
2017-01-13 16:10:34vstinnersetmessages: + msg285415
2016-12-19 11:59:15methanesetfiles: + call-method-doc4.patch
2016-12-14 11:16:07methanesetfiles: + callmethod-doc3.patch
2016-12-14 09:57:24methanesetfiles: + callmethod-doc2.patch
2016-12-14 09:48:06methanesetfiles: - callmethod-doc2.patch
2016-12-14 09:47:19methanesetfiles: + callmethod-doc2.patch
2016-12-14 09:11:25vstinnersetmessages: + msg283177
2016-12-14 06:45:40methanesetfiles: + callmethod-doc.patch

messages: + msg283168
2016-12-14 06:26:55methanesetfiles: + patched.json.gz
2016-12-14 06:26:46methanesetfiles: + default.json.gz

messages: + msg283166
2016-12-14 04:02:31methanesetmessages: + msg283161
2016-12-14 03:50:49methanesetmessages: + msg283160
2016-12-14 00:07:43yselivanovsetresolution: fixed
messages: + msg283149
stage: patch review -> commit review
2016-12-14 00:04:22python-devsetnosy: + python-dev
messages: + msg283148
2016-12-13 23:40:53yselivanovsetmessages: + msg283147
2016-12-13 15:40:14gvanrossumsetnosy: - gvanrossum
2016-12-13 11:08:58serhiy.storchakasetmessages: + msg283094
2016-12-13 10:41:51methanesetmessages: + msg283093
2016-12-13 06:36:04methanesetmessages: + msg283077
2016-12-13 06:09:21serhiy.storchakasetmessages: + msg283075
2016-12-13 02:41:55methanesetfiles: + call_method_5.patch
2016-12-07 15:16:46yselivanovsetmessages: + msg282627
2016-12-07 14:38:10methanesetfiles: + callmethod4.json.gz
2016-12-07 14:37:59methanesetfiles: + default.json.gz

messages: + msg282622
2016-12-07 13:50:48serhiy.storchakasetmessages: + msg282621
2016-12-07 12:53:17serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg282620
2016-12-07 12:39:06methanesetfiles: + call_method_4.patch
versions: + Python 3.7, - Python 3.6
2016-09-13 22:57:13Ryan Maysetnosy: + Ryan May
2016-07-01 12:46:57methanesetfiles: + call_method_3.patch

messages: + msg269665
2016-07-01 12:18:40methanesetfiles: + call_method_2.patch
nosy: + methane
messages: + msg269662

2016-05-15 10:30:06jstasiaksetnosy: + jstasiak
2016-05-03 20:40:54josh.rsetnosy: + josh.r
2016-05-02 18:44:45gvanrossumsetmessages: + msg264659
2016-02-08 22:01:09santagadasetnosy: + santagada
2016-02-04 11:35:26maciej.szuliksetnosy: + maciej.szulik
2016-02-02 13:20:34abarrysetnosy: + abarry
2016-02-02 08:25:10florin.papasetnosy: + florin.papa
2016-02-02 02:11:47eric.fahlgrensetnosy: + eric.fahlgren
2016-02-01 18:11:32alecsandru.patrascusetmessages: + msg259339
2016-02-01 17:09:21yselivanovsetmessages: + msg259333
2016-02-01 09:39:09alecsandru.patrascusetnosy: + alecsandru.patrascu
2016-01-27 18:34:14yselivanovlinkissue26219 dependencies
2016-01-14 21:16:21vstinnersetmessages: + msg258222
2016-01-14 21:12:39yselivanovsetmessages: + msg258220
2016-01-14 18:45:17brett.cannonsetnosy: + dino.viehland
2016-01-14 18:43:07brett.cannonsetnosy: + twouters
2016-01-14 18:37:54gvanrossumsetmessages: + msg258211
2016-01-14 17:55:24yselivanovlinkissue6033 superseder
2016-01-14 17:51:33yselivanovsetmessages: + msg258206
2016-01-14 17:44:01vstinnersetmessages: + msg258205
2016-01-14 17:09:07yselivanovcreate