ef4c3489e675b89bea0a193347b8b848496c9551,ggplot/guides/guides.py,guides,__init__,#guides#,32

Before Change


            kwargs["color"] = kwargs.pop("colour")

        for ae in kwargs:
            if ae in aes_names:
                self[ae] = kwargs[ae]

    def __radd__(self, gg):

After Change


        if "colour" in kwargs:
            kwargs["color"] = kwargs.pop("colour")

        dict.__init__(self, ((ae, kwargs[ae]) for ae in kwargs
                             if ae in aes_names))

    def __radd__(self, gg):
        new_guides = {}
        for k in self:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: has2k1/plotnine
Commit Name: ef4c3489e675b89bea0a193347b8b848496c9551
Time: 2015-05-18
Author: has2k1@gmail.com
File Name: ggplot/guides/guides.py
Class Name: guides
Method Name: __init__


Project Name: has2k1/plotnine
Commit Name: 1352bd559814bb35fe800792cc2268c253433a4e
Time: 2016-06-30
Author: has2k1@gmail.com
File Name: ggplot/facets/facet_grid.py
Class Name: facet_grid
Method Name: __init__


Project Name: has2k1/plotnine
Commit Name: 1352bd559814bb35fe800792cc2268c253433a4e
Time: 2016-06-30
Author: has2k1@gmail.com
File Name: ggplot/facets/facet_wrap.py
Class Name: facet_wrap
Method Name: __init__