Skip to content

Commit 14e8902

Browse files
committed
ensure DataExchange can deal with non ascci filenames
1 parent 72b32e4 commit 14e8902

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/Extend/DataExchange.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,11 @@ def write_iges_file(a_shape, filename):
446446
read_stl_file("s_stl_precise_ascii.stl")
447447
# iges test
448448
write_iges_file(sphere_shape, "s_iges.igs")
449+
# write IGES with special character
450+
write_iges_file(sphere_shape, "sphère.igs")
451+
read_iges_file("sphère.igs")
449452
read_iges_file("s_iges.igs")
450453
read_iges_file("s_iges.igs", return_as_shapes=True)
451454
# test step with colors
452455
read_step_file_with_names_colors("s_214.stp")
456+

0 commit comments

Comments
 (0)