48645ae805994e34949f4c2cfab38c1ab27d2cd4,bokeh/io/notebook.py,,push_notebook,#Any#Any#Any#,179
 
Before Change
        return
    to_json = document.to_json()
    if handle.doc is not document:
        msg = dict(doc=to_json)
    else:
        msg = _compute_patch_between_json(handle.json, to_json)
    handle.comms.send(json.dumps(msg))
    handle.update(document, to_json)
@public((1,0,0))
After Change
        warn("Cannot find a last shown plot to update. Call output_notebook() and show(..., notebook_handle=True) before push_notebook()")
        return
    events = list(handle.doc._held_events)
    handle.doc._held_events = []
    msg = Protocol("1.0").create("PATCH-DOC", events)
    handle.comms.send(msg.header_json)
    handle.comms.send(msg.metadata_json)
    handle.comms.send(msg.content_json)
    for header, payload in msg.buffers:
        handle.comms.send(json.dumps(header))
        handle.comms.send(buffers=[payload])

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
 Project Name: bokeh/bokeh
 Commit Name: 48645ae805994e34949f4c2cfab38c1ab27d2cd4
 Time: 2017-09-18
 Author: bryanv@anaconda.com
 File Name: bokeh/io/notebook.py
 Class Name: 
 Method Name: push_notebook
 Project Name: DexterInd/GoPiGo3
 Commit Name: f8d97b8a228504adc12a2286c62f0fd7827a3a3c
 Time: 2017-07-20
 Author: robert.lucian.chiriac@gmail.com
 File Name: Projects/BasicRobotControl/runnable.py
 Class Name: 
 Method Name: Main
 Project Name: DexterInd/GoPiGo3
 Commit Name: 1fb289b0de21ec00d28046eff88d6da8f4c15319
 Time: 2017-07-21
 Author: robert.lucian.chiriac@gmail.com
 File Name: Projects/BasicRobotControl/runnable.py
 Class Name: 
 Method Name: Main