Created
January 31, 2012 13:05
-
-
Save orlp/1710393 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import inspect | |
| def merge_objects(iterable): | |
| class MergedObject: pass | |
| merged = MergedObject() | |
| for obj in iterable: | |
| merged.__dict__.update(inspect.getmembers(obj)) | |
| return merged |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment