#!/usr/bin/python # -*- coding: utf-8 -*- # # ================= FILE HEADER ======================================== # # myplotlib v0.0.0, # # @file myFig4Test.py # @author Yori 'AGy' Fournier # @licence CC-BY-SA # # MyFig4Test class is a copy of MyFig, and is used for testing # to verify that when the myTools.screen function is called # with the same figure number but a different class name the # figure is indeed destroyed and recreated. (see Test-5) # # @section History # # v 0.0.0 - MyFig4Test class for the myplotlib module. # # ====================================================================== # # # IMPORT --------------------------------------------------------------- from . import MyFig # Class MyFig4Test class MyFig4Test(MyFig): pass