cudadog / pydot

Automatically exported from code.google.com/p/pydot
MIT License
0 stars 0 forks source link

Compass points not allowed but dot binary works #75

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Why not to allow  node names with compass points? I've tested it with 'dot' 
binary (version 2.26.3) and it works. Compass points are useful when generating 
network charts.

------ dotfile.dot ------
digraph G {
"00:14";
"Node B";
"00:14" -> "Node B";
"Node B" -> "00:14";
}
------ dotfile.dot ------

$ dot -o output.png dotfile.dot -Tpng
$ dot -V
dot - graphviz version 2.26.3 (20100126.1600)

Thank you for this project.
Greetings

Original issue reported on code.google.com by ch...@safetybits.net on 4 Jul 2012 at 1:58

GoogleCodeExporter commented 9 years ago
Your example does not include any compass point, only ports. I'm not sure I 
understand the problem tho. If this were still and issue please reopen it.

Original comment by ero.carr...@gmail.com on 16 Mar 2014 at 8:34