0f86067d185a94777483391acc3e5c205204324d,lib/matplotlib/artist.py,Artist,set_label,#Artist#Any#,862

Before Change


        ACCEPTS: string or anything printable with "%s" conversion.
        
        if s is not None:
            self._label = "%s" % (s, )
        else:
            self._label = None
        self.pchanged()
        self.stale = True

After Change


                ACCEPTS: object
        
        if s is not None:
            self._label = six.text_type(s)
        else:
            self._label = None
        self.pchanged()
        self.stale = True
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: matplotlib/matplotlib
Commit Name: 0f86067d185a94777483391acc3e5c205204324d
Time: 2017-12-05
Author: jklymak@gmail.com
File Name: lib/matplotlib/artist.py
Class Name: Artist
Method Name: set_label


Project Name: bnpy/bnpy
Commit Name: 841f46941e822c0e5a4c33c074e811af5bcf534d
Time: 2017-11-02
Author: schoen.andrewj@gmail.com
File Name: bnpy/Run.py
Class Name:
Method Name: writeArgsToFile


Project Name: matplotlib/matplotlib
Commit Name: 7d73e9ca4a44d2af66cce57c9051893725c0418e
Time: 2017-11-06
Author: anntzer.lee@gmail.com
File Name: lib/matplotlib/artist.py
Class Name: Artist
Method Name: set_label