compliant with Python 2.7
This commit is contained in:
parent
b7320a6b58
commit
eda7527550
2 changed files with 4 additions and 2 deletions
|
|
@ -128,7 +128,7 @@ ctx.dump('merged_drill.txt')
|
|||
```
|
||||
|
||||
## Panelizing Example
|
||||
This example board image is generated by following scripts
|
||||
This example board image is generated by following scripts from [these source data](examples).
|
||||
|
||||
- [panelizing script](examples/panelize.py)
|
||||
- [imaging script](examples/genimage.py)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
# Copyright 2019 Hiroshi Murayama <opiopan@gmail.com>
|
||||
|
||||
import io
|
||||
import io, sys
|
||||
from math import pi, cos, sin, tan, atan, atan2, acos, asin, sqrt
|
||||
import dxfgrabber
|
||||
from gerber.cam import CamFile, FileSettings
|
||||
|
|
@ -561,6 +561,8 @@ class DxfFile(CamFile):
|
|||
raise Exception('Not supported')
|
||||
|
||||
def loads(data, filename=None):
|
||||
if sys.version_info.major == 2:
|
||||
data = unicode(data)
|
||||
stream = io.StringIO(data)
|
||||
dxf = dxfgrabber.read(stream)
|
||||
return DxfFile(dxf)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue