#----------------------------------------------------------------------------- # Copyright (c) 2012 - 2020, Anaconda, Inc., and Bokeh Contributors. # All rights reserved. # # The full license is in the file LICENSE.txt, distributed with this software. #----------------------------------------------------------------------------- ''' ''' #----------------------------------------------------------------------------- # Boilerplate #----------------------------------------------------------------------------- import logging # isort:skip log = logging.getLogger(__name__) #----------------------------------------------------------------------------- # Imports #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- # Globals and constants #----------------------------------------------------------------------------- __all__ = ( 'curdoc', 'set_curdoc', ) #----------------------------------------------------------------------------- # General API #----------------------------------------------------------------------------- [docs]def curdoc(): ''' Return the document for the current default state. Returns: Document : the current default document object. ''' from .state import curstate return curstate().document #----------------------------------------------------------------------------- # Dev API #----------------------------------------------------------------------------- [docs]def set_curdoc(doc): '''Configure the current document (returned by curdoc()). Args: doc (Document) : Document we will output. Returns: None .. warning:: Calling this function will replace any existing document. ''' from .state import curstate curstate().document = doc #----------------------------------------------------------------------------- # Private API #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- # Code #-----------------------------------------------------------------------------