Sebastian Kalinowski
Sebastian Kalinowski
**Reported by [email protected], 2014-06-12T04:30:48Z** ##### What steps will reproduce the problem? 1. invoke set_simplify(true) on a graph 2. invoke method to_string() 3. profit ##### What is the expected output? What...
**Reported by [email protected], 2014-03-07T11:41:54Z** ##### What steps will reproduce the problem? To see if I'm it's possible to get the dependency graph from VCL/Delphi project, I'm trying to reproduce this...
**Reported by [email protected], 2013-11-30T04:00:59Z** The following code shows that pydot can't print graph whose nodes consist of special characters. Is it a bug of pydot? ``` import pydot graph =...
**Reported by [email protected], 2013-09-20T20:02:10Z** ##### What steps will reproduce the problem? 1. add a node constructed like pydot.Node('A', shape='box', style='rounded,dotted') 2. use graph.write_raw() to emit the dot equivalent ##### What...
**Reported by [email protected], 2013-05-01T05:54:11Z** ##### What steps will reproduce the problem? 1. pydot.graph_from_dot_data("graph G { a [name=b] }") ##### 2. ##### 3. ##### What is the expected output? What do...
**Reported by [email protected], 2013-05-01T05:34:13Z** According to http://www.graphviz.org/doc/info/lang.html, an ID can be: ... 'any double-quoted string ("...") possibly containing escaped quotes (\")1;' pydot does not properly read double quoted strings with...
**Reported by [email protected], 2013-03-01T10:46:07Z** ##### What steps will reproduce the problem? 1. g = pydot.graph_from_dot_data(""" digraph G { 1 -> 2; } """) 2. g.set_node_defaults(style="filled", fillcolor="yellow") 3. g.write_png("simple.yellow.png") ##### What...
**Reported by [email protected], 2012-11-08T07:45:36Z** File "D:\Python27\lib\site-packages\pydot.py", line 2024, in create status, stderr_output) ) InvocationException: Program terminated with status: 1. stderr follows: Error: U TF8 codes > 3 bytes are not...
**Reported by [email protected], 2012-11-05T21:31:34Z** ##### What steps will reproduce the problem? 1. Use Python 3.2.3 on fedora and pydot port to Python3 2. try following code: import pydot P =...
**Reported by [email protected], 2012-05-07T15:30:05Z** ##### What steps will reproduce the problem? 1) Create a dot file with lines: ``` "testnode" testnode ``` 2) call get_nodes() ##### What is the expected...