From 9431c353bd39a1fbb855580ee34931a07321a0f1 Mon Sep 17 00:00:00 2001 From: Vivien Maisonneuve Date: Fri, 11 Jul 2014 18:09:48 +0200 Subject: [PATCH 1/1] Remove Vector.__slots__, useless --- pypol/coordinates.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pypol/coordinates.py b/pypol/coordinates.py index a880178..d392e37 100644 --- a/pypol/coordinates.py +++ b/pypol/coordinates.py @@ -120,10 +120,6 @@ class Vector(Coordinates): This class represents displacements in space. """ - __slots__ = ( - '_coordinates', - ) - def __new__(cls, initial, terminal=None): if not isinstance(initial, Point): initial = Point(initial) -- 2.20.1