mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
- fixed docs to not demonstrate reuse of built-in function names "str" and "int", even when within a one-off script - note: did *not* change the "str" and "int" shown in Howto/Starting/Part1/Learning-Typeclasses.md file, as those are class variables (i.e., Character.str and Character.int), which does not replace the BIFs of str() and int(). Therefore, methods inside the class can still use the python BIFs. While this is possibly confusing to new python programmers, it is also not within the scope of #2549. misc edits: - add .vscode/ to gitignore
58 lines
561 B
Text
58 lines
561 B
Text
*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Packages
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
eggs
|
|
parts
|
|
var
|
|
sdist
|
|
develop-eggs
|
|
.installed.cfg
|
|
lib
|
|
lib64
|
|
__pycache__
|
|
|
|
# Other
|
|
*.swp
|
|
*.log
|
|
*.pid
|
|
*.restart
|
|
*.db3
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage reports
|
|
.coverage
|
|
.tox
|
|
nosetests.xml
|
|
|
|
# Translations
|
|
# *.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
|
|
# PyCharm config
|
|
.idea
|
|
|
|
# Windows files generated during setup
|
|
evennia.bat
|
|
twistd.bat
|
|
|
|
# never commit docs/build
|
|
docs/build
|
|
|
|
# For users of Atom
|
|
.remote-sync.json
|
|
|
|
# Visual Studio Code (VS-Code)
|
|
.vscode/
|