Skip to content
Snippets Groups Projects
Select Git revision
  • 1428c245837a00e35b88d06004585e743257debf
  • master default
2 results

components.py

Blame
  • Forked from finesse / pykat
    Source project has a limited visibility.
    utils.py 222 B
    # -*- coding: utf-8 -*-
    """
    Created on Sat Feb 02 12:17:50 2013
    
    @author: Daniel
    """
    from pykat.components import *
    
    def isSpace(obj):
        if obj == None:
            return False
        else:
            return isinstance(obj,space)