Skip to content

Commit 285b323

Browse files
committed
Merge branch 'main' into py3.14
2 parents 29cf5f5 + cd98102 commit 285b323

227 files changed

Lines changed: 1086 additions & 103 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

stdlib/ast.pyi

Lines changed: 72 additions & 102 deletions
Large diffs are not rendered by default.

stubs/networkx/networkx/algorithms/approximation/clique.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from networkx.classes.graph import Graph, _Node
22
from networkx.utils.backends import _dispatchable
33

4+
__all__ = ["clique_removal", "max_clique", "large_clique_size", "maximum_independent_set"]
5+
46
@_dispatchable
57
def maximum_independent_set(G: Graph[_Node]): ...
68
@_dispatchable

stubs/networkx/networkx/algorithms/approximation/clustering_coefficient.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ from networkx.classes.graph import Graph, _Node
22
from networkx.utils.backends import _dispatchable
33
from numpy.random import RandomState
44

5+
__all__ = ["average_clustering"]
6+
57
@_dispatchable
68
def average_clustering(G: Graph[_Node], trials: int = 1000, seed: int | RandomState | None = None): ...

stubs/networkx/networkx/algorithms/approximation/connectivity.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ from collections.abc import Iterable
44
from networkx.classes.graph import Graph, _Node
55
from networkx.utils.backends import _dispatchable
66

7+
__all__ = ["local_node_connectivity", "node_connectivity", "all_pairs_node_connectivity"]
8+
79
@_dispatchable
810
def local_node_connectivity(G: Graph[_Node], source: _Node, target: _Node, cutoff: int | None = None): ...
911
@_dispatchable

stubs/networkx/networkx/algorithms/approximation/distance_measures.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ from networkx.classes.graph import Graph, _Node
22
from networkx.utils.backends import _dispatchable
33
from numpy.random import RandomState
44

5+
__all__ = ["diameter"]
6+
57
@_dispatchable
68
def diameter(G: Graph[_Node], seed: int | RandomState | None = None): ...

stubs/networkx/networkx/algorithms/approximation/dominating_set.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from networkx.classes.graph import Graph, _Node
22
from networkx.utils.backends import _dispatchable
33

4+
__all__ = ["min_weighted_dominating_set", "min_edge_dominating_set"]
5+
46
@_dispatchable
57
def min_weighted_dominating_set(G: Graph[_Node], weight: str | None = None): ...
68
@_dispatchable
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from networkx.classes.graph import Graph, _Node
22
from networkx.utils.backends import _dispatchable
33

4+
__all__ = ["k_components"]
5+
46
@_dispatchable
57
def k_components(G: Graph[_Node], min_density: float = 0.95): ...
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from networkx.classes.graph import Graph, _Node
22
from networkx.utils.backends import _dispatchable
33

4+
__all__ = ["min_maximal_matching"]
5+
46
@_dispatchable
57
def min_maximal_matching(G: Graph[_Node]): ...

stubs/networkx/networkx/algorithms/approximation/maxcut.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ from networkx.classes.graph import Graph, _Node
44
from networkx.utils.backends import _dispatchable
55
from numpy.random import RandomState
66

7+
__all__ = ["randomized_partitioning", "one_exchange"]
8+
79
@_dispatchable
810
def randomized_partitioning(
911
G: Graph[_Node], seed: int | RandomState | None = None, p: float = 0.5, weight: str | None = None
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from networkx.classes.graph import Graph, _Node
22
from networkx.utils.backends import _dispatchable
33

4+
__all__ = ["ramsey_R2"]
5+
46
@_dispatchable
57
def ramsey_R2(G: Graph[_Node]): ...

0 commit comments

Comments
 (0)