fca513a81281c48b8c7427d2aeb5e3b45cd2c5c6,bokeh/client/session.py,,pull_session,#Any#Any#Any#Any#,60

Before Change


            A new ClientSession connected to the server

    
    coords = _SessionCoordinates(dict(session_id=session_id, url=url, app_path=app_path))
    session = ClientSession(session_id=session_id, websocket_url=coords.websocket_url, io_loop=io_loop)
    session.pull()
    return session

After Change


            A new ClientSession connected to the server

    """
    if app_path is not None:
        deprecated((0, 12, 5), "app_path", "url", "Now pass entire app URLS in the url arguments, e.g. "url=http://foo.com:5010/bar/myapp"")
        url = url + app_path

    coords = _SessionCoordinates(session_id=session_id, url=url)
    session = ClientSession(session_id=session_id, websocket_url=websocket_url_for_server_url(coords.url), io_loop=io_loop)
    session.pull()
    return session
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 8

Instances


Project Name: bokeh/bokeh
Commit Name: fca513a81281c48b8c7427d2aeb5e3b45cd2c5c6
Time: 2017-03-15
Author: bryanv@continuum.io
File Name: bokeh/client/session.py
Class Name:
Method Name: pull_session


Project Name: bokeh/bokeh
Commit Name: fca513a81281c48b8c7427d2aeb5e3b45cd2c5c6
Time: 2017-03-15
Author: bryanv@continuum.io
File Name: bokeh/client/session.py
Class Name:
Method Name: pull_session


Project Name: bokeh/bokeh
Commit Name: fca513a81281c48b8c7427d2aeb5e3b45cd2c5c6
Time: 2017-03-15
Author: bryanv@continuum.io
File Name: bokeh/client/session.py
Class Name:
Method Name: show_session


Project Name: bokeh/bokeh
Commit Name: fca513a81281c48b8c7427d2aeb5e3b45cd2c5c6
Time: 2017-03-15
Author: bryanv@continuum.io
File Name: bokeh/client/session.py
Class Name:
Method Name: push_session