Top "Future-proof" questions

(unicode error) 'unicodeescape' codec can't decode bytes - string with '\u'

Writing my code for Python 2.6, but with Python 3 in mind, I thought it was a good idea to put from __…

python unicode future-proof
boost::lock_guard vs boost::mutex::scoped_lock

Which is preferred boost::lock_guard or boost::mutex::scoped_lock? I'm using Boost.Thread with the hope to move …

boost c++11 future-proof
How should I write my C++ to be prepared for C++ modules?

There are already two compilers that support C++ modules: Clang: http://clang.llvm.org/docs/Modules.html MS VS 2015: http://…

c++ backwards-compatibility future-proof c++20 c++-modules
What is the purpose of subclassing the class "object" in Python?

All the Python built-ins are subclasses of object and I come across many user-defined classes which are too. Why? What …

python object deprecated future-proof new-style-class