Added change names to do required changes in names such that we get the chapter names beyond 10 in proper list
"""By using execfile(this_file, dict(__file__=this_file)) you willactivate this virtualenv environment.This can be used when you must use an existing Python interpreter, notthe virtualenv bin/python"""try: __file__except NameError: raise AssertionError( "You must run this like execfile('path/to/active_this.py', dict(__file__='path/to/activate_this.py'))")import sysimport osbase = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))site_packages = os.path.join(base, 'lib', 'python%s' % sys.version[:3], 'site-packages')prev_sys_path = list(sys.path)import sitesite.addsitedir(site_packages)sys.real_prefix = sys.prefixsys.prefix = base# Move the added items to the front of the path:new_sys_path = []for item in list(sys.path): if item not in prev_sys_path: new_sys_path.append(item) sys.path.remove(item)sys.path[:0] = new_sys_path