jaraco / svg.charts

SVG Charting Library for Python
MIT License
29 stars 10 forks source link

Fix bug with missing points in Python 3 #13

Closed drj11 closed 8 years ago

drj11 commented 8 years ago

Creating plots in Python 3 has buggy output with missing elements (because zip and map create generators in Python3).

Here's an example that's supposed to have data points and axes:

missingpoints

I added a test, #28cbaa9; the next commit fixes it by adding a lot of list() calls.

jaraco commented 8 years ago

Looks great. I'll get a release out shortly. Thanks!