General

links for 2008-05-31

freshmeat.net: Project details for Extended Python Debugger More complete than pdb.py. Supports a "restart" command, disassembly, stack traces that give better information for exec statements, and stepping over "defs". Tries to...
General

links for 2008-05-28

Welcome to OpenC++ OpenC++ is C++ frontend library (lexer+parser+DOM/MOP) and source-to-source translator. OpenC++ enables development of C++ language tools, extensions, domain specific compiler optimizations and runtime...
ProgrammingPython

Python ternary operator

Today's Python discovery: Python doesn't have the C style ?: ternary operator (e.g.: cond ? valueIfTrue : valueIfFalse). But as of Python 2.5 it has a ternary operator with its own syntax: value_when_true if condition else...