-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Roadmap
Alon Zakai edited this page Jun 17, 2013
·
15 revisions
The following are the main planned milestones for Emscripten in 2013:
- Dynamic linking
- Better libc support
- Improve compiler speed
- Improve generated code speed
- IDE integration (Visual Studio, etc.)
- autoconf modules
class MyGroup(ExceptionGroup): def derive(self, excs): return MyGroup(self.message, excs)
e = MyGroup("eg", [ValueError(1), TypeError(2)]) e.add_note("a note") e.context = Exception("context") e.cause = Exception("cause") try: raise e except Exception as e: exc = e
match, rest = exc.split(ValueError) exc, exc.context, exc.cause, exc.notes
match, match.context, match.cause, match.notes
rest, rest.context, rest.cause, rest.notes
exc.traceback is match.traceback is rest.traceback