Closed GoogleCodeExporter closed 9 years ago
I have tested this with pdf, svg, png, and jpg output, Python 3.3.1, and the
current ruffus master branch (35bc8851ab).
Original comment by ke...@eng.ucsd.edu
on 23 Jan 2015 at 3:53
It seems like this string encoding problem occurs in other places too. For
instance, in drmaa_wrapper.py, a tempfile is opened with mode 'w+b'. Calling
write() with a string fails. Either call .encode() on the string first, or open
the file with mode 'w' only.
Original comment by ke...@eng.ucsd.edu
on 24 Jan 2015 at 8:29
Thanks. It took me a while (not having migrated to python3 full time) to
understand what this was about but I have applied your patch to the git
repository. This will be in v. 2.7 hopefully in the next two weeks (before
Valentine's day!)
Original comment by bunbu...@gmail.com
on 30 Jan 2015 at 7:13
Original comment by bunbu...@gmail.com
on 30 Jan 2015 at 7:17
Discussion copied to https://github.com/bunbun/ruffus/issues/40
Original comment by bunbu...@gmail.com
on 30 Jan 2015 at 7:34
I didn't realize ruffus was hosted on github. Is the Google Code page
deprecated? Is that where I should open issues from now on?
Original comment by ke...@eng.ucsd.edu
on 30 Jan 2015 at 7:43
Yes please. Though for the forseeable future, I shall be check both sides.
Original comment by bunbu...@gmail.com
on 24 Feb 2015 at 7:42
Passing unit test:
test/test_pipeline_printout_graph.py
The byte_count / string division proved to be more insidious than I realised.
Original comment by bunbu...@gmail.com
on 25 Feb 2015 at 5:26
Original issue reported on code.google.com by
ke...@eng.ucsd.edu
on 23 Jan 2015 at 3:51Attachments: