Warning

This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.

networkx.algorithms.components.biconnected_component_subgraphs

biconnected_component_subgraphs(G, copy=True)[source]

DEPRECATED: Use (G.subgraph(c) for c in biconnected_components(G))

Or (G.subgraph(c).copy() for c in biconnected_components(G))