Skip to content
Snippets Groups Projects

Fix deepcopying on Python 3.11

Merged Michael Kuron requested to merge py311 into master
Viewing commit 07ce7ef2
Show latest version
2 files
+ 2
2
Preferences
Compare changes
Files
2
+ 1
1
@@ -341,7 +341,7 @@ def plot_2d(stencil, axes=None, figure=None, data=None, textsize='12', **kwargs)
@@ -341,7 +341,7 @@ def plot_2d(stencil, axes=None, figure=None, data=None, textsize='12', **kwargs)
for direction, annotation in zip(stencil, data):
for direction, annotation in zip(stencil, data):
assert len(direction) == 2, "Works only for 2D stencils"
assert len(direction) == 2, "Works only for 2D stencils"
direction = tuple(int(i) for i in direction)
direction = tuple(int(i) for i in direction)
if not(direction[0] == 0 and direction[1] == 0):
if not (direction[0] == 0 and direction[1] == 0):
axes.arrow(0, 0, direction[0], direction[1], head_width=0.08, head_length=head_length, color='k')
axes.arrow(0, 0, direction[0], direction[1], head_width=0.08, head_length=head_length, color='k')
if isinstance(annotation, sp.Basic):
if isinstance(annotation, sp.Basic):