b05b8799843cfd6b24f1ffc97d6ebd52817664e1,sympy/printing/str.py,StrReprPrinter,_print_Str,#StrReprPrinter#Any#,935

Before Change



    def _print_Str(self, s):
        // Str does not to be printed same as str here
        return repr(s)


def sstrrepr(expr, **settings):
    return expr in mixed str/repr form

After Change



    def _print_Str(self, s):
        // Str does not to be printed same as str here
        return "%s(%s)" % (s.__class__.__name__, self._print(s.name))


def sstrrepr(expr, **settings):
    return expr in mixed str/repr form
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: sympy/sympy
Commit Name: b05b8799843cfd6b24f1ffc97d6ebd52817664e1
Time: 2020-07-14
Author: jeesoo9595@snu.ac.kr
File Name: sympy/printing/str.py
Class Name: StrReprPrinter
Method Name: _print_Str


Project Name: bokeh/bokeh
Commit Name: 6d451d0aa31f5cf21bf26d3c3a618ce1934b281d
Time: 2017-03-24
Author: bryanv@continuum.io
File Name: examples/howto/js_events.py
Class Name:
Method Name: display_event


Project Name: bokeh/bokeh
Commit Name: 6d451d0aa31f5cf21bf26d3c3a618ce1934b281d
Time: 2017-03-24
Author: bryanv@continuum.io
File Name: examples/howto/events_app.py
Class Name:
Method Name: display_event