/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimTracker/TrackerMaterialAnalysis/test/tools/python25.py
24 строки
608 B
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
# define some functions missing in python 2.4 if not 'any' in dir(__builtins__): def any(iterable): """ Return True if any element of the iterable is true. New in version 2.5. """ for element in iterable: if element: return True return False if not 'all' in dir(__builtins__): def all(iterable): """ Return True if all elements of the iterable are true. New in version 2.5. """ for element in iterable: if not element: return False return True