# HG changeset patch
# User Geoffrey Ehrman <gehrman@gmail.com>
# Date 1294873834 28800
# Node ID fe06181143673df60d29e7a97fbe3feff9915134
# Parent 380d94b0684c24e2aca13d750b8fc2707f934258
Trac #9546: fixes doctest breakage caused by a call to an out of scope floor(x) function by bringing floor into scope
diff -r 380d94b0684c -r fe0618114367 sage/graphs/generic_graph.py
a
|
b
|
|
4998 | 4998 | 4 |
4999 | 4999 | """ |
5000 | 5000 | from sage.graphs.digraph import DiGraph |
| 5001 | from sage.functions.other import floor |
5001 | 5002 | |
5002 | 5003 | # Whether we should consider the edges labeled |
5003 | 5004 | if use_edge_labels: |