Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
bokeh / sphinxext / __init__.py
Size: Mime:
# -----------------------------------------------------------------------------
# Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors.
# All rights reserved.
#
# The full license is in the file LICENSE.txt, distributed with this software.
# -----------------------------------------------------------------------------

# -----------------------------------------------------------------------------
# Imports
# -----------------------------------------------------------------------------

# External imports
from typing_extensions import TypedDict

# -----------------------------------------------------------------------------
# Globals and constants
# ----------------------------------------------------------------------------

class SphinxParallelSpec(TypedDict):
    parallel_read_safe: bool
    parallel_write_safe: bool

PARALLEL_SAFE = SphinxParallelSpec(parallel_read_safe=True, parallel_write_safe=True)