python-telegram-bot/.gitignore

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

97 lines
1.1 KiB
Text
Raw Normal View History

2015-07-07 17:30:39 +02:00
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
2015-07-07 23:46:32 +02:00
.env
2019-08-23 16:47:00 +02:00
.pybuild
debian/tmp
debian/python3-telegram
debian/python3-telegram-doc
debian/.debhelper
2015-07-07 17:30:39 +02:00
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
.pytest_cache
2020-10-06 19:28:40 +02:00
.mypy_cache
2015-07-07 17:30:39 +02:00
nosetests.xml
coverage.xml
*,cover
2015-09-08 01:11:46 +02:00
.coveralls.yml
.testmondata
.testmondata-journal
2015-07-07 17:30:39 +02:00
# Translations
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/
2015-07-11 08:38:43 +02:00
.idea/
2015-09-09 14:12:35 +02:00
# Sublime Text 2
*.sublime*
2015-12-26 18:34:05 +01:00
# VS Code
.vscode
2015-12-26 18:34:05 +01:00
# unitests files
game.gif
2015-12-26 18:34:05 +01:00
telegram.mp3
telegram.mp4
2017-06-09 00:57:48 +02:00
telegram2.mp4
2015-12-26 18:34:05 +01:00
telegram.ogg
telegram.png
telegram.webp
telegram.jpg
# original files from merges
*.orig
Job queue time units (#452) * Adding timeunit and day support to the jobqueue * Adding tests * Changed the file permission back to 644. * Changed AssertEqual argument order to (actual, expectd). * Removed the TimeUnit enum and unit param, instead use datetime.time for interval. * Removing the TimeUnits enum and unit param in favour of optionally using a datetime.time as the interval. * Removing the TimeUnits enumeration, forgot the remove it in the last one. * Removed some old docstrings refering to the TimeUnits enum. * Removed the old TimeUnits import. * Adding some error handling for the 'days' argument (only a 'tuple' with 'Days') * Writing the error message directly in the exception. * Moving a debug statement wrongfully saying a job would be running on days it wouldn't. * Writing error messages directly in the exceptions instead of making an extra variable. * Replacing datetime.time in favour of datetime.timedelta because of the get_seconds() method. * Adding error handling for the method . * Splitting the tests up in multiple ones, no float test because I haven't found a reliable way to test it. * Excluding .exrc file. * Removing \ at EOF of ValueError. * Replacing Enums with plain new-style classes. * Using numbers.number to check for ints/floats instead of seperate int/float checks. * Fixing typo, number -> Number. * Changed lower_case Days attributes to UPPER_CASE. * Different formatting for Days class, removed the get_days function in favour of a tuple. * Removed redundant function get_days. * Edited the docstring for next_t to also take datetime.timedelta. * Removed for-loop in favour of any(). * Changed docstring for interval. * Removed debug print. * Changing some docstrings. * Changing some docstrings (again).
2016-11-08 23:39:25 +01:00
# Exclude .exrc file for Vim
.exrc
# virtual env
venv*
# environment manager:
.mise.toml