├── .gitignore ├── NotesFromPythonIdeas.txt ├── README.rst ├── check_delta.py ├── is_close.py ├── is_close_module.c ├── isclose.py ├── iteration_example.py ├── old_code └── is_close.py ├── pep-0485.txt ├── setup.py ├── simple_test.py ├── test_is_close.py ├── test_isclose.py └── test_isclose_c.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/ 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /NotesFromPythonIdeas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/NotesFromPythonIdeas.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/README.rst -------------------------------------------------------------------------------- /check_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/check_delta.py -------------------------------------------------------------------------------- /is_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/is_close.py -------------------------------------------------------------------------------- /is_close_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/is_close_module.c -------------------------------------------------------------------------------- /isclose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/isclose.py -------------------------------------------------------------------------------- /iteration_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/iteration_example.py -------------------------------------------------------------------------------- /old_code/is_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/old_code/is_close.py -------------------------------------------------------------------------------- /pep-0485.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/pep-0485.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/setup.py -------------------------------------------------------------------------------- /simple_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/simple_test.py -------------------------------------------------------------------------------- /test_is_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/test_is_close.py -------------------------------------------------------------------------------- /test_isclose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/test_isclose.py -------------------------------------------------------------------------------- /test_isclose_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PythonCHB/close_pep/HEAD/test_isclose_c.py --------------------------------------------------------------------------------