mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-03-12 04:07:01 -04:00
25 lines
515 B
Python
25 lines
515 B
Python
#! /usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# vim:fenc=utf-8
|
|
#
|
|
# Copyright © 2019 Shlomi Fish <shlomif@cpan.org>
|
|
#
|
|
# Distributed under terms of the MIT license.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
|
|
class NewStruct(object):
|
|
"""docstring for NewStruct"""
|
|
def copy(self):
|
|
ret = self.__class__()
|
|
ret.__dict__.update(self.__dict__)
|
|
return ret
|
|
|
|
def addattr(self, **kw):
|
|
for k in kw.keys():
|
|
if k in self.__dict__:
|
|
raise AttributeError(k)
|
|
self.__dict__.update(kw)
|