diff --git a/addons/source-python/docs/source-python/source/general/installation.rst b/addons/source-python/docs/source-python/source/general/installation.rst
index 117128f75..877831613 100644
--- a/addons/source-python/docs/source-python/source/general/installation.rst
+++ b/addons/source-python/docs/source-python/source/general/installation.rst
@@ -27,7 +27,7 @@ There are no special requirements.
Installation steps
------------------
-1. Download the latest Source.Python version from our `download page `_.
+1. Download the latest Source.Python version from our `download page `_.
2. Extract the archive in your server's game folder. E.g. ``../my_servers/css/cstrike/``
3. Start/restart your server and validate the installation by typing ``sp info`` into the server console (use ``rcon`` if you are not working directly on your server). It should print something like this:
@@ -49,4 +49,4 @@ Installation steps
4. If you validated the installation, you successfully installed Source.Python!
5. You can now edit your server's ``../cfg/source-python/core_settings.ini`` file to your liking.
-If you are having problems installing Source.Python (e. g. ``Unknown command "sp"``), please let us know on our `forums `_!
+If you are having problems installing Source.Python (e. g. ``Unknown command "sp"``), please let us know on `GitHub `_!
diff --git a/addons/source-python/docs/source-python/source/index.rst b/addons/source-python/docs/source-python/source/index.rst
index 690e5dee9..c57bb2422 100644
--- a/addons/source-python/docs/source-python/source/index.rst
+++ b/addons/source-python/docs/source-python/source/index.rst
@@ -5,11 +5,7 @@ Welcome to the Source.Python documentation!
Source.Python is an open-source project that uses Boost.Python to allow
scripters to interact with Valve's Source-engine. In this wiki, you will find
-documentation on how to install, update, and use Source.Python. If you have
-any questions, please search for an answer on our
-`forums `_. If you cannot find the
-answer to your question, please post a question of your own in the appropriate
-forum.
+documentation on how to install, update, and use Source.Python.
Source.Python is currently embedding Python 3.13 and will be upgraded from
time to time.
@@ -67,7 +63,8 @@ Other helpful links
-------------------
* Source.Python
- * `Source.Python forums `_
+ * `Source.Python discussions `_
+ * `Source.Python forums (old) `_
* `Source.Python repository `_
* `Source.Python issue list `_
diff --git a/addons/source-python/packages/source-python/__init__.py b/addons/source-python/packages/source-python/__init__.py
index f8bda41e2..36d90c88f 100644
--- a/addons/source-python/packages/source-python/__init__.py
+++ b/addons/source-python/packages/source-python/__init__.py
@@ -82,7 +82,7 @@ def load():
setup_core_settings()
setup_logging()
setup_exception_hooks()
- setup_data_update()
+ #setup_data_update()
setup_translations()
setup_data()
setup_global_pointers()
diff --git a/addons/source-python/packages/source-python/core/command/__init__.py b/addons/source-python/packages/source-python/core/command/__init__.py
index d11aa9c76..3967efaeb 100755
--- a/addons/source-python/packages/source-python/core/command/__init__.py
+++ b/addons/source-python/packages/source-python/core/command/__init__.py
@@ -168,6 +168,7 @@ def update_sp(info):
"""Update Source.Python to the latest version. A restart of the server is
required.
"""
+
if not is_unversioned() and VERSION >= get_last_successful_build_number():
core_command_logger.log_message('No new version available.')
return
diff --git a/addons/source-python/packages/source-python/core/update.py b/addons/source-python/packages/source-python/core/update.py
index e9ad61061..bbdcf1605 100755
--- a/addons/source-python/packages/source-python/core/update.py
+++ b/addons/source-python/packages/source-python/core/update.py
@@ -71,7 +71,8 @@
DATA_URL = f'{BASE_DATA_URL}/source-python-data.zip'
BASE_DOWNLOAD_URL = 'http://downloads.sourcepython.com'
-ARTIFACTS_URL = f'{BASE_DOWNLOAD_URL}/artifacts.txt'
+
+LATEST_RELEASE_URL = "https://api.github.com/repos/Source-Python-Dev-Team/Source.Python/releases/latest"
DEFAULT_TIMEOUT = 3
@@ -144,8 +145,10 @@ def get_build_artifacts(timeout=DEFAULT_TIMEOUT):
Number of seconds that need to pass until a timeout occurs.
"""
update_logger.log_debug('Getting artifacts...')
- with urlopen(ARTIFACTS_URL, timeout=timeout) as url:
- return url.read().decode('utf-8').split('\n')
+ with urlopen(LATEST_RELEASE_URL, timeout=timeout) as url:
+ data = json.load(url)
+
+ return [asset['browser_download_url'] for asset in data.get('assets', [])]
def get_download_url(game=SOURCE_ENGINE_BRANCH, timeout=DEFAULT_TIMEOUT):
"""Get the latest Source.Python download URL for a specific game.
@@ -158,9 +161,9 @@ def get_download_url(game=SOURCE_ENGINE_BRANCH, timeout=DEFAULT_TIMEOUT):
:raise ValueError:
Raised if the game wasn't found.
"""
- for relative_path in get_build_artifacts(timeout):
- if f'-{game}-' in relative_path:
- return f'{BASE_DOWNLOAD_URL}/{relative_path}'
+ for download_url in get_build_artifacts(timeout):
+ if f'-{game}-' in download_url:
+ return download_url
raise ValueError(f'Unable to find a download URL for game "{game}".')
diff --git a/addons/source-python/packages/source-python/core/version.py b/addons/source-python/packages/source-python/core/version.py
index a2ff96b09..12c378280 100644
--- a/addons/source-python/packages/source-python/core/version.py
+++ b/addons/source-python/packages/source-python/core/version.py
@@ -6,6 +6,7 @@
# >> IMPORTS
# =============================================================================
# Python Imports
+import json
from urllib.request import urlopen
# Source.Python Imports
# Cvars
@@ -32,8 +33,7 @@
GIT_COMMIT = None
LAST_SUCCESSFUL_BUILD_NUMBER_URL = (
- 'http://downloads.sourcepython.com/version.txt')
-
+ 'https://api.github.com/repos/Source-Python-Dev-Team/Source.Python/releases/latest')
# =============================================================================
# >> GLOBAL VARIABLES
@@ -52,7 +52,9 @@ def get_last_successful_build_number(timeout=3):
:rtype: int
"""
with urlopen(LAST_SUCCESSFUL_BUILD_NUMBER_URL, timeout=timeout) as url:
- return int(url.read().decode('utf-8'))
+ data = json.load(url)
+ tag_name = data['tag_name']
+ return int(tag_name[1:])
def is_unversioned():
"""Return ``True`` if this Source.Python installation has no version.
diff --git a/docs/.buildinfo b/docs/.buildinfo
index 8a84de936..9a40443a3 100644
--- a/docs/.buildinfo
+++ b/docs/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: e55aec0a10fd8b0a26d91f4bdc22cb74
+config: c12cc937d2b151a0de5b87a41c15cb46
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/docs/.doctrees/developing/modules/core.version.doctree b/docs/.doctrees/developing/modules/core.version.doctree
index 93881b1d9..8de086b66 100644
Binary files a/docs/.doctrees/developing/modules/core.version.doctree and b/docs/.doctrees/developing/modules/core.version.doctree differ
diff --git a/docs/.doctrees/environment.pickle b/docs/.doctrees/environment.pickle
index 42e122dbd..626012861 100644
Binary files a/docs/.doctrees/environment.pickle and b/docs/.doctrees/environment.pickle differ
diff --git a/docs/.doctrees/general/installation.doctree b/docs/.doctrees/general/installation.doctree
index 548ef4625..b4c36339e 100644
Binary files a/docs/.doctrees/general/installation.doctree and b/docs/.doctrees/general/installation.doctree differ
diff --git a/docs/.doctrees/index.doctree b/docs/.doctrees/index.doctree
index f7e5cb254..53e21820e 100644
Binary files a/docs/.doctrees/index.doctree and b/docs/.doctrees/index.doctree differ
diff --git a/docs/_modules/__init__.html b/docs/_modules/__init__.html
index 2b7145462..9a3234986 100644
--- a/docs/_modules/__init__.html
+++ b/docs/_modules/__init__.html
@@ -4,11 +4,11 @@
- __init__ — Source.Python v742 documentation
+ __init__ — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
__init__
@@ -123,7 +123,7 @@ Source code for __init__
setup_core_settings ()
setup_logging ()
setup_exception_hooks ()
- setup_data_update ()
+ #setup_data_update()
setup_translations ()
setup_data ()
setup_global_pointers ()
@@ -656,7 +656,7 @@ Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
__init__
diff --git a/docs/_modules/auth/base.html b/docs/_modules/auth/base.html
index f01cd8bba..49a9bca39 100644
--- a/docs/_modules/auth/base.html
+++ b/docs/_modules/auth/base.html
@@ -4,11 +4,11 @@
-
auth.base — Source.Python v742 documentation
+
auth.base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
auth.base
@@ -144,7 +144,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
auth.base
diff --git a/docs/_modules/auth/manager.html b/docs/_modules/auth/manager.html
index 44656b672..46dd18114 100644
--- a/docs/_modules/auth/manager.html
+++ b/docs/_modules/auth/manager.html
@@ -4,11 +4,11 @@
-
auth.manager — Source.Python v742 documentation
+
auth.manager — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
auth.manager
@@ -511,7 +511,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
auth.manager
diff --git a/docs/_modules/autodoc.html b/docs/_modules/autodoc.html
index 9d70a97ba..42ccefc10 100644
--- a/docs/_modules/autodoc.html
+++ b/docs/_modules/autodoc.html
@@ -4,11 +4,11 @@
-
autodoc — Source.Python v742 documentation
+
autodoc — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
autodoc
@@ -343,7 +343,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
autodoc
diff --git a/docs/_modules/commands/client.html b/docs/_modules/commands/client.html
index 082cb17a3..59bfd95db 100644
--- a/docs/_modules/commands/client.html
+++ b/docs/_modules/commands/client.html
@@ -4,11 +4,11 @@
-
commands.client — Source.Python v742 documentation
+
commands.client — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.client
@@ -138,7 +138,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.client
diff --git a/docs/_modules/commands/say.html b/docs/_modules/commands/say.html
index bc257ad06..2a08b8f2b 100644
--- a/docs/_modules/commands/say.html
+++ b/docs/_modules/commands/say.html
@@ -4,11 +4,11 @@
-
commands.say — Source.Python v742 documentation
+
commands.say — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.say
@@ -138,7 +138,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.say
diff --git a/docs/_modules/commands/server.html b/docs/_modules/commands/server.html
index f6be9010e..ae37dac1d 100644
--- a/docs/_modules/commands/server.html
+++ b/docs/_modules/commands/server.html
@@ -4,11 +4,11 @@
-
commands.server — Source.Python v742 documentation
+
commands.server — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.server
@@ -123,7 +123,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.server
diff --git a/docs/_modules/commands/typed.html b/docs/_modules/commands/typed.html
index b7c2200fd..571f2d30b 100644
--- a/docs/_modules/commands/typed.html
+++ b/docs/_modules/commands/typed.html
@@ -4,11 +4,11 @@
-
commands.typed — Source.Python v742 documentation
+
commands.typed — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.typed
@@ -908,7 +908,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
commands.typed
diff --git a/docs/_modules/config/manager.html b/docs/_modules/config/manager.html
index 7e1f66f5d..171c04d01 100644
--- a/docs/_modules/config/manager.html
+++ b/docs/_modules/config/manager.html
@@ -4,11 +4,11 @@
-
config.manager — Source.Python v742 documentation
+
config.manager — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
config.manager
@@ -700,7 +700,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
config.manager
diff --git a/docs/_modules/core.html b/docs/_modules/core.html
index 307509bd1..ead4ba053 100644
--- a/docs/_modules/core.html
+++ b/docs/_modules/core.html
@@ -4,11 +4,11 @@
-
core — Source.Python v742 documentation
+
core — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core
@@ -554,7 +554,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core
diff --git a/docs/_modules/core/cache.html b/docs/_modules/core/cache.html
index 7058749f0..b18e33ac1 100644
--- a/docs/_modules/core/cache.html
+++ b/docs/_modules/core/cache.html
@@ -4,11 +4,11 @@
-
core.cache — Source.Python v742 documentation
+
core.cache — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.cache
@@ -159,7 +159,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.cache
diff --git a/docs/_modules/core/command.html b/docs/_modules/core/command.html
index 32ab353bc..721240e59 100644
--- a/docs/_modules/core/command.html
+++ b/docs/_modules/core/command.html
@@ -4,11 +4,11 @@
-
core.command — Source.Python v742 documentation
+
core.command — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.command
@@ -214,6 +214,7 @@
Source code for core.command
"""Update Source.Python to the latest version. A restart of the server is
required.
"""
+
if not is_unversioned () and VERSION >= get_last_successful_build_number ():
core_command_logger . log_message ( 'No new version available.' )
return
@@ -260,7 +261,7 @@ Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.command
diff --git a/docs/_modules/core/command/docs.html b/docs/_modules/core/command/docs.html
index b4ba97d9f..a036cfa6a 100644
--- a/docs/_modules/core/command/docs.html
+++ b/docs/_modules/core/command/docs.html
@@ -4,11 +4,11 @@
-
core.command.docs — Source.Python v742 documentation
+
core.command.docs — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.command »
@@ -543,7 +543,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.command »
diff --git a/docs/_modules/core/dumps.html b/docs/_modules/core/dumps.html
index 14d37b28c..660be3512 100644
--- a/docs/_modules/core/dumps.html
+++ b/docs/_modules/core/dumps.html
@@ -4,11 +4,11 @@
-
core.dumps — Source.Python v742 documentation
+
core.dumps — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.dumps
@@ -509,7 +509,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.dumps
diff --git a/docs/_modules/core/table.html b/docs/_modules/core/table.html
index 9aca3e7a7..55bdb7e4d 100644
--- a/docs/_modules/core/table.html
+++ b/docs/_modules/core/table.html
@@ -4,11 +4,11 @@
-
core.table — Source.Python v742 documentation
+
core.table — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.table
@@ -273,7 +273,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.table
diff --git a/docs/_modules/core/update.html b/docs/_modules/core/update.html
index 966317155..f748e1437 100644
--- a/docs/_modules/core/update.html
+++ b/docs/_modules/core/update.html
@@ -4,11 +4,11 @@
-
core.update — Source.Python v742 documentation
+
core.update — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.update
@@ -111,7 +111,8 @@
Source code for core.update
DATA_URL = f ' { BASE_DATA_URL } /source-python-data.zip'
BASE_DOWNLOAD_URL = 'http://downloads.sourcepython.com'
-ARTIFACTS_URL = f ' { BASE_DOWNLOAD_URL } /artifacts.txt'
+
+LATEST_RELEASE_URL = "https://api.github.com/repos/Source-Python-Dev-Team/Source.Python/releases/latest"
DEFAULT_TIMEOUT = 3
@@ -189,8 +190,10 @@ Source code for core.update
Number of seconds that need to pass until a timeout occurs.
"""
update_logger . log_debug ( 'Getting artifacts...' )
- with urlopen ( ARTIFACTS_URL , timeout = timeout ) as url :
- return url . read () . decode ( 'utf-8' ) . split ( ' \n ' )
+ with urlopen ( LATEST_RELEASE_URL , timeout = timeout ) as url :
+ data = json . load ( url )
+
+ return [ asset [ 'browser_download_url' ] for asset in data . get ( 'assets' , [])]
@@ -206,9 +209,9 @@
Source code for core.update
:raise ValueError:
Raised if the game wasn't found.
"""
- for relative_path in get_build_artifacts ( timeout ):
- if f '- { game } -' in relative_path :
- return f ' { BASE_DOWNLOAD_URL } / { relative_path } '
+ for download_url in get_build_artifacts ( timeout ):
+ if f '- { game } -' in download_url :
+ return download_url
raise ValueError ( f 'Unable to find a download URL for game " { game } ".' )
@@ -409,7 +412,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.update
diff --git a/docs/_modules/core/version.html b/docs/_modules/core/version.html
index 30c891097..da388db6c 100644
--- a/docs/_modules/core/version.html
+++ b/docs/_modules/core/version.html
@@ -4,11 +4,11 @@
-
core.version — Source.Python v742 documentation
+
core.version — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.version
@@ -46,6 +46,7 @@
Source code for core.version
# >> IMPORTS
# =============================================================================
# Python Imports
+import json
from urllib.request import urlopen
# Source.Python Imports
# Cvars
@@ -66,14 +67,13 @@ Source code for core.version
# >> CONSTANTS
# =============================================================================
#: Version of the Source.Python intallation.
-VERSION = 742
+VERSION = 743
#: The Github commit this Source.Python version was built with.
-GIT_COMMIT = '3e5dd5de0323db803d0e3499a229ba2529fc463a'
+GIT_COMMIT = '4cad55d4145ff7bf24aea6df9a53a9683df81700'
LAST_SUCCESSFUL_BUILD_NUMBER_URL = (
- 'http://downloads.sourcepython.com/version.txt' )
-
+ 'https://api.github.com/repos/Source-Python-Dev-Team/Source.Python/releases/latest' )
# =============================================================================
# >> GLOBAL VARIABLES
@@ -94,7 +94,9 @@ Source code for core.version
:rtype: int
"""
with urlopen ( LAST_SUCCESSFUL_BUILD_NUMBER_URL , timeout = timeout ) as url :
- return int ( url . read () . decode ( 'utf-8' ))
+ data = json . load ( url )
+ tag_name = data [ 'tag_name' ]
+ return int ( tag_name [ 1 :])
@@ -145,7 +147,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
core »
core.version
diff --git a/docs/_modules/cvars/flags.html b/docs/_modules/cvars/flags.html
index b971f8eb8..9f88b5848 100644
--- a/docs/_modules/cvars/flags.html
+++ b/docs/_modules/cvars/flags.html
@@ -4,11 +4,11 @@
-
cvars.flags — Source.Python v742 documentation
+
cvars.flags — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
cvars.flags
@@ -152,7 +152,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
cvars.flags
diff --git a/docs/_modules/cvars/public.html b/docs/_modules/cvars/public.html
index 3afe8e5f4..511aa3273 100644
--- a/docs/_modules/cvars/public.html
+++ b/docs/_modules/cvars/public.html
@@ -4,11 +4,11 @@
-
cvars.public — Source.Python v742 documentation
+
cvars.public — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
cvars.public
@@ -131,7 +131,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
cvars.public
diff --git a/docs/_modules/effects.html b/docs/_modules/effects.html
index 6797f6e79..e43dccc3d 100644
--- a/docs/_modules/effects.html
+++ b/docs/_modules/effects.html
@@ -4,11 +4,11 @@
-
effects — Source.Python v742 documentation
+
effects — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects
@@ -367,7 +367,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects
diff --git a/docs/_modules/effects/base.html b/docs/_modules/effects/base.html
index 991cc2c79..f1e2e8e4a 100644
--- a/docs/_modules/effects/base.html
+++ b/docs/_modules/effects/base.html
@@ -4,11 +4,11 @@
-
effects.base — Source.Python v742 documentation
+
effects.base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects »
effects.base
@@ -727,7 +727,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects »
effects.base
diff --git a/docs/_modules/effects/hooks.html b/docs/_modules/effects/hooks.html
index b147f07f3..3f167b14f 100644
--- a/docs/_modules/effects/hooks.html
+++ b/docs/_modules/effects/hooks.html
@@ -4,11 +4,11 @@
-
effects.hooks — Source.Python v742 documentation
+
effects.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects »
effects.hooks
@@ -181,7 +181,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects »
effects.hooks
diff --git a/docs/_modules/effects/templates.html b/docs/_modules/effects/templates.html
index a589580ee..759719533 100644
--- a/docs/_modules/effects/templates.html
+++ b/docs/_modules/effects/templates.html
@@ -4,11 +4,11 @@
-
effects.templates — Source.Python v742 documentation
+
effects.templates — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects »
effects.templates
@@ -395,7 +395,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
effects »
effects.templates
diff --git a/docs/_modules/engines/precache.html b/docs/_modules/engines/precache.html
index 7d947da21..8ca8b03da 100644
--- a/docs/_modules/engines/precache.html
+++ b/docs/_modules/engines/precache.html
@@ -4,11 +4,11 @@
-
engines.precache — Source.Python v742 documentation
+
engines.precache — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
engines.precache
@@ -236,7 +236,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
engines.precache
diff --git a/docs/_modules/engines/sound.html b/docs/_modules/engines/sound.html
index b1f5154d4..233c201e1 100644
--- a/docs/_modules/engines/sound.html
+++ b/docs/_modules/engines/sound.html
@@ -4,11 +4,11 @@
-
engines.sound — Source.Python v742 documentation
+
engines.sound — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
engines.sound
@@ -454,7 +454,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
engines.sound
diff --git a/docs/_modules/engines/trace.html b/docs/_modules/engines/trace.html
index 009a96ecb..0dd8eada7 100644
--- a/docs/_modules/engines/trace.html
+++ b/docs/_modules/engines/trace.html
@@ -4,11 +4,11 @@
-
engines.trace — Source.Python v742 documentation
+
engines.trace — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
engines.trace
@@ -314,7 +314,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
engines.trace
diff --git a/docs/_modules/entities/_base.html b/docs/_modules/entities/_base.html
index 6bae85732..7dfaba7f7 100644
--- a/docs/_modules/entities/_base.html
+++ b/docs/_modules/entities/_base.html
@@ -4,11 +4,11 @@
-
entities._base — Source.Python v742 documentation
+
entities._base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities._base
@@ -988,7 +988,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities._base
diff --git a/docs/_modules/entities/collisions.html b/docs/_modules/entities/collisions.html
index 7fd0067b0..1a0f11370 100644
--- a/docs/_modules/entities/collisions.html
+++ b/docs/_modules/entities/collisions.html
@@ -4,11 +4,11 @@
-
entities.collisions — Source.Python v742 documentation
+
entities.collisions — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.collisions
@@ -164,7 +164,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.collisions
diff --git a/docs/_modules/entities/constants.html b/docs/_modules/entities/constants.html
index 818df8a19..71d4e3871 100644
--- a/docs/_modules/entities/constants.html
+++ b/docs/_modules/entities/constants.html
@@ -4,11 +4,11 @@
-
entities.constants — Source.Python v742 documentation
+
entities.constants — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.constants
@@ -388,7 +388,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.constants
diff --git a/docs/_modules/entities/datamaps.html b/docs/_modules/entities/datamaps.html
index 58847bc1e..ac151c036 100644
--- a/docs/_modules/entities/datamaps.html
+++ b/docs/_modules/entities/datamaps.html
@@ -4,11 +4,11 @@
-
entities.datamaps — Source.Python v742 documentation
+
entities.datamaps — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.datamaps
@@ -212,7 +212,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.datamaps
diff --git a/docs/_modules/entities/dictionary.html b/docs/_modules/entities/dictionary.html
index 3fcc5ab79..2e8376390 100644
--- a/docs/_modules/entities/dictionary.html
+++ b/docs/_modules/entities/dictionary.html
@@ -4,11 +4,11 @@
-
entities.dictionary — Source.Python v742 documentation
+
entities.dictionary — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.dictionary
@@ -327,7 +327,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.dictionary
diff --git a/docs/_modules/entities/engines/csgo.html b/docs/_modules/entities/engines/csgo.html
index 31468bb83..45b8cc844 100644
--- a/docs/_modules/entities/engines/csgo.html
+++ b/docs/_modules/entities/engines/csgo.html
@@ -4,11 +4,11 @@
-
entities.engines.csgo — Source.Python v742 documentation
+
entities.engines.csgo — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.engines.csgo
@@ -90,7 +90,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.engines.csgo
diff --git a/docs/_modules/entities/engines/csgo/csgo.html b/docs/_modules/entities/engines/csgo/csgo.html
index fb68866c9..06ba1f297 100644
--- a/docs/_modules/entities/engines/csgo/csgo.html
+++ b/docs/_modules/entities/engines/csgo/csgo.html
@@ -4,11 +4,11 @@
-
entities.engines.csgo.csgo — Source.Python v742 documentation
+
entities.engines.csgo.csgo — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.engines.csgo »
entities.engines.csgo.csgo
@@ -170,7 +170,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.engines.csgo »
entities.engines.csgo.csgo
diff --git a/docs/_modules/entities/helpers.html b/docs/_modules/entities/helpers.html
index 9d05f416b..4da9c52fa 100644
--- a/docs/_modules/entities/helpers.html
+++ b/docs/_modules/entities/helpers.html
@@ -4,11 +4,11 @@
-
entities.helpers — Source.Python v742 documentation
+
entities.helpers — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.helpers
@@ -210,7 +210,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.helpers
diff --git a/docs/_modules/entities/hooks.html b/docs/_modules/entities/hooks.html
index f4d08bd94..589db3150 100644
--- a/docs/_modules/entities/hooks.html
+++ b/docs/_modules/entities/hooks.html
@@ -4,11 +4,11 @@
-
entities.hooks — Source.Python v742 documentation
+
entities.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.hooks
@@ -323,7 +323,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.hooks
diff --git a/docs/_modules/entities/props.html b/docs/_modules/entities/props.html
index ba516cab0..ce4208ee4 100644
--- a/docs/_modules/entities/props.html
+++ b/docs/_modules/entities/props.html
@@ -4,11 +4,11 @@
-
entities.props — Source.Python v742 documentation
+
entities.props — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.props
@@ -150,7 +150,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.props
diff --git a/docs/_modules/entities/transmit.html b/docs/_modules/entities/transmit.html
index 787241e1a..ba63b0541 100644
--- a/docs/_modules/entities/transmit.html
+++ b/docs/_modules/entities/transmit.html
@@ -4,11 +4,11 @@
-
entities.transmit — Source.Python v742 documentation
+
entities.transmit — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.transmit
@@ -167,7 +167,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
entities.transmit
diff --git a/docs/_modules/events.html b/docs/_modules/events.html
index 0209a620d..aa2524e39 100644
--- a/docs/_modules/events.html
+++ b/docs/_modules/events.html
@@ -4,11 +4,11 @@
-
events — Source.Python v742 documentation
+
events — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events
@@ -163,7 +163,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events
diff --git a/docs/_modules/events/custom.html b/docs/_modules/events/custom.html
index 748e0a73d..162215ea9 100644
--- a/docs/_modules/events/custom.html
+++ b/docs/_modules/events/custom.html
@@ -4,11 +4,11 @@
-
events.custom — Source.Python v742 documentation
+
events.custom — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.custom
@@ -254,7 +254,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.custom
diff --git a/docs/_modules/events/hooks.html b/docs/_modules/events/hooks.html
index 5750068ad..62951d8c5 100644
--- a/docs/_modules/events/hooks.html
+++ b/docs/_modules/events/hooks.html
@@ -4,11 +4,11 @@
-
events.hooks — Source.Python v742 documentation
+
events.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.hooks
@@ -339,7 +339,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.hooks
diff --git a/docs/_modules/events/resource.html b/docs/_modules/events/resource.html
index eeb3fdd21..29955625a 100644
--- a/docs/_modules/events/resource.html
+++ b/docs/_modules/events/resource.html
@@ -4,11 +4,11 @@
-
events.resource — Source.Python v742 documentation
+
events.resource — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.resource
@@ -213,7 +213,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.resource
diff --git a/docs/_modules/events/variable.html b/docs/_modules/events/variable.html
index 9f7aa4ead..1caaeec6a 100644
--- a/docs/_modules/events/variable.html
+++ b/docs/_modules/events/variable.html
@@ -4,11 +4,11 @@
-
events.variable — Source.Python v742 documentation
+
events.variable — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.variable
@@ -193,7 +193,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
events »
events.variable
diff --git a/docs/_modules/filesystem.html b/docs/_modules/filesystem.html
index d6dfe884d..54cb435eb 100644
--- a/docs/_modules/filesystem.html
+++ b/docs/_modules/filesystem.html
@@ -4,11 +4,11 @@
-
filesystem — Source.Python v742 documentation
+
filesystem — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filesystem
@@ -158,7 +158,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filesystem
diff --git a/docs/_modules/filters/entities.html b/docs/_modules/filters/entities.html
index d0c41e2d3..d2292aa6a 100644
--- a/docs/_modules/filters/entities.html
+++ b/docs/_modules/filters/entities.html
@@ -4,11 +4,11 @@
-
filters.entities — Source.Python v742 documentation
+
filters.entities — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.entities
@@ -165,7 +165,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.entities
diff --git a/docs/_modules/filters/players.html b/docs/_modules/filters/players.html
index 306c3b290..12cfb2725 100644
--- a/docs/_modules/filters/players.html
+++ b/docs/_modules/filters/players.html
@@ -4,11 +4,11 @@
-
filters.players — Source.Python v742 documentation
+
filters.players — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.players
@@ -258,7 +258,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.players
diff --git a/docs/_modules/filters/recipients.html b/docs/_modules/filters/recipients.html
index ae5892f76..3b8000acc 100644
--- a/docs/_modules/filters/recipients.html
+++ b/docs/_modules/filters/recipients.html
@@ -4,11 +4,11 @@
-
filters.recipients — Source.Python v742 documentation
+
filters.recipients — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.recipients
@@ -205,7 +205,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.recipients
diff --git a/docs/_modules/filters/weapons.html b/docs/_modules/filters/weapons.html
index 449e7ffc0..254fcbe3d 100644
--- a/docs/_modules/filters/weapons.html
+++ b/docs/_modules/filters/weapons.html
@@ -4,11 +4,11 @@
-
filters.weapons — Source.Python v742 documentation
+
filters.weapons — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.weapons
@@ -198,7 +198,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
filters.weapons
diff --git a/docs/_modules/hooks/exceptions.html b/docs/_modules/hooks/exceptions.html
index 60cd31a3c..aeacb60f4 100644
--- a/docs/_modules/hooks/exceptions.html
+++ b/docs/_modules/hooks/exceptions.html
@@ -4,11 +4,11 @@
-
hooks.exceptions — Source.Python v742 documentation
+
hooks.exceptions — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
hooks.exceptions
@@ -196,7 +196,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
hooks.exceptions
diff --git a/docs/_modules/hooks/warnings.html b/docs/_modules/hooks/warnings.html
index c6292c8ff..cc1561adf 100644
--- a/docs/_modules/hooks/warnings.html
+++ b/docs/_modules/hooks/warnings.html
@@ -4,11 +4,11 @@
-
hooks.warnings — Source.Python v742 documentation
+
hooks.warnings — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
hooks.warnings
@@ -170,7 +170,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
hooks.warnings
diff --git a/docs/_modules/index.html b/docs/_modules/index.html
index 6ffe6ff82..358269364 100644
--- a/docs/_modules/index.html
+++ b/docs/_modules/index.html
@@ -4,11 +4,11 @@
-
Overview: module code — Source.Python v742 documentation
+
Overview: module code — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Overview: module code
@@ -207,7 +207,7 @@ Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Overview: module code
diff --git a/docs/_modules/listeners.html b/docs/_modules/listeners.html
index dd59f4b53..902a265f6 100644
--- a/docs/_modules/listeners.html
+++ b/docs/_modules/listeners.html
@@ -4,11 +4,11 @@
-
listeners — Source.Python v742 documentation
+
listeners — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
listeners
@@ -936,7 +936,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
listeners
diff --git a/docs/_modules/listeners/tick.html b/docs/_modules/listeners/tick.html
index d7bf26def..88d931793 100644
--- a/docs/_modules/listeners/tick.html
+++ b/docs/_modules/listeners/tick.html
@@ -4,11 +4,11 @@
-
listeners.tick — Source.Python v742 documentation
+
listeners.tick — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
listeners »
listeners.tick
@@ -746,7 +746,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
listeners »
listeners.tick
diff --git a/docs/_modules/loggers.html b/docs/_modules/loggers.html
index 6ee69cb43..122889d21 100644
--- a/docs/_modules/loggers.html
+++ b/docs/_modules/loggers.html
@@ -4,11 +4,11 @@
-
loggers — Source.Python v742 documentation
+
loggers — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
loggers
@@ -554,7 +554,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
loggers
diff --git a/docs/_modules/memory.html b/docs/_modules/memory.html
index 455963062..2f869a488 100644
--- a/docs/_modules/memory.html
+++ b/docs/_modules/memory.html
@@ -4,11 +4,11 @@
-
memory — Source.Python v742 documentation
+
memory — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory
@@ -311,7 +311,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory
diff --git a/docs/_modules/memory/helpers.html b/docs/_modules/memory/helpers.html
index 872baaa9f..b0d613762 100644
--- a/docs/_modules/memory/helpers.html
+++ b/docs/_modules/memory/helpers.html
@@ -4,11 +4,11 @@
-
memory.helpers — Source.Python v742 documentation
+
memory.helpers — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory »
memory.helpers
@@ -541,7 +541,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory »
memory.helpers
diff --git a/docs/_modules/memory/hooks.html b/docs/_modules/memory/hooks.html
index e802f8b86..e159c297a 100644
--- a/docs/_modules/memory/hooks.html
+++ b/docs/_modules/memory/hooks.html
@@ -4,11 +4,11 @@
-
memory.hooks — Source.Python v742 documentation
+
memory.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory »
memory.hooks
@@ -259,7 +259,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory »
memory.hooks
diff --git a/docs/_modules/memory/manager.html b/docs/_modules/memory/manager.html
index 77afb05bf..23bc72adc 100644
--- a/docs/_modules/memory/manager.html
+++ b/docs/_modules/memory/manager.html
@@ -4,11 +4,11 @@
-
memory.manager — Source.Python v742 documentation
+
memory.manager — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory »
memory.manager
@@ -964,7 +964,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
memory »
memory.manager
diff --git a/docs/_modules/menus/base.html b/docs/_modules/menus/base.html
index 65ea03d93..a9813cb54 100644
--- a/docs/_modules/menus/base.html
+++ b/docs/_modules/menus/base.html
@@ -4,11 +4,11 @@
-
menus.base — Source.Python v742 documentation
+
menus.base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
menus.base
@@ -520,7 +520,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
menus.base
diff --git a/docs/_modules/menus/esc.html b/docs/_modules/menus/esc.html
index 645c713ee..c6433b47d 100644
--- a/docs/_modules/menus/esc.html
+++ b/docs/_modules/menus/esc.html
@@ -4,11 +4,11 @@
-
menus.esc — Source.Python v742 documentation
+
menus.esc — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
menus.esc
@@ -495,7 +495,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
menus.esc
diff --git a/docs/_modules/menus/radio.html b/docs/_modules/menus/radio.html
index dde87b86e..798fc768c 100644
--- a/docs/_modules/menus/radio.html
+++ b/docs/_modules/menus/radio.html
@@ -4,11 +4,11 @@
-
menus.radio — Source.Python v742 documentation
+
menus.radio — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
menus.radio
@@ -532,7 +532,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
menus.radio
diff --git a/docs/_modules/messages/base.html b/docs/_modules/messages/base.html
index 02838b922..85a8c931a 100644
--- a/docs/_modules/messages/base.html
+++ b/docs/_modules/messages/base.html
@@ -4,11 +4,11 @@
-
messages.base — Source.Python v742 documentation
+
messages.base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.base
@@ -783,7 +783,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.base
diff --git a/docs/_modules/messages/dialog.html b/docs/_modules/messages/dialog.html
index 56d6d4d67..0fd16d48f 100644
--- a/docs/_modules/messages/dialog.html
+++ b/docs/_modules/messages/dialog.html
@@ -4,11 +4,11 @@
-
messages.dialog — Source.Python v742 documentation
+
messages.dialog — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.dialog
@@ -422,7 +422,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.dialog
diff --git a/docs/_modules/messages/hooks.html b/docs/_modules/messages/hooks.html
index ba5b2841d..b196fcafc 100644
--- a/docs/_modules/messages/hooks.html
+++ b/docs/_modules/messages/hooks.html
@@ -4,11 +4,11 @@
-
messages.hooks — Source.Python v742 documentation
+
messages.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.hooks
@@ -373,7 +373,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.hooks
diff --git a/docs/_modules/messages/impl.html b/docs/_modules/messages/impl.html
index c188886f2..ac8270f38 100644
--- a/docs/_modules/messages/impl.html
+++ b/docs/_modules/messages/impl.html
@@ -4,11 +4,11 @@
-
messages.impl — Source.Python v742 documentation
+
messages.impl — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.impl
@@ -433,7 +433,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
messages.impl
diff --git a/docs/_modules/net_channel.html b/docs/_modules/net_channel.html
index ac0c45abe..d69e36c60 100644
--- a/docs/_modules/net_channel.html
+++ b/docs/_modules/net_channel.html
@@ -4,11 +4,11 @@
-
net_channel — Source.Python v742 documentation
+
net_channel — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
net_channel
@@ -119,7 +119,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
net_channel
diff --git a/docs/_modules/players/_language/base.html b/docs/_modules/players/_language/base.html
index 613f30de7..86e44daa3 100644
--- a/docs/_modules/players/_language/base.html
+++ b/docs/_modules/players/_language/base.html
@@ -4,11 +4,11 @@
-
players._language.base — Source.Python v742 documentation
+
players._language.base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players._language.base
@@ -99,7 +99,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players._language.base
diff --git a/docs/_modules/players/constants.html b/docs/_modules/players/constants.html
index eaae16b17..eb772a2bc 100644
--- a/docs/_modules/players/constants.html
+++ b/docs/_modules/players/constants.html
@@ -4,11 +4,11 @@
-
players.constants — Source.Python v742 documentation
+
players.constants — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.constants
@@ -311,7 +311,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.constants
diff --git a/docs/_modules/players/dictionary.html b/docs/_modules/players/dictionary.html
index 87a577d3e..9da308c2d 100644
--- a/docs/_modules/players/dictionary.html
+++ b/docs/_modules/players/dictionary.html
@@ -4,11 +4,11 @@
-
players.dictionary — Source.Python v742 documentation
+
players.dictionary — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.dictionary
@@ -130,7 +130,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.dictionary
diff --git a/docs/_modules/players/engines/bms.html b/docs/_modules/players/engines/bms.html
index 99386d7f3..cc5eac146 100644
--- a/docs/_modules/players/engines/bms.html
+++ b/docs/_modules/players/engines/bms.html
@@ -4,11 +4,11 @@
-
players.engines.bms — Source.Python v742 documentation
+
players.engines.bms — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.bms
@@ -102,7 +102,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.bms
diff --git a/docs/_modules/players/engines/l4d2.html b/docs/_modules/players/engines/l4d2.html
index ed3a671e4..870c6b0cd 100644
--- a/docs/_modules/players/engines/l4d2.html
+++ b/docs/_modules/players/engines/l4d2.html
@@ -4,11 +4,11 @@
-
players.engines.l4d2 — Source.Python v742 documentation
+
players.engines.l4d2 — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.l4d2
@@ -102,7 +102,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.l4d2
diff --git a/docs/_modules/players/engines/orangebox.html b/docs/_modules/players/engines/orangebox.html
index 700a0a592..a23af5d0b 100644
--- a/docs/_modules/players/engines/orangebox.html
+++ b/docs/_modules/players/engines/orangebox.html
@@ -4,11 +4,11 @@
-
players.engines.orangebox — Source.Python v742 documentation
+
players.engines.orangebox — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.orangebox
@@ -101,7 +101,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.orangebox
diff --git a/docs/_modules/players/engines/orangebox/cstrike.html b/docs/_modules/players/engines/orangebox/cstrike.html
index bdf2c5f38..485637840 100644
--- a/docs/_modules/players/engines/orangebox/cstrike.html
+++ b/docs/_modules/players/engines/orangebox/cstrike.html
@@ -4,11 +4,11 @@
-
players.engines.orangebox.cstrike — Source.Python v742 documentation
+
players.engines.orangebox.cstrike — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.orangebox »
players.engines.orangebox.cstrike
@@ -152,7 +152,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
players.engines.orangebox »
players.engines.orangebox.cstrike
diff --git a/docs/_modules/plugins/command.html b/docs/_modules/plugins/command.html
index a123c9608..065cc5d5a 100644
--- a/docs/_modules/plugins/command.html
+++ b/docs/_modules/plugins/command.html
@@ -4,11 +4,11 @@
-
plugins.command — Source.Python v742 documentation
+
plugins.command — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.command
@@ -373,7 +373,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.command
diff --git a/docs/_modules/plugins/info.html b/docs/_modules/plugins/info.html
index e37dea14f..f18cf4397 100644
--- a/docs/_modules/plugins/info.html
+++ b/docs/_modules/plugins/info.html
@@ -4,11 +4,11 @@
-
plugins.info — Source.Python v742 documentation
+
plugins.info — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.info
@@ -223,7 +223,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.info
diff --git a/docs/_modules/plugins/instance.html b/docs/_modules/plugins/instance.html
index be731e49a..d6073d3b2 100644
--- a/docs/_modules/plugins/instance.html
+++ b/docs/_modules/plugins/instance.html
@@ -4,11 +4,11 @@
-
plugins.instance — Source.Python v742 documentation
+
plugins.instance — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.instance
@@ -174,7 +174,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.instance
diff --git a/docs/_modules/plugins/manager.html b/docs/_modules/plugins/manager.html
index ce40fe5ce..0f84b5b2e 100644
--- a/docs/_modules/plugins/manager.html
+++ b/docs/_modules/plugins/manager.html
@@ -4,11 +4,11 @@
-
plugins.manager — Source.Python v742 documentation
+
plugins.manager — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.manager
@@ -555,7 +555,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
plugins.manager
diff --git a/docs/_modules/public.html b/docs/_modules/public.html
index db23e8184..23dd4c084 100644
--- a/docs/_modules/public.html
+++ b/docs/_modules/public.html
@@ -4,11 +4,11 @@
-
public — Source.Python v742 documentation
+
public — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
public
@@ -114,7 +114,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
public
diff --git a/docs/_modules/settings/player.html b/docs/_modules/settings/player.html
index d5bd140a0..5593a1164 100644
--- a/docs/_modules/settings/player.html
+++ b/docs/_modules/settings/player.html
@@ -4,11 +4,11 @@
-
settings.player — Source.Python v742 documentation
+
settings.player — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
settings.player
@@ -248,7 +248,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
settings.player
diff --git a/docs/_modules/settings/types.html b/docs/_modules/settings/types.html
index d903ad983..f9bbae149 100644
--- a/docs/_modules/settings/types.html
+++ b/docs/_modules/settings/types.html
@@ -4,11 +4,11 @@
-
settings.types — Source.Python v742 documentation
+
settings.types — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
settings.types
@@ -492,7 +492,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
settings.types
diff --git a/docs/_modules/stringtables/downloads.html b/docs/_modules/stringtables/downloads.html
index 9ff595551..7b03eab30 100644
--- a/docs/_modules/stringtables/downloads.html
+++ b/docs/_modules/stringtables/downloads.html
@@ -4,11 +4,11 @@
-
stringtables.downloads — Source.Python v742 documentation
+
stringtables.downloads — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
stringtables.downloads
@@ -227,7 +227,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
stringtables.downloads
diff --git a/docs/_modules/studio/constants.html b/docs/_modules/studio/constants.html
index 6240588be..30871d4f1 100644
--- a/docs/_modules/studio/constants.html
+++ b/docs/_modules/studio/constants.html
@@ -4,11 +4,11 @@
-
studio.constants — Source.Python v742 documentation
+
studio.constants — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
studio.constants
@@ -136,7 +136,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
studio.constants
diff --git a/docs/_modules/translations/strings.html b/docs/_modules/translations/strings.html
index 6f31a310b..6ecb96f11 100644
--- a/docs/_modules/translations/strings.html
+++ b/docs/_modules/translations/strings.html
@@ -4,11 +4,11 @@
-
translations.strings — Source.Python v742 documentation
+
translations.strings — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
translations.strings
@@ -421,7 +421,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
translations.strings
diff --git a/docs/_modules/weapons/_base.html b/docs/_modules/weapons/_base.html
index 76583be34..b7674a445 100644
--- a/docs/_modules/weapons/_base.html
+++ b/docs/_modules/weapons/_base.html
@@ -4,11 +4,11 @@
-
weapons._base — Source.Python v742 documentation
+
weapons._base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons._base
@@ -288,7 +288,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons._base
diff --git a/docs/_modules/weapons/constants.html b/docs/_modules/weapons/constants.html
index 46626da59..df1bb5651 100644
--- a/docs/_modules/weapons/constants.html
+++ b/docs/_modules/weapons/constants.html
@@ -4,11 +4,11 @@
-
weapons.constants — Source.Python v742 documentation
+
weapons.constants — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.constants
@@ -172,7 +172,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.constants
diff --git a/docs/_modules/weapons/default.html b/docs/_modules/weapons/default.html
index 80a7faeea..cd4a84149 100644
--- a/docs/_modules/weapons/default.html
+++ b/docs/_modules/weapons/default.html
@@ -4,11 +4,11 @@
-
weapons.default — Source.Python v742 documentation
+
weapons.default — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.default
@@ -108,7 +108,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.default
diff --git a/docs/_modules/weapons/dictionary.html b/docs/_modules/weapons/dictionary.html
index 6e3547660..55c7a7cf7 100644
--- a/docs/_modules/weapons/dictionary.html
+++ b/docs/_modules/weapons/dictionary.html
@@ -4,11 +4,11 @@
-
weapons.dictionary — Source.Python v742 documentation
+
weapons.dictionary — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.dictionary
@@ -118,7 +118,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.dictionary
diff --git a/docs/_modules/weapons/engines/csgo.html b/docs/_modules/weapons/engines/csgo.html
index a4bc05d9e..e9a76d023 100644
--- a/docs/_modules/weapons/engines/csgo.html
+++ b/docs/_modules/weapons/engines/csgo.html
@@ -4,11 +4,11 @@
-
weapons.engines.csgo — Source.Python v742 documentation
+
weapons.engines.csgo — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.engines.csgo
@@ -90,7 +90,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.engines.csgo
diff --git a/docs/_modules/weapons/engines/csgo/csgo.html b/docs/_modules/weapons/engines/csgo/csgo.html
index 663c26741..b96549dc5 100644
--- a/docs/_modules/weapons/engines/csgo/csgo.html
+++ b/docs/_modules/weapons/engines/csgo/csgo.html
@@ -4,11 +4,11 @@
-
weapons.engines.csgo.csgo — Source.Python v742 documentation
+
weapons.engines.csgo.csgo — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.engines.csgo »
weapons.engines.csgo.csgo
@@ -161,7 +161,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.engines.csgo »
weapons.engines.csgo.csgo
diff --git a/docs/_modules/weapons/instance.html b/docs/_modules/weapons/instance.html
index c29f81145..081cf3bff 100644
--- a/docs/_modules/weapons/instance.html
+++ b/docs/_modules/weapons/instance.html
@@ -4,11 +4,11 @@
-
weapons.instance — Source.Python v742 documentation
+
weapons.instance — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.instance
@@ -281,7 +281,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.instance
diff --git a/docs/_modules/weapons/restrictions.html b/docs/_modules/weapons/restrictions.html
index 6b5105f29..dc2b27ca8 100644
--- a/docs/_modules/weapons/restrictions.html
+++ b/docs/_modules/weapons/restrictions.html
@@ -4,11 +4,11 @@
-
weapons.restrictions — Source.Python v742 documentation
+
weapons.restrictions — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.restrictions
@@ -533,7 +533,7 @@
Navigation
modules |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Module code »
weapons.restrictions
diff --git a/docs/_sources/general/installation.rst.txt b/docs/_sources/general/installation.rst.txt
index 117128f75..877831613 100644
--- a/docs/_sources/general/installation.rst.txt
+++ b/docs/_sources/general/installation.rst.txt
@@ -27,7 +27,7 @@ There are no special requirements.
Installation steps
------------------
-1. Download the latest Source.Python version from our `download page
`_.
+1. Download the latest Source.Python version from our `download page
`_.
2. Extract the archive in your server's game folder. E.g. ``../my_servers/css/cstrike/``
3. Start/restart your server and validate the installation by typing ``sp info`` into the server console (use ``rcon`` if you are not working directly on your server). It should print something like this:
@@ -49,4 +49,4 @@ Installation steps
4. If you validated the installation, you successfully installed Source.Python!
5. You can now edit your server's ``../cfg/source-python/core_settings.ini`` file to your liking.
-If you are having problems installing Source.Python (e. g. ``Unknown command "sp"``), please let us know on our `forums `_!
+If you are having problems installing Source.Python (e. g. ``Unknown command "sp"``), please let us know on `GitHub `_!
diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt
index 690e5dee9..c57bb2422 100644
--- a/docs/_sources/index.rst.txt
+++ b/docs/_sources/index.rst.txt
@@ -5,11 +5,7 @@ Welcome to the Source.Python documentation!
Source.Python is an open-source project that uses Boost.Python to allow
scripters to interact with Valve's Source-engine. In this wiki, you will find
-documentation on how to install, update, and use Source.Python. If you have
-any questions, please search for an answer on our
-`forums `_. If you cannot find the
-answer to your question, please post a question of your own in the appropriate
-forum.
+documentation on how to install, update, and use Source.Python.
Source.Python is currently embedding Python 3.13 and will be upgraded from
time to time.
@@ -67,7 +63,8 @@ Other helpful links
-------------------
* Source.Python
- * `Source.Python forums `_
+ * `Source.Python discussions `_
+ * `Source.Python forums (old) `_
* `Source.Python repository `_
* `Source.Python issue list `_
diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js
index ad13f10d9..48db6b1d2 100644
--- a/docs/_static/documentation_options.js
+++ b/docs/_static/documentation_options.js
@@ -1,5 +1,5 @@
const DOCUMENTATION_OPTIONS = {
- VERSION: ' v742',
+ VERSION: ' v743',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
diff --git a/docs/contributing/building.html b/docs/contributing/building.html
index 682b6a08f..9108a1b46 100644
--- a/docs/contributing/building.html
+++ b/docs/contributing/building.html
@@ -5,11 +5,11 @@
- Building — Source.Python v742 documentation
+ Building — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Building
@@ -175,7 +175,7 @@
Navigation
previous |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Building
diff --git a/docs/contributing/coding-conventions.html b/docs/contributing/coding-conventions.html
index 7b776e31a..52bd88a94 100644
--- a/docs/contributing/coding-conventions.html
+++ b/docs/contributing/coding-conventions.html
@@ -5,11 +5,11 @@
-
Coding conventions — Source.Python v742 documentation
+
Coding conventions — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@
Navigation
previous |
-
Source.Python v742 documentation »
+
Source.Python v743 documentation »
Coding conventions
@@ -348,7 +348,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Coding conventions
diff --git a/docs/contributing/contributing.html b/docs/contributing/contributing.html
index 236e0950b..a58498acd 100644
--- a/docs/contributing/contributing.html
+++ b/docs/contributing/contributing.html
@@ -5,11 +5,11 @@
- Contributing — Source.Python v742 documentation
+ Contributing — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Contributing
@@ -182,7 +182,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Contributing
diff --git a/docs/contributing/todos.html b/docs/contributing/todos.html
index a3b6c6441..aa0a9c6c6 100644
--- a/docs/contributing/todos.html
+++ b/docs/contributing/todos.html
@@ -5,11 +5,11 @@
- TODOs — Source.Python v742 documentation
+ TODOs — Source.Python v743 documentation
-
+
@@ -30,7 +30,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
TODOs
@@ -97,7 +97,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
TODOs
diff --git a/docs/developing/events.html b/docs/developing/events.html
index d203169fc..d71c878a2 100644
--- a/docs/developing/events.html
+++ b/docs/developing/events.html
@@ -5,11 +5,11 @@
- Events — Source.Python v742 documentation
+ Events — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events
@@ -192,7 +192,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events
diff --git a/docs/developing/events/blade.html b/docs/developing/events/blade.html
index ba541a03a..c2a6ebb8e 100644
--- a/docs/developing/events/blade.html
+++ b/docs/developing/events/blade.html
@@ -5,11 +5,11 @@
- Blade Symphony — Source.Python v742 documentation
+ Blade Symphony — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Blade Symphony
@@ -2063,7 +2063,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Blade Symphony
diff --git a/docs/developing/events/bms.html b/docs/developing/events/bms.html
index 34e445e26..8a9e34b01 100644
--- a/docs/developing/events/bms.html
+++ b/docs/developing/events/bms.html
@@ -5,11 +5,11 @@
- Black Mesa: Source — Source.Python v742 documentation
+ Black Mesa: Source — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Black Mesa: Source
@@ -2033,7 +2033,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Black Mesa: Source
diff --git a/docs/developing/events/csgo.html b/docs/developing/events/csgo.html
index a9b2b426b..91cfede80 100644
--- a/docs/developing/events/csgo.html
+++ b/docs/developing/events/csgo.html
@@ -5,11 +5,11 @@
- Counter-Strike: Global Offensive — Source.Python v742 documentation
+ Counter-Strike: Global Offensive — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Counter-Strike: Global Offensive
@@ -6003,7 +6003,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Counter-Strike: Global Offensive
diff --git a/docs/developing/events/cstrike.html b/docs/developing/events/cstrike.html
index bf0bfb286..630fec09b 100644
--- a/docs/developing/events/cstrike.html
+++ b/docs/developing/events/cstrike.html
@@ -5,11 +5,11 @@
- Counter-Strike: Source — Source.Python v742 documentation
+ Counter-Strike: Source — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Counter-Strike: Source
@@ -3313,7 +3313,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Counter-Strike: Source
diff --git a/docs/developing/events/dod.html b/docs/developing/events/dod.html
index 97cab238b..70b3d3913 100644
--- a/docs/developing/events/dod.html
+++ b/docs/developing/events/dod.html
@@ -5,11 +5,11 @@
- Day of Defeat: Source — Source.Python v742 documentation
+ Day of Defeat: Source — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Day of Defeat: Source
@@ -2933,7 +2933,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Day of Defeat: Source
diff --git a/docs/developing/events/hl2.html b/docs/developing/events/hl2.html
index 980765563..4c6b83ad4 100644
--- a/docs/developing/events/hl2.html
+++ b/docs/developing/events/hl2.html
@@ -5,11 +5,11 @@
- Halflife 2 — Source.Python v742 documentation
+ Halflife 2 — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Halflife 2
@@ -105,7 +105,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Halflife 2
diff --git a/docs/developing/events/hl2mp.html b/docs/developing/events/hl2mp.html
index 8753bb06f..de503717d 100644
--- a/docs/developing/events/hl2mp.html
+++ b/docs/developing/events/hl2mp.html
@@ -5,11 +5,11 @@
- Half-Life 2 DeathMatch — Source.Python v742 documentation
+ Half-Life 2 DeathMatch — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Half-Life 2 DeathMatch
@@ -2101,7 +2101,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Half-Life 2 DeathMatch
diff --git a/docs/developing/events/l4d2.html b/docs/developing/events/l4d2.html
index ba8458d71..a94065700 100644
--- a/docs/developing/events/l4d2.html
+++ b/docs/developing/events/l4d2.html
@@ -5,11 +5,11 @@
- Left 4 Dead 2 — Source.Python v742 documentation
+ Left 4 Dead 2 — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Left 4 Dead 2
@@ -8531,7 +8531,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Left 4 Dead 2
diff --git a/docs/developing/events/portal.html b/docs/developing/events/portal.html
index 64e590bf6..f4858c437 100644
--- a/docs/developing/events/portal.html
+++ b/docs/developing/events/portal.html
@@ -5,11 +5,11 @@
- Portal — Source.Python v742 documentation
+ Portal — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Portal
@@ -105,7 +105,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Portal
diff --git a/docs/developing/events/portal2.html b/docs/developing/events/portal2.html
index aeb0dd9fc..3699416c1 100644
--- a/docs/developing/events/portal2.html
+++ b/docs/developing/events/portal2.html
@@ -5,11 +5,11 @@
- Portal 2 — Source.Python v742 documentation
+ Portal 2 — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Portal 2
@@ -105,7 +105,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Portal 2
diff --git a/docs/developing/events/tf.html b/docs/developing/events/tf.html
index 13853eb27..97a65324d 100644
--- a/docs/developing/events/tf.html
+++ b/docs/developing/events/tf.html
@@ -5,11 +5,11 @@
- Team Fortress 2 — Source.Python v742 documentation
+ Team Fortress 2 — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Team Fortress 2
@@ -8959,7 +8959,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Events »
Team Fortress 2
diff --git a/docs/developing/getting-started.html b/docs/developing/getting-started.html
index 85924a1d8..eaad31057 100644
--- a/docs/developing/getting-started.html
+++ b/docs/developing/getting-started.html
@@ -5,11 +5,11 @@
- Getting started — Source.Python v742 documentation
+ Getting started — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Getting started
@@ -262,7 +262,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Getting started
diff --git a/docs/developing/module_tutorials.html b/docs/developing/module_tutorials.html
index 358c4e660..3958f5f54 100644
--- a/docs/developing/module_tutorials.html
+++ b/docs/developing/module_tutorials.html
@@ -5,11 +5,11 @@
- Module tutorials — Source.Python v742 documentation
+ Module tutorials — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials
@@ -120,7 +120,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials
diff --git a/docs/developing/module_tutorials/auth.html b/docs/developing/module_tutorials/auth.html
index f57c14269..e8144b0f1 100644
--- a/docs/developing/module_tutorials/auth.html
+++ b/docs/developing/module_tutorials/auth.html
@@ -5,11 +5,11 @@
- auth — Source.Python v742 documentation
+ auth — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
auth
@@ -165,7 +165,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
auth
diff --git a/docs/developing/module_tutorials/colors.html b/docs/developing/module_tutorials/colors.html
index 73f9e9522..416f3de36 100644
--- a/docs/developing/module_tutorials/colors.html
+++ b/docs/developing/module_tutorials/colors.html
@@ -5,11 +5,11 @@
- colors — Source.Python v742 documentation
+ colors — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
colors
@@ -152,7 +152,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
colors
diff --git a/docs/developing/module_tutorials/commands.html b/docs/developing/module_tutorials/commands.html
index 8aa291811..f0f316e9c 100644
--- a/docs/developing/module_tutorials/commands.html
+++ b/docs/developing/module_tutorials/commands.html
@@ -5,11 +5,11 @@
- commands — Source.Python v742 documentation
+ commands — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
commands
@@ -555,7 +555,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
commands
diff --git a/docs/developing/module_tutorials/config.html b/docs/developing/module_tutorials/config.html
index cf30d63b4..aeb7118a0 100644
--- a/docs/developing/module_tutorials/config.html
+++ b/docs/developing/module_tutorials/config.html
@@ -5,11 +5,11 @@
- config — Source.Python v742 documentation
+ config — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
config
@@ -355,7 +355,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
config
diff --git a/docs/developing/module_tutorials/entities.html b/docs/developing/module_tutorials/entities.html
index 3b4785eb5..9be09faa6 100644
--- a/docs/developing/module_tutorials/entities.html
+++ b/docs/developing/module_tutorials/entities.html
@@ -5,11 +5,11 @@
- entities — Source.Python v742 documentation
+ entities — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
entities
@@ -274,7 +274,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
entities
diff --git a/docs/developing/module_tutorials/events.html b/docs/developing/module_tutorials/events.html
index a99894d86..c80babeab 100644
--- a/docs/developing/module_tutorials/events.html
+++ b/docs/developing/module_tutorials/events.html
@@ -5,11 +5,11 @@
- events — Source.Python v742 documentation
+ events — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
events
@@ -188,7 +188,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
events
diff --git a/docs/developing/module_tutorials/listeners.html b/docs/developing/module_tutorials/listeners.html
index 9706c407a..7652744fe 100644
--- a/docs/developing/module_tutorials/listeners.html
+++ b/docs/developing/module_tutorials/listeners.html
@@ -5,11 +5,11 @@
- listeners — Source.Python v742 documentation
+ listeners — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
listeners
@@ -716,7 +716,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
listeners
diff --git a/docs/developing/module_tutorials/memory.html b/docs/developing/module_tutorials/memory.html
index 71c1bae57..f25afe7f6 100644
--- a/docs/developing/module_tutorials/memory.html
+++ b/docs/developing/module_tutorials/memory.html
@@ -5,11 +5,11 @@
- memory — Source.Python v742 documentation
+ memory — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
memory
@@ -226,7 +226,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
memory
diff --git a/docs/developing/module_tutorials/menus.html b/docs/developing/module_tutorials/menus.html
index 0cf6466e7..73bffc308 100644
--- a/docs/developing/module_tutorials/menus.html
+++ b/docs/developing/module_tutorials/menus.html
@@ -5,11 +5,11 @@
- menus — Source.Python v742 documentation
+ menus — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
menus
@@ -246,7 +246,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
menus
diff --git a/docs/developing/module_tutorials/plugins.html b/docs/developing/module_tutorials/plugins.html
index 8ea07afbe..924af21cf 100644
--- a/docs/developing/module_tutorials/plugins.html
+++ b/docs/developing/module_tutorials/plugins.html
@@ -5,11 +5,11 @@
- plugins — Source.Python v742 documentation
+ plugins — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
plugins
@@ -331,7 +331,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
plugins
diff --git a/docs/developing/module_tutorials/stringtables.html b/docs/developing/module_tutorials/stringtables.html
index a6f190594..7ff5d8f3e 100644
--- a/docs/developing/module_tutorials/stringtables.html
+++ b/docs/developing/module_tutorials/stringtables.html
@@ -5,11 +5,11 @@
- stringtables — Source.Python v742 documentation
+ stringtables — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
stringtables
@@ -148,7 +148,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module tutorials »
stringtables
diff --git a/docs/developing/modules/auth.base.html b/docs/developing/modules/auth.base.html
index b0a48aa70..51110f33d 100644
--- a/docs/developing/modules/auth.base.html
+++ b/docs/developing/modules/auth.base.html
@@ -5,11 +5,11 @@
- auth.base module — Source.Python v742 documentation
+ auth.base module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
auth.base module
@@ -161,7 +161,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
auth.base module
diff --git a/docs/developing/modules/auth.html b/docs/developing/modules/auth.html
index 5b15364f1..db36085cc 100644
--- a/docs/developing/modules/auth.html
+++ b/docs/developing/modules/auth.html
@@ -5,11 +5,11 @@
- auth package — Source.Python v742 documentation
+ auth package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
auth package
@@ -104,7 +104,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
auth package
diff --git a/docs/developing/modules/auth.manager.html b/docs/developing/modules/auth.manager.html
index 4a3bffc2b..9d97b09b1 100644
--- a/docs/developing/modules/auth.manager.html
+++ b/docs/developing/modules/auth.manager.html
@@ -5,11 +5,11 @@
- auth.manager module — Source.Python v742 documentation
+ auth.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
auth.manager module
@@ -259,7 +259,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
auth.manager module
diff --git a/docs/developing/modules/autodoc.html b/docs/developing/modules/autodoc.html
index 514488899..f03699c48 100644
--- a/docs/developing/modules/autodoc.html
+++ b/docs/developing/modules/autodoc.html
@@ -5,11 +5,11 @@
- autodoc module — Source.Python v742 documentation
+ autodoc module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
autodoc module
@@ -308,7 +308,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
autodoc module
diff --git a/docs/developing/modules/bitbuffers.html b/docs/developing/modules/bitbuffers.html
index 558b5c1ae..f243da3dd 100644
--- a/docs/developing/modules/bitbuffers.html
+++ b/docs/developing/modules/bitbuffers.html
@@ -5,11 +5,11 @@
- bitbuffers module — Source.Python v742 documentation
+ bitbuffers module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
bitbuffers module
@@ -564,7 +564,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
bitbuffers module
diff --git a/docs/developing/modules/colors.html b/docs/developing/modules/colors.html
index e50106485..d8741ca7b 100644
--- a/docs/developing/modules/colors.html
+++ b/docs/developing/modules/colors.html
@@ -5,11 +5,11 @@
- colors module — Source.Python v742 documentation
+ colors module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
colors module
@@ -343,7 +343,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
colors module
diff --git a/docs/developing/modules/commands.auth.html b/docs/developing/modules/commands.auth.html
index e38d9e153..0b55eece7 100644
--- a/docs/developing/modules/commands.auth.html
+++ b/docs/developing/modules/commands.auth.html
@@ -5,11 +5,11 @@
- commands.auth module — Source.Python v742 documentation
+ commands.auth module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.auth module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.auth module
diff --git a/docs/developing/modules/commands.client.html b/docs/developing/modules/commands.client.html
index 3477a554f..9a517befe 100644
--- a/docs/developing/modules/commands.client.html
+++ b/docs/developing/modules/commands.client.html
@@ -5,11 +5,11 @@
- commands.client package — Source.Python v742 documentation
+ commands.client package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.client package
@@ -180,7 +180,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.client package
diff --git a/docs/developing/modules/commands.command.html b/docs/developing/modules/commands.command.html
index 79e8e9bc8..a85b89818 100644
--- a/docs/developing/modules/commands.command.html
+++ b/docs/developing/modules/commands.command.html
@@ -5,11 +5,11 @@
- commands.command module — Source.Python v742 documentation
+ commands.command module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.command module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.command module
diff --git a/docs/developing/modules/commands.filter.html b/docs/developing/modules/commands.filter.html
index d7b864151..6d9476757 100644
--- a/docs/developing/modules/commands.filter.html
+++ b/docs/developing/modules/commands.filter.html
@@ -5,11 +5,11 @@
- commands.filter module — Source.Python v742 documentation
+ commands.filter module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.filter module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.filter module
diff --git a/docs/developing/modules/commands.html b/docs/developing/modules/commands.html
index 2c8888cbb..e0b4231fa 100644
--- a/docs/developing/modules/commands.html
+++ b/docs/developing/modules/commands.html
@@ -5,11 +5,11 @@
- commands package — Source.Python v742 documentation
+ commands package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands package
@@ -304,7 +304,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands package
diff --git a/docs/developing/modules/commands.manager.html b/docs/developing/modules/commands.manager.html
index 36d80bbcf..be6fc87a7 100644
--- a/docs/developing/modules/commands.manager.html
+++ b/docs/developing/modules/commands.manager.html
@@ -5,11 +5,11 @@
- commands.manager module — Source.Python v742 documentation
+ commands.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.manager module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.manager module
diff --git a/docs/developing/modules/commands.player.html b/docs/developing/modules/commands.player.html
index 3210c6167..2be0f3f64 100644
--- a/docs/developing/modules/commands.player.html
+++ b/docs/developing/modules/commands.player.html
@@ -5,11 +5,11 @@
- commands.player module — Source.Python v742 documentation
+ commands.player module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.player module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.player module
diff --git a/docs/developing/modules/commands.say.html b/docs/developing/modules/commands.say.html
index 357569ee5..4ac294be9 100644
--- a/docs/developing/modules/commands.say.html
+++ b/docs/developing/modules/commands.say.html
@@ -5,11 +5,11 @@
- commands.say package — Source.Python v742 documentation
+ commands.say package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.say package
@@ -180,7 +180,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.say package
diff --git a/docs/developing/modules/commands.server.html b/docs/developing/modules/commands.server.html
index 7d7602e7e..36b988dbc 100644
--- a/docs/developing/modules/commands.server.html
+++ b/docs/developing/modules/commands.server.html
@@ -5,11 +5,11 @@
- commands.server package — Source.Python v742 documentation
+ commands.server package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.server package
@@ -158,7 +158,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.server package
diff --git a/docs/developing/modules/commands.typed.html b/docs/developing/modules/commands.typed.html
index 0feb4b381..e998c92dc 100644
--- a/docs/developing/modules/commands.typed.html
+++ b/docs/developing/modules/commands.typed.html
@@ -5,11 +5,11 @@
- commands.typed module — Source.Python v742 documentation
+ commands.typed module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.typed module
@@ -606,7 +606,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
commands.typed module
diff --git a/docs/developing/modules/config.command.html b/docs/developing/modules/config.command.html
index 6d3e04c8d..007607232 100644
--- a/docs/developing/modules/config.command.html
+++ b/docs/developing/modules/config.command.html
@@ -5,11 +5,11 @@
- config.command module — Source.Python v742 documentation
+ config.command module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.command module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.command module
diff --git a/docs/developing/modules/config.cvar.html b/docs/developing/modules/config.cvar.html
index 65e8a95e7..a7a498668 100644
--- a/docs/developing/modules/config.cvar.html
+++ b/docs/developing/modules/config.cvar.html
@@ -5,11 +5,11 @@
- config.cvar module — Source.Python v742 documentation
+ config.cvar module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.cvar module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.cvar module
diff --git a/docs/developing/modules/config.html b/docs/developing/modules/config.html
index e58ca32c8..bc9587ab2 100644
--- a/docs/developing/modules/config.html
+++ b/docs/developing/modules/config.html
@@ -5,11 +5,11 @@
- config package — Source.Python v742 documentation
+ config package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config package
@@ -106,7 +106,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config package
diff --git a/docs/developing/modules/config.manager.html b/docs/developing/modules/config.manager.html
index fd7064d8a..7dd5ec37e 100644
--- a/docs/developing/modules/config.manager.html
+++ b/docs/developing/modules/config.manager.html
@@ -5,11 +5,11 @@
- config.manager module — Source.Python v742 documentation
+ config.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.manager module
@@ -266,7 +266,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.manager module
diff --git a/docs/developing/modules/config.section.html b/docs/developing/modules/config.section.html
index 45c464d2c..39ab2a822 100644
--- a/docs/developing/modules/config.section.html
+++ b/docs/developing/modules/config.section.html
@@ -5,11 +5,11 @@
- config.section module — Source.Python v742 documentation
+ config.section module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.section module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
config.section module
diff --git a/docs/developing/modules/core.cache.html b/docs/developing/modules/core.cache.html
index 190a8d088..ffba7ffce 100644
--- a/docs/developing/modules/core.cache.html
+++ b/docs/developing/modules/core.cache.html
@@ -5,11 +5,11 @@
- core.cache module — Source.Python v742 documentation
+ core.cache module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.cache module
@@ -711,7 +711,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.cache module
diff --git a/docs/developing/modules/core.command.auth.html b/docs/developing/modules/core.command.auth.html
index 4a43b2faf..3e809a19a 100644
--- a/docs/developing/modules/core.command.auth.html
+++ b/docs/developing/modules/core.command.auth.html
@@ -5,11 +5,11 @@
- core.command.auth module — Source.Python v742 documentation
+ core.command.auth module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.auth module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.auth module
diff --git a/docs/developing/modules/core.command.docs.html b/docs/developing/modules/core.command.docs.html
index bdfcc1287..71e365d12 100644
--- a/docs/developing/modules/core.command.docs.html
+++ b/docs/developing/modules/core.command.docs.html
@@ -5,11 +5,11 @@
- core.command.docs module — Source.Python v742 documentation
+ core.command.docs module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.docs module
@@ -111,7 +111,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.docs module
diff --git a/docs/developing/modules/core.command.dump.html b/docs/developing/modules/core.command.dump.html
index 1d4933190..1b5131a5a 100644
--- a/docs/developing/modules/core.command.dump.html
+++ b/docs/developing/modules/core.command.dump.html
@@ -5,11 +5,11 @@
- core.command.dump module — Source.Python v742 documentation
+ core.command.dump module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.dump module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.dump module
diff --git a/docs/developing/modules/core.command.html b/docs/developing/modules/core.command.html
index 4fd28b6c0..8ebfbb6f5 100644
--- a/docs/developing/modules/core.command.html
+++ b/docs/developing/modules/core.command.html
@@ -5,11 +5,11 @@
- core.command package — Source.Python v742 documentation
+ core.command package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command package
@@ -125,7 +125,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command package
diff --git a/docs/developing/modules/core.command.plugin.html b/docs/developing/modules/core.command.plugin.html
index 730836477..de707f1fa 100644
--- a/docs/developing/modules/core.command.plugin.html
+++ b/docs/developing/modules/core.command.plugin.html
@@ -5,11 +5,11 @@
- core.command.plugin module — Source.Python v742 documentation
+ core.command.plugin module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.plugin module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.command.plugin module
diff --git a/docs/developing/modules/core.dumps.html b/docs/developing/modules/core.dumps.html
index 9419aec83..24f25f1c5 100644
--- a/docs/developing/modules/core.dumps.html
+++ b/docs/developing/modules/core.dumps.html
@@ -5,11 +5,11 @@
- core.dumps module — Source.Python v742 documentation
+ core.dumps module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.dumps module
@@ -132,7 +132,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.dumps module
diff --git a/docs/developing/modules/core.html b/docs/developing/modules/core.html
index b0044a966..8d9d6765f 100644
--- a/docs/developing/modules/core.html
+++ b/docs/developing/modules/core.html
@@ -5,11 +5,11 @@
- core package — Source.Python v742 documentation
+ core package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core package
@@ -422,7 +422,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core package
diff --git a/docs/developing/modules/core.settings.html b/docs/developing/modules/core.settings.html
index b3ce847e3..681edcec7 100644
--- a/docs/developing/modules/core.settings.html
+++ b/docs/developing/modules/core.settings.html
@@ -5,11 +5,11 @@
- core.settings module — Source.Python v742 documentation
+ core.settings module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.settings module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.settings module
diff --git a/docs/developing/modules/core.table.html b/docs/developing/modules/core.table.html
index a2577c56d..e01f3d89a 100644
--- a/docs/developing/modules/core.table.html
+++ b/docs/developing/modules/core.table.html
@@ -5,11 +5,11 @@
- core.table module — Source.Python v742 documentation
+ core.table module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.table module
@@ -218,7 +218,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.table module
diff --git a/docs/developing/modules/core.update.html b/docs/developing/modules/core.update.html
index 639608515..5f57dbf0e 100644
--- a/docs/developing/modules/core.update.html
+++ b/docs/developing/modules/core.update.html
@@ -5,11 +5,11 @@
- core.update module — Source.Python v742 documentation
+ core.update module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.update module
@@ -189,7 +189,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.update module
diff --git a/docs/developing/modules/core.version.html b/docs/developing/modules/core.version.html
index b6cf2f280..4b5950b0a 100644
--- a/docs/developing/modules/core.version.html
+++ b/docs/developing/modules/core.version.html
@@ -5,11 +5,11 @@
- core.version module — Source.Python v742 documentation
+ core.version module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.version module
@@ -71,13 +71,13 @@ Navigation
-core.version. GIT_COMMIT = '3e5dd5de0323db803d0e3499a229ba2529fc463a'
+core.version. GIT_COMMIT = '4cad55d4145ff7bf24aea6df9a53a9683df81700'
The Github commit this Source.Python version was built with.
-core.version. VERSION = 742
+core.version. VERSION = 743
Version of the Source.Python intallation.
@@ -136,7 +136,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
core.version module
diff --git a/docs/developing/modules/cvars.flags.html b/docs/developing/modules/cvars.flags.html
index d9d2e9a0a..59b37dd0e 100644
--- a/docs/developing/modules/cvars.flags.html
+++ b/docs/developing/modules/cvars.flags.html
@@ -5,11 +5,11 @@
- cvars.flags module — Source.Python v742 documentation
+ cvars.flags module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars.flags module
@@ -238,7 +238,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars.flags module
diff --git a/docs/developing/modules/cvars.html b/docs/developing/modules/cvars.html
index b2adc818c..7e5643aef 100644
--- a/docs/developing/modules/cvars.html
+++ b/docs/developing/modules/cvars.html
@@ -5,11 +5,11 @@
- cvars package — Source.Python v742 documentation
+ cvars package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars package
@@ -382,7 +382,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars package
diff --git a/docs/developing/modules/cvars.public.html b/docs/developing/modules/cvars.public.html
index 1c8ecec70..248f29c8f 100644
--- a/docs/developing/modules/cvars.public.html
+++ b/docs/developing/modules/cvars.public.html
@@ -5,11 +5,11 @@
- cvars.public module — Source.Python v742 documentation
+ cvars.public module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars.public module
@@ -120,7 +120,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars.public module
diff --git a/docs/developing/modules/cvars.tags.html b/docs/developing/modules/cvars.tags.html
index 9675ada4a..c2b832aaa 100644
--- a/docs/developing/modules/cvars.tags.html
+++ b/docs/developing/modules/cvars.tags.html
@@ -5,11 +5,11 @@
- cvars.tags module — Source.Python v742 documentation
+ cvars.tags module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars.tags module
@@ -97,7 +97,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
cvars.tags module
diff --git a/docs/developing/modules/effects.base.html b/docs/developing/modules/effects.base.html
index c47cb6ec4..660c69986 100644
--- a/docs/developing/modules/effects.base.html
+++ b/docs/developing/modules/effects.base.html
@@ -5,11 +5,11 @@
- effects.base module — Source.Python v742 documentation
+ effects.base module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects.base module
@@ -379,7 +379,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects.base module
diff --git a/docs/developing/modules/effects.hooks.html b/docs/developing/modules/effects.hooks.html
index 571ddf0c9..e38e91bec 100644
--- a/docs/developing/modules/effects.hooks.html
+++ b/docs/developing/modules/effects.hooks.html
@@ -5,11 +5,11 @@
- effects.hooks module — Source.Python v742 documentation
+ effects.hooks module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects.hooks module
@@ -112,7 +112,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects.hooks module
diff --git a/docs/developing/modules/effects.html b/docs/developing/modules/effects.html
index fbce18d4e..4376ea0e0 100644
--- a/docs/developing/modules/effects.html
+++ b/docs/developing/modules/effects.html
@@ -5,11 +5,11 @@
- effects package — Source.Python v742 documentation
+ effects package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects package
@@ -285,7 +285,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects package
diff --git a/docs/developing/modules/effects.templates.html b/docs/developing/modules/effects.templates.html
index 6ffcc0a31..2033e4462 100644
--- a/docs/developing/modules/effects.templates.html
+++ b/docs/developing/modules/effects.templates.html
@@ -5,11 +5,11 @@
- effects.templates module — Source.Python v742 documentation
+ effects.templates module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects.templates module
@@ -210,7 +210,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
effects.templates module
diff --git a/docs/developing/modules/engines.gamerules.html b/docs/developing/modules/engines.gamerules.html
index 4d2d8cbd8..28fab7e64 100644
--- a/docs/developing/modules/engines.gamerules.html
+++ b/docs/developing/modules/engines.gamerules.html
@@ -5,11 +5,11 @@
- engines.gamerules module — Source.Python v742 documentation
+ engines.gamerules module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.gamerules module
@@ -573,7 +573,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.gamerules module
diff --git a/docs/developing/modules/engines.html b/docs/developing/modules/engines.html
index 835a17ce7..9e32fa400 100644
--- a/docs/developing/modules/engines.html
+++ b/docs/developing/modules/engines.html
@@ -5,11 +5,11 @@
- engines package — Source.Python v742 documentation
+ engines package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines package
@@ -106,7 +106,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines package
diff --git a/docs/developing/modules/engines.precache.html b/docs/developing/modules/engines.precache.html
index 329bce5f3..31c54f77b 100644
--- a/docs/developing/modules/engines.precache.html
+++ b/docs/developing/modules/engines.precache.html
@@ -5,11 +5,11 @@
- engines.precache module — Source.Python v742 documentation
+ engines.precache module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.precache module
@@ -138,7 +138,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.precache module
diff --git a/docs/developing/modules/engines.server.html b/docs/developing/modules/engines.server.html
index 7f79b0e1c..611f4f99a 100644
--- a/docs/developing/modules/engines.server.html
+++ b/docs/developing/modules/engines.server.html
@@ -5,11 +5,11 @@
- engines.server module — Source.Python v742 documentation
+ engines.server module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.server module
@@ -589,7 +589,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.server module
diff --git a/docs/developing/modules/engines.sound.html b/docs/developing/modules/engines.sound.html
index dbb59d822..bf60a378e 100644
--- a/docs/developing/modules/engines.sound.html
+++ b/docs/developing/modules/engines.sound.html
@@ -5,11 +5,11 @@
- engines.sound module — Source.Python v742 documentation
+ engines.sound module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.sound module
@@ -425,7 +425,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.sound module
diff --git a/docs/developing/modules/engines.trace.html b/docs/developing/modules/engines.trace.html
index d97965583..019457d52 100644
--- a/docs/developing/modules/engines.trace.html
+++ b/docs/developing/modules/engines.trace.html
@@ -5,11 +5,11 @@
- engines.trace module — Source.Python v742 documentation
+ engines.trace module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.trace module
@@ -952,7 +952,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
engines.trace module
diff --git a/docs/developing/modules/entities.classes.html b/docs/developing/modules/entities.classes.html
index c93507cf1..c819c63cd 100644
--- a/docs/developing/modules/entities.classes.html
+++ b/docs/developing/modules/entities.classes.html
@@ -5,11 +5,11 @@
- entities.classes module — Source.Python v742 documentation
+ entities.classes module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.classes module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.classes module
diff --git a/docs/developing/modules/entities.collisions.html b/docs/developing/modules/entities.collisions.html
index 1feff32a7..56fbbcd88 100644
--- a/docs/developing/modules/entities.collisions.html
+++ b/docs/developing/modules/entities.collisions.html
@@ -5,11 +5,11 @@
- entities.collisions module — Source.Python v742 documentation
+ entities.collisions module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.collisions module
@@ -504,7 +504,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.collisions module
diff --git a/docs/developing/modules/entities.constants.html b/docs/developing/modules/entities.constants.html
index c294a1d47..a52ed0a69 100644
--- a/docs/developing/modules/entities.constants.html
+++ b/docs/developing/modules/entities.constants.html
@@ -5,11 +5,11 @@
- entities.constants module — Source.Python v742 documentation
+ entities.constants module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.constants module
@@ -1515,7 +1515,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.constants module
diff --git a/docs/developing/modules/entities.datamaps.html b/docs/developing/modules/entities.datamaps.html
index 312c3ebd5..73a449ced 100644
--- a/docs/developing/modules/entities.datamaps.html
+++ b/docs/developing/modules/entities.datamaps.html
@@ -5,11 +5,11 @@
- entities.datamaps module — Source.Python v742 documentation
+ entities.datamaps module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.datamaps module
@@ -1011,7 +1011,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.datamaps module
diff --git a/docs/developing/modules/entities.dictionary.html b/docs/developing/modules/entities.dictionary.html
index 0a926f3b5..eab50ace4 100644
--- a/docs/developing/modules/entities.dictionary.html
+++ b/docs/developing/modules/entities.dictionary.html
@@ -5,11 +5,11 @@
- entities.dictionary module — Source.Python v742 documentation
+ entities.dictionary module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.dictionary module
@@ -197,7 +197,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.dictionary module
diff --git a/docs/developing/modules/entities.engines.csgo.csgo.html b/docs/developing/modules/entities.engines.csgo.csgo.html
index a91479990..770eaaad4 100644
--- a/docs/developing/modules/entities.engines.csgo.csgo.html
+++ b/docs/developing/modules/entities.engines.csgo.csgo.html
@@ -5,11 +5,11 @@
- entities.engines.csgo.csgo module — Source.Python v742 documentation
+ entities.engines.csgo.csgo module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.engines.csgo.csgo module
@@ -136,7 +136,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.engines.csgo.csgo module
diff --git a/docs/developing/modules/entities.engines.csgo.html b/docs/developing/modules/entities.engines.csgo.html
index 87594bc2d..2eb148d14 100644
--- a/docs/developing/modules/entities.engines.csgo.html
+++ b/docs/developing/modules/entities.engines.csgo.html
@@ -5,11 +5,11 @@
- entities.engines.csgo package — Source.Python v742 documentation
+ entities.engines.csgo package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.engines.csgo package
@@ -104,7 +104,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.engines.csgo package
diff --git a/docs/developing/modules/entities.engines.html b/docs/developing/modules/entities.engines.html
index b2389e45c..cad63d5a0 100644
--- a/docs/developing/modules/entities.engines.html
+++ b/docs/developing/modules/entities.engines.html
@@ -5,11 +5,11 @@
- entities.engines package — Source.Python v742 documentation
+ entities.engines package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.engines package
@@ -103,7 +103,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.engines package
diff --git a/docs/developing/modules/entities.entity.html b/docs/developing/modules/entities.entity.html
index 14cb485d5..7341f1748 100644
--- a/docs/developing/modules/entities.entity.html
+++ b/docs/developing/modules/entities.entity.html
@@ -5,11 +5,11 @@
- entities.entity module — Source.Python v742 documentation
+ entities.entity module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.entity module
@@ -2578,7 +2578,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.entity module
diff --git a/docs/developing/modules/entities.factories.html b/docs/developing/modules/entities.factories.html
index 61016e3fe..3ba6b1c44 100644
--- a/docs/developing/modules/entities.factories.html
+++ b/docs/developing/modules/entities.factories.html
@@ -5,11 +5,11 @@
- entities.factories module — Source.Python v742 documentation
+ entities.factories module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.factories module
@@ -143,7 +143,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.factories module
diff --git a/docs/developing/modules/entities.helpers.html b/docs/developing/modules/entities.helpers.html
index 1b1a5582b..b9e61fb75 100644
--- a/docs/developing/modules/entities.helpers.html
+++ b/docs/developing/modules/entities.helpers.html
@@ -5,11 +5,11 @@
- entities.helpers module — Source.Python v742 documentation
+ entities.helpers module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.helpers module
@@ -345,7 +345,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.helpers module
diff --git a/docs/developing/modules/entities.hooks.html b/docs/developing/modules/entities.hooks.html
index d2beb95aa..c62065fba 100644
--- a/docs/developing/modules/entities.hooks.html
+++ b/docs/developing/modules/entities.hooks.html
@@ -5,11 +5,11 @@
- entities.hooks module — Source.Python v742 documentation
+ entities.hooks module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.hooks module
@@ -208,7 +208,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.hooks module
diff --git a/docs/developing/modules/entities.html b/docs/developing/modules/entities.html
index 5a158714e..3d65c0936 100644
--- a/docs/developing/modules/entities.html
+++ b/docs/developing/modules/entities.html
@@ -5,11 +5,11 @@
- entities package — Source.Python v742 documentation
+ entities package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities package
@@ -861,7 +861,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities package
diff --git a/docs/developing/modules/entities.props.html b/docs/developing/modules/entities.props.html
index 5a0fc0b92..4b0fa6a2c 100644
--- a/docs/developing/modules/entities.props.html
+++ b/docs/developing/modules/entities.props.html
@@ -5,11 +5,11 @@
- entities.props module — Source.Python v742 documentation
+ entities.props module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.props module
@@ -717,7 +717,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.props module
diff --git a/docs/developing/modules/entities.transmit.html b/docs/developing/modules/entities.transmit.html
index 1ccf23166..01f8f0e90 100644
--- a/docs/developing/modules/entities.transmit.html
+++ b/docs/developing/modules/entities.transmit.html
@@ -5,11 +5,11 @@
- entities.transmit module — Source.Python v742 documentation
+ entities.transmit module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.transmit module
@@ -490,7 +490,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
entities.transmit module
diff --git a/docs/developing/modules/events.custom.html b/docs/developing/modules/events.custom.html
index 742a36874..a57444b7d 100644
--- a/docs/developing/modules/events.custom.html
+++ b/docs/developing/modules/events.custom.html
@@ -5,11 +5,11 @@
- events.custom module — Source.Python v742 documentation
+ events.custom module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.custom module
@@ -128,7 +128,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.custom module
diff --git a/docs/developing/modules/events.hooks.html b/docs/developing/modules/events.hooks.html
index 211682c50..5eece954a 100644
--- a/docs/developing/modules/events.hooks.html
+++ b/docs/developing/modules/events.hooks.html
@@ -5,11 +5,11 @@
- events.hooks module — Source.Python v742 documentation
+ events.hooks module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.hooks module
@@ -170,7 +170,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.hooks module
diff --git a/docs/developing/modules/events.html b/docs/developing/modules/events.html
index da08a980f..67cbd1b75 100644
--- a/docs/developing/modules/events.html
+++ b/docs/developing/modules/events.html
@@ -5,11 +5,11 @@
- events package — Source.Python v742 documentation
+ events package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events package
@@ -418,7 +418,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events package
diff --git a/docs/developing/modules/events.listener.html b/docs/developing/modules/events.listener.html
index 07c6059a5..7d7c127f3 100644
--- a/docs/developing/modules/events.listener.html
+++ b/docs/developing/modules/events.listener.html
@@ -5,11 +5,11 @@
- events.listener module — Source.Python v742 documentation
+ events.listener module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.listener module
@@ -120,7 +120,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.listener module
diff --git a/docs/developing/modules/events.manager.html b/docs/developing/modules/events.manager.html
index ff3389e71..bb31d50ae 100644
--- a/docs/developing/modules/events.manager.html
+++ b/docs/developing/modules/events.manager.html
@@ -5,11 +5,11 @@
- events.manager module — Source.Python v742 documentation
+ events.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.manager module
@@ -97,7 +97,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.manager module
diff --git a/docs/developing/modules/events.resource.html b/docs/developing/modules/events.resource.html
index 85e4c0ba5..d09490a20 100644
--- a/docs/developing/modules/events.resource.html
+++ b/docs/developing/modules/events.resource.html
@@ -5,11 +5,11 @@
- events.resource module — Source.Python v742 documentation
+ events.resource module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.resource module
@@ -135,7 +135,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.resource module
diff --git a/docs/developing/modules/events.variable.html b/docs/developing/modules/events.variable.html
index 7773ca5f0..f2e78c949 100644
--- a/docs/developing/modules/events.variable.html
+++ b/docs/developing/modules/events.variable.html
@@ -5,11 +5,11 @@
- events.variable module — Source.Python v742 documentation
+ events.variable module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.variable module
@@ -186,7 +186,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
events.variable module
diff --git a/docs/developing/modules/filesystem.html b/docs/developing/modules/filesystem.html
index 6bb5c43dd..17af7d5f8 100644
--- a/docs/developing/modules/filesystem.html
+++ b/docs/developing/modules/filesystem.html
@@ -5,11 +5,11 @@
- filesystem module — Source.Python v742 documentation
+ filesystem module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filesystem module
@@ -300,7 +300,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filesystem module
diff --git a/docs/developing/modules/filters.entities.html b/docs/developing/modules/filters.entities.html
index 2ca73b69d..3691c46a6 100644
--- a/docs/developing/modules/filters.entities.html
+++ b/docs/developing/modules/filters.entities.html
@@ -5,11 +5,11 @@
- filters.entities module — Source.Python v742 documentation
+ filters.entities module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.entities module
@@ -131,7 +131,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.entities module
diff --git a/docs/developing/modules/filters.html b/docs/developing/modules/filters.html
index 1ae98d232..0909585be 100644
--- a/docs/developing/modules/filters.html
+++ b/docs/developing/modules/filters.html
@@ -5,11 +5,11 @@
- filters package — Source.Python v742 documentation
+ filters package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters package
@@ -107,7 +107,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters package
diff --git a/docs/developing/modules/filters.iterator.html b/docs/developing/modules/filters.iterator.html
index 64d213d61..8aa7dd9b7 100644
--- a/docs/developing/modules/filters.iterator.html
+++ b/docs/developing/modules/filters.iterator.html
@@ -5,11 +5,11 @@
- filters.iterator module — Source.Python v742 documentation
+ filters.iterator module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.iterator module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.iterator module
diff --git a/docs/developing/modules/filters.players.html b/docs/developing/modules/filters.players.html
index 19cc0cdb6..6d9d7c93f 100644
--- a/docs/developing/modules/filters.players.html
+++ b/docs/developing/modules/filters.players.html
@@ -5,11 +5,11 @@
- filters.players module — Source.Python v742 documentation
+ filters.players module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.players module
@@ -140,7 +140,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.players module
diff --git a/docs/developing/modules/filters.recipients.html b/docs/developing/modules/filters.recipients.html
index f309eea1a..543d1e405 100644
--- a/docs/developing/modules/filters.recipients.html
+++ b/docs/developing/modules/filters.recipients.html
@@ -5,11 +5,11 @@
- filters.recipients module — Source.Python v742 documentation
+ filters.recipients module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.recipients module
@@ -159,7 +159,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.recipients module
diff --git a/docs/developing/modules/filters.weapons.html b/docs/developing/modules/filters.weapons.html
index 1db4eb058..6ee90c11d 100644
--- a/docs/developing/modules/filters.weapons.html
+++ b/docs/developing/modules/filters.weapons.html
@@ -5,11 +5,11 @@
- filters.weapons module — Source.Python v742 documentation
+ filters.weapons module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.weapons module
@@ -124,7 +124,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
filters.weapons module
diff --git a/docs/developing/modules/hooks.base.html b/docs/developing/modules/hooks.base.html
index 0d4965e45..ee294c645 100644
--- a/docs/developing/modules/hooks.base.html
+++ b/docs/developing/modules/hooks.base.html
@@ -5,11 +5,11 @@
- hooks.base module — Source.Python v742 documentation
+ hooks.base module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks.base module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks.base module
diff --git a/docs/developing/modules/hooks.exceptions.html b/docs/developing/modules/hooks.exceptions.html
index 8bf0ae7a0..afb61ffe4 100644
--- a/docs/developing/modules/hooks.exceptions.html
+++ b/docs/developing/modules/hooks.exceptions.html
@@ -5,11 +5,11 @@
- hooks.exceptions module — Source.Python v742 documentation
+ hooks.exceptions module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks.exceptions module
@@ -129,7 +129,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks.exceptions module
diff --git a/docs/developing/modules/hooks.html b/docs/developing/modules/hooks.html
index 18fde3b5d..4ad2722d0 100644
--- a/docs/developing/modules/hooks.html
+++ b/docs/developing/modules/hooks.html
@@ -5,11 +5,11 @@
- hooks package — Source.Python v742 documentation
+ hooks package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks package
@@ -105,7 +105,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks package
diff --git a/docs/developing/modules/hooks.warnings.html b/docs/developing/modules/hooks.warnings.html
index 4fd6bad98..861416544 100644
--- a/docs/developing/modules/hooks.warnings.html
+++ b/docs/developing/modules/hooks.warnings.html
@@ -5,11 +5,11 @@
- hooks.warnings module — Source.Python v742 documentation
+ hooks.warnings module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks.warnings module
@@ -130,7 +130,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
hooks.warnings module
diff --git a/docs/developing/modules/keyvalues.html b/docs/developing/modules/keyvalues.html
index 9f8fc6e4c..09e606a9b 100644
--- a/docs/developing/modules/keyvalues.html
+++ b/docs/developing/modules/keyvalues.html
@@ -5,11 +5,11 @@
- keyvalues module — Source.Python v742 documentation
+ keyvalues module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
keyvalues module
@@ -457,7 +457,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
keyvalues module
diff --git a/docs/developing/modules/listeners.html b/docs/developing/modules/listeners.html
index 6c44e94e3..36bf5cca2 100644
--- a/docs/developing/modules/listeners.html
+++ b/docs/developing/modules/listeners.html
@@ -5,11 +5,11 @@
- listeners package — Source.Python v742 documentation
+ listeners package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
listeners package
@@ -937,7 +937,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
listeners package
diff --git a/docs/developing/modules/listeners.tick.html b/docs/developing/modules/listeners.tick.html
index f70820443..c99c79b13 100644
--- a/docs/developing/modules/listeners.tick.html
+++ b/docs/developing/modules/listeners.tick.html
@@ -5,11 +5,11 @@
- listeners.tick package — Source.Python v742 documentation
+ listeners.tick package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
listeners.tick package
@@ -514,7 +514,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
listeners.tick package
diff --git a/docs/developing/modules/loggers.html b/docs/developing/modules/loggers.html
index 62546a0ac..cb613bf1f 100644
--- a/docs/developing/modules/loggers.html
+++ b/docs/developing/modules/loggers.html
@@ -5,11 +5,11 @@
- loggers module — Source.Python v742 documentation
+ loggers module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
loggers module
@@ -144,7 +144,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
loggers module
diff --git a/docs/developing/modules/mathlib.html b/docs/developing/modules/mathlib.html
index 353085139..a875046eb 100644
--- a/docs/developing/modules/mathlib.html
+++ b/docs/developing/modules/mathlib.html
@@ -5,11 +5,11 @@
- mathlib module — Source.Python v742 documentation
+ mathlib module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
mathlib module
@@ -639,7 +639,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
mathlib module
diff --git a/docs/developing/modules/memory.helpers.html b/docs/developing/modules/memory.helpers.html
index 245dd6f2c..2414c857a 100644
--- a/docs/developing/modules/memory.helpers.html
+++ b/docs/developing/modules/memory.helpers.html
@@ -5,11 +5,11 @@
- memory.helpers module — Source.Python v742 documentation
+ memory.helpers module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory.helpers module
@@ -468,7 +468,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory.helpers module
diff --git a/docs/developing/modules/memory.hooks.html b/docs/developing/modules/memory.hooks.html
index e88f8d627..5b5d42feb 100644
--- a/docs/developing/modules/memory.hooks.html
+++ b/docs/developing/modules/memory.hooks.html
@@ -5,11 +5,11 @@
- memory.hooks module — Source.Python v742 documentation
+ memory.hooks module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory.hooks module
@@ -251,7 +251,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory.hooks module
diff --git a/docs/developing/modules/memory.html b/docs/developing/modules/memory.html
index d011a724b..3b8133938 100644
--- a/docs/developing/modules/memory.html
+++ b/docs/developing/modules/memory.html
@@ -5,11 +5,11 @@
- memory package — Source.Python v742 documentation
+ memory package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory package
@@ -1959,7 +1959,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory package
diff --git a/docs/developing/modules/memory.manager.html b/docs/developing/modules/memory.manager.html
index d23360dcb..9dabf156e 100644
--- a/docs/developing/modules/memory.manager.html
+++ b/docs/developing/modules/memory.manager.html
@@ -5,11 +5,11 @@
- memory.manager module — Source.Python v742 documentation
+ memory.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory.manager module
@@ -398,7 +398,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
memory.manager module
diff --git a/docs/developing/modules/menus.base.html b/docs/developing/modules/menus.base.html
index 323ab9836..7a2fb94b5 100644
--- a/docs/developing/modules/menus.base.html
+++ b/docs/developing/modules/menus.base.html
@@ -5,11 +5,11 @@
- menus.base module — Source.Python v742 documentation
+ menus.base module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.base module
@@ -98,7 +98,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.base module
diff --git a/docs/developing/modules/menus.esc.html b/docs/developing/modules/menus.esc.html
index f47bb5181..6a49d889c 100644
--- a/docs/developing/modules/menus.esc.html
+++ b/docs/developing/modules/menus.esc.html
@@ -5,11 +5,11 @@
- menus.esc module — Source.Python v742 documentation
+ menus.esc module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.esc module
@@ -265,7 +265,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.esc module
diff --git a/docs/developing/modules/menus.html b/docs/developing/modules/menus.html
index fd4e13ef2..45e42eee1 100644
--- a/docs/developing/modules/menus.html
+++ b/docs/developing/modules/menus.html
@@ -5,11 +5,11 @@
- menus package — Source.Python v742 documentation
+ menus package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus package
@@ -158,7 +158,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus package
diff --git a/docs/developing/modules/menus.queue.html b/docs/developing/modules/menus.queue.html
index e4944c3cc..da24fbaea 100644
--- a/docs/developing/modules/menus.queue.html
+++ b/docs/developing/modules/menus.queue.html
@@ -5,11 +5,11 @@
- menus.queue module — Source.Python v742 documentation
+ menus.queue module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.queue module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.queue module
diff --git a/docs/developing/modules/menus.radio.html b/docs/developing/modules/menus.radio.html
index 528ca426c..968dfcc26 100644
--- a/docs/developing/modules/menus.radio.html
+++ b/docs/developing/modules/menus.radio.html
@@ -5,11 +5,11 @@
- menus.radio module — Source.Python v742 documentation
+ menus.radio module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.radio module
@@ -248,7 +248,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
menus.radio module
diff --git a/docs/developing/modules/messages.base.html b/docs/developing/modules/messages.base.html
index 0208f6f50..5c474cb96 100644
--- a/docs/developing/modules/messages.base.html
+++ b/docs/developing/modules/messages.base.html
@@ -5,11 +5,11 @@
- messages.base module — Source.Python v742 documentation
+ messages.base module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.base module
@@ -680,7 +680,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.base module
diff --git a/docs/developing/modules/messages.dialog.html b/docs/developing/modules/messages.dialog.html
index f9763f63c..a3eb23b51 100644
--- a/docs/developing/modules/messages.dialog.html
+++ b/docs/developing/modules/messages.dialog.html
@@ -5,11 +5,11 @@
- messages.base module — Source.Python v742 documentation
+ messages.base module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.base module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.base module
diff --git a/docs/developing/modules/messages.hooks.html b/docs/developing/modules/messages.hooks.html
index 9c7eccec3..3f8a74b7e 100644
--- a/docs/developing/modules/messages.hooks.html
+++ b/docs/developing/modules/messages.hooks.html
@@ -5,11 +5,11 @@
- messages.hooks module — Source.Python v742 documentation
+ messages.hooks module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.hooks module
@@ -195,7 +195,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.hooks module
diff --git a/docs/developing/modules/messages.html b/docs/developing/modules/messages.html
index 474f85970..163394294 100644
--- a/docs/developing/modules/messages.html
+++ b/docs/developing/modules/messages.html
@@ -5,11 +5,11 @@
- messages package — Source.Python v742 documentation
+ messages package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages package
@@ -1169,7 +1169,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages package
diff --git a/docs/developing/modules/messages.impl.html b/docs/developing/modules/messages.impl.html
index 19b12f67a..5b7ef28ed 100644
--- a/docs/developing/modules/messages.impl.html
+++ b/docs/developing/modules/messages.impl.html
@@ -5,11 +5,11 @@
- messages.impl module — Source.Python v742 documentation
+ messages.impl module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.impl module
@@ -453,7 +453,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
messages.impl module
diff --git a/docs/developing/modules/net_channel.html b/docs/developing/modules/net_channel.html
index 9faca20b1..cf6395d97 100644
--- a/docs/developing/modules/net_channel.html
+++ b/docs/developing/modules/net_channel.html
@@ -5,11 +5,11 @@
- net_channel module — Source.Python v742 documentation
+ net_channel module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
net_channel module
@@ -465,7 +465,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
net_channel module
diff --git a/docs/developing/modules/paths.html b/docs/developing/modules/paths.html
index 607110de1..867e2b489 100644
--- a/docs/developing/modules/paths.html
+++ b/docs/developing/modules/paths.html
@@ -5,11 +5,11 @@
- paths module — Source.Python v742 documentation
+ paths module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
paths module
@@ -230,7 +230,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
paths module
diff --git a/docs/developing/modules/physics.html b/docs/developing/modules/physics.html
index 6a9413555..05179956b 100644
--- a/docs/developing/modules/physics.html
+++ b/docs/developing/modules/physics.html
@@ -5,11 +5,11 @@
- physics module — Source.Python v742 documentation
+ physics module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
physics module
@@ -382,7 +382,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
physics module
diff --git a/docs/developing/modules/players._base.html b/docs/developing/modules/players._base.html
index f3ed3a9f8..36085ca0b 100644
--- a/docs/developing/modules/players._base.html
+++ b/docs/developing/modules/players._base.html
@@ -5,11 +5,11 @@
- players._base module — Source.Python v742 documentation
+ players._base module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players._base module
@@ -826,7 +826,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players._base module
diff --git a/docs/developing/modules/players.bots.html b/docs/developing/modules/players.bots.html
index b6da86166..522b4e6ef 100644
--- a/docs/developing/modules/players.bots.html
+++ b/docs/developing/modules/players.bots.html
@@ -5,11 +5,11 @@
- players.bots module — Source.Python v742 documentation
+ players.bots module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.bots module
@@ -283,7 +283,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.bots module
diff --git a/docs/developing/modules/players.constants.html b/docs/developing/modules/players.constants.html
index d595835f4..51019b300 100644
--- a/docs/developing/modules/players.constants.html
+++ b/docs/developing/modules/players.constants.html
@@ -5,11 +5,11 @@
- players.constants module — Source.Python v742 documentation
+ players.constants module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.constants module
@@ -679,7 +679,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.constants module
diff --git a/docs/developing/modules/players.dictionary.html b/docs/developing/modules/players.dictionary.html
index ff74d4a27..cfa4b4cf5 100644
--- a/docs/developing/modules/players.dictionary.html
+++ b/docs/developing/modules/players.dictionary.html
@@ -5,11 +5,11 @@
- players.dictionary module — Source.Python v742 documentation
+ players.dictionary module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.dictionary module
@@ -134,7 +134,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.dictionary module
diff --git a/docs/developing/modules/players.engines.bms.html b/docs/developing/modules/players.engines.bms.html
index c689ff08f..4e65457b8 100644
--- a/docs/developing/modules/players.engines.bms.html
+++ b/docs/developing/modules/players.engines.bms.html
@@ -5,11 +5,11 @@
- players.engines.bms package — Source.Python v742 documentation
+ players.engines.bms package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.bms package
@@ -119,7 +119,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.bms package
diff --git a/docs/developing/modules/players.engines.csgo.html b/docs/developing/modules/players.engines.csgo.html
index c5ebcb24d..762e58250 100644
--- a/docs/developing/modules/players.engines.csgo.html
+++ b/docs/developing/modules/players.engines.csgo.html
@@ -5,11 +5,11 @@
- players.engines.csgo package — Source.Python v742 documentation
+ players.engines.csgo package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.csgo package
@@ -93,7 +93,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.csgo package
diff --git a/docs/developing/modules/players.engines.html b/docs/developing/modules/players.engines.html
index 5fe1ce9e6..338bf95a6 100644
--- a/docs/developing/modules/players.engines.html
+++ b/docs/developing/modules/players.engines.html
@@ -5,11 +5,11 @@
- players.engines package — Source.Python v742 documentation
+ players.engines package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines package
@@ -107,7 +107,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines package
diff --git a/docs/developing/modules/players.engines.l4d2.html b/docs/developing/modules/players.engines.l4d2.html
index 995f8439e..d7c293f7f 100644
--- a/docs/developing/modules/players.engines.l4d2.html
+++ b/docs/developing/modules/players.engines.l4d2.html
@@ -5,11 +5,11 @@
- players.engines.l4d2 package — Source.Python v742 documentation
+ players.engines.l4d2 package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.l4d2 package
@@ -119,7 +119,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.l4d2 package
diff --git a/docs/developing/modules/players.engines.orangebox.cstrike.html b/docs/developing/modules/players.engines.orangebox.cstrike.html
index dffa897d6..ac56a4ffb 100644
--- a/docs/developing/modules/players.engines.orangebox.cstrike.html
+++ b/docs/developing/modules/players.engines.orangebox.cstrike.html
@@ -5,11 +5,11 @@
- players.engines.orangebox.cstrike module — Source.Python v742 documentation
+ players.engines.orangebox.cstrike module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.orangebox.cstrike module
@@ -125,7 +125,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.orangebox.cstrike module
diff --git a/docs/developing/modules/players.engines.orangebox.html b/docs/developing/modules/players.engines.orangebox.html
index 89d38d841..8ec1d89d2 100644
--- a/docs/developing/modules/players.engines.orangebox.html
+++ b/docs/developing/modules/players.engines.orangebox.html
@@ -5,11 +5,11 @@
- players.engines.orangebox package — Source.Python v742 documentation
+ players.engines.orangebox package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.orangebox package
@@ -128,7 +128,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.engines.orangebox package
diff --git a/docs/developing/modules/players.entity.html b/docs/developing/modules/players.entity.html
index df2c16c37..da9297b66 100644
--- a/docs/developing/modules/players.entity.html
+++ b/docs/developing/modules/players.entity.html
@@ -5,11 +5,11 @@
- players.entity module — Source.Python v742 documentation
+ players.entity module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.entity module
@@ -125,7 +125,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.entity module
diff --git a/docs/developing/modules/players.helpers.html b/docs/developing/modules/players.helpers.html
index fc4a5be3c..f5b4d5721 100644
--- a/docs/developing/modules/players.helpers.html
+++ b/docs/developing/modules/players.helpers.html
@@ -5,11 +5,11 @@
- players.helpers module — Source.Python v742 documentation
+ players.helpers module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.helpers module
@@ -326,7 +326,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.helpers module
diff --git a/docs/developing/modules/players.html b/docs/developing/modules/players.html
index d33190b5e..13d57eccc 100644
--- a/docs/developing/modules/players.html
+++ b/docs/developing/modules/players.html
@@ -5,11 +5,11 @@
- players package — Source.Python v742 documentation
+ players package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players package
@@ -610,7 +610,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players package
diff --git a/docs/developing/modules/players.teams.html b/docs/developing/modules/players.teams.html
index c189a5a37..6f2bae5da 100644
--- a/docs/developing/modules/players.teams.html
+++ b/docs/developing/modules/players.teams.html
@@ -5,11 +5,11 @@
- players.teams module — Source.Python v742 documentation
+ players.teams module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.teams module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.teams module
diff --git a/docs/developing/modules/players.voice.html b/docs/developing/modules/players.voice.html
index 1226e10d8..522f91cb4 100644
--- a/docs/developing/modules/players.voice.html
+++ b/docs/developing/modules/players.voice.html
@@ -5,11 +5,11 @@
- players.voice module — Source.Python v742 documentation
+ players.voice module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.voice module
@@ -97,7 +97,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
players.voice module
diff --git a/docs/developing/modules/plugins.command.html b/docs/developing/modules/plugins.command.html
index af26e2a92..4571c09b5 100644
--- a/docs/developing/modules/plugins.command.html
+++ b/docs/developing/modules/plugins.command.html
@@ -5,11 +5,11 @@
- plugins.command module — Source.Python v742 documentation
+ plugins.command module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.command module
@@ -257,7 +257,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.command module
diff --git a/docs/developing/modules/plugins.html b/docs/developing/modules/plugins.html
index cb727b487..c25ef7a38 100644
--- a/docs/developing/modules/plugins.html
+++ b/docs/developing/modules/plugins.html
@@ -5,11 +5,11 @@
- plugins package — Source.Python v742 documentation
+ plugins package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins package
@@ -106,7 +106,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins package
diff --git a/docs/developing/modules/plugins.info.html b/docs/developing/modules/plugins.info.html
index d7920732c..d0e5cb43e 100644
--- a/docs/developing/modules/plugins.info.html
+++ b/docs/developing/modules/plugins.info.html
@@ -5,11 +5,11 @@
- plugins.info module — Source.Python v742 documentation
+ plugins.info module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.info module
@@ -197,7 +197,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.info module
diff --git a/docs/developing/modules/plugins.instance.html b/docs/developing/modules/plugins.instance.html
index 4d78a05bf..97f85ee67 100644
--- a/docs/developing/modules/plugins.instance.html
+++ b/docs/developing/modules/plugins.instance.html
@@ -5,11 +5,11 @@
- plugins.instance module — Source.Python v742 documentation
+ plugins.instance module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.instance module
@@ -179,7 +179,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.instance module
diff --git a/docs/developing/modules/plugins.manager.html b/docs/developing/modules/plugins.manager.html
index 6af0ecc75..4f9c7d2ad 100644
--- a/docs/developing/modules/plugins.manager.html
+++ b/docs/developing/modules/plugins.manager.html
@@ -5,11 +5,11 @@
- plugins.manager module — Source.Python v742 documentation
+ plugins.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.manager module
@@ -374,7 +374,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
plugins.manager module
diff --git a/docs/developing/modules/public.html b/docs/developing/modules/public.html
index a8a2a3486..34a60689a 100644
--- a/docs/developing/modules/public.html
+++ b/docs/developing/modules/public.html
@@ -5,11 +5,11 @@
- public module — Source.Python v742 documentation
+ public module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
public module
@@ -97,7 +97,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
public module
diff --git a/docs/developing/modules/settings.html b/docs/developing/modules/settings.html
index 24bfc10d5..0c22d7934 100644
--- a/docs/developing/modules/settings.html
+++ b/docs/developing/modules/settings.html
@@ -5,11 +5,11 @@
- settings package — Source.Python v742 documentation
+ settings package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings package
@@ -106,7 +106,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings package
diff --git a/docs/developing/modules/settings.menu.html b/docs/developing/modules/settings.menu.html
index acc4a4b9e..2260d41a4 100644
--- a/docs/developing/modules/settings.menu.html
+++ b/docs/developing/modules/settings.menu.html
@@ -5,11 +5,11 @@
- settings.menu module — Source.Python v742 documentation
+ settings.menu module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.menu module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.menu module
diff --git a/docs/developing/modules/settings.player.html b/docs/developing/modules/settings.player.html
index c6b8d8a9b..a998769a9 100644
--- a/docs/developing/modules/settings.player.html
+++ b/docs/developing/modules/settings.player.html
@@ -5,11 +5,11 @@
- settings.player module — Source.Python v742 documentation
+ settings.player module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.player module
@@ -114,7 +114,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.player module
diff --git a/docs/developing/modules/settings.storage.html b/docs/developing/modules/settings.storage.html
index 132de7612..4ec50eadb 100644
--- a/docs/developing/modules/settings.storage.html
+++ b/docs/developing/modules/settings.storage.html
@@ -5,11 +5,11 @@
- settings.storage module — Source.Python v742 documentation
+ settings.storage module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.storage module
@@ -81,7 +81,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.storage module
diff --git a/docs/developing/modules/settings.types.html b/docs/developing/modules/settings.types.html
index 4d8868465..455f390c4 100644
--- a/docs/developing/modules/settings.types.html
+++ b/docs/developing/modules/settings.types.html
@@ -5,11 +5,11 @@
- settings.types module — Source.Python v742 documentation
+ settings.types module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.types module
@@ -197,7 +197,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
settings.types module
diff --git a/docs/developing/modules/source-python.html b/docs/developing/modules/source-python.html
index c23fb7f16..2cdd0e596 100644
--- a/docs/developing/modules/source-python.html
+++ b/docs/developing/modules/source-python.html
@@ -5,11 +5,11 @@
- source-python package — Source.Python v742 documentation
+ source-python package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
source-python package
@@ -4943,7 +4943,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
source-python package
diff --git a/docs/developing/modules/steam.html b/docs/developing/modules/steam.html
index f8c39702a..0baa17d8a 100644
--- a/docs/developing/modules/steam.html
+++ b/docs/developing/modules/steam.html
@@ -5,11 +5,11 @@
- steam module — Source.Python v742 documentation
+ steam module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
steam module
@@ -504,7 +504,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
steam module
diff --git a/docs/developing/modules/stringtables.downloads.html b/docs/developing/modules/stringtables.downloads.html
index 69dba0c32..440aa3889 100644
--- a/docs/developing/modules/stringtables.downloads.html
+++ b/docs/developing/modules/stringtables.downloads.html
@@ -5,11 +5,11 @@
- stringtables.downloads module — Source.Python v742 documentation
+ stringtables.downloads module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
stringtables.downloads module
@@ -149,7 +149,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
stringtables.downloads module
diff --git a/docs/developing/modules/stringtables.html b/docs/developing/modules/stringtables.html
index 625c4898e..226714c52 100644
--- a/docs/developing/modules/stringtables.html
+++ b/docs/developing/modules/stringtables.html
@@ -5,11 +5,11 @@
- stringtables package — Source.Python v742 documentation
+ stringtables package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
stringtables package
@@ -204,7 +204,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
stringtables package
diff --git a/docs/developing/modules/studio.cache.html b/docs/developing/modules/studio.cache.html
index 848079597..9228cf9c7 100644
--- a/docs/developing/modules/studio.cache.html
+++ b/docs/developing/modules/studio.cache.html
@@ -5,11 +5,11 @@
- studio.cache module — Source.Python v742 documentation
+ studio.cache module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
studio.cache module
@@ -206,7 +206,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
studio.cache module
diff --git a/docs/developing/modules/studio.constants.html b/docs/developing/modules/studio.constants.html
index da10cf557..0f35278f1 100644
--- a/docs/developing/modules/studio.constants.html
+++ b/docs/developing/modules/studio.constants.html
@@ -5,11 +5,11 @@
- studio.constants module — Source.Python v742 documentation
+ studio.constants module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
studio.constants module
@@ -217,7 +217,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
studio.constants module
diff --git a/docs/developing/modules/studio.html b/docs/developing/modules/studio.html
index 0b564e194..796371ae1 100644
--- a/docs/developing/modules/studio.html
+++ b/docs/developing/modules/studio.html
@@ -5,11 +5,11 @@
- studio package — Source.Python v742 documentation
+ studio package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
studio package
@@ -1171,7 +1171,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
studio package
diff --git a/docs/developing/modules/translations.html b/docs/developing/modules/translations.html
index 45a87e853..056a0a498 100644
--- a/docs/developing/modules/translations.html
+++ b/docs/developing/modules/translations.html
@@ -5,11 +5,11 @@
- translations package — Source.Python v742 documentation
+ translations package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
translations package
@@ -104,7 +104,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
translations package
diff --git a/docs/developing/modules/translations.manager.html b/docs/developing/modules/translations.manager.html
index b5acc7944..44781f82a 100644
--- a/docs/developing/modules/translations.manager.html
+++ b/docs/developing/modules/translations.manager.html
@@ -5,11 +5,11 @@
- translations.manager module — Source.Python v742 documentation
+ translations.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
translations.manager module
@@ -97,7 +97,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
translations.manager module
diff --git a/docs/developing/modules/translations.strings.html b/docs/developing/modules/translations.strings.html
index e7d31ef52..b32279032 100644
--- a/docs/developing/modules/translations.strings.html
+++ b/docs/developing/modules/translations.strings.html
@@ -5,11 +5,11 @@
- translations.strings module — Source.Python v742 documentation
+ translations.strings module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
translations.strings module
@@ -163,7 +163,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
translations.strings module
diff --git a/docs/developing/modules/weapons.constants.html b/docs/developing/modules/weapons.constants.html
index 434831246..2e671adcd 100644
--- a/docs/developing/modules/weapons.constants.html
+++ b/docs/developing/modules/weapons.constants.html
@@ -5,11 +5,11 @@
- weapons.constants module — Source.Python v742 documentation
+ weapons.constants module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.constants module
@@ -728,7 +728,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.constants module
diff --git a/docs/developing/modules/weapons.default.html b/docs/developing/modules/weapons.default.html
index a746be792..2949d1fbd 100644
--- a/docs/developing/modules/weapons.default.html
+++ b/docs/developing/modules/weapons.default.html
@@ -5,11 +5,11 @@
- weapons.default module — Source.Python v742 documentation
+ weapons.default module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.default module
@@ -98,7 +98,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.default module
diff --git a/docs/developing/modules/weapons.dictionary.html b/docs/developing/modules/weapons.dictionary.html
index 5a83a7cc2..74f5824a4 100644
--- a/docs/developing/modules/weapons.dictionary.html
+++ b/docs/developing/modules/weapons.dictionary.html
@@ -5,11 +5,11 @@
- weapons.dictionary module — Source.Python v742 documentation
+ weapons.dictionary module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.dictionary module
@@ -119,7 +119,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.dictionary module
diff --git a/docs/developing/modules/weapons.engines.csgo.csgo.html b/docs/developing/modules/weapons.engines.csgo.csgo.html
index 2e85cdc84..23c308c34 100644
--- a/docs/developing/modules/weapons.engines.csgo.csgo.html
+++ b/docs/developing/modules/weapons.engines.csgo.csgo.html
@@ -5,11 +5,11 @@
- weapons.engines.csgo.csgo module — Source.Python v742 documentation
+ weapons.engines.csgo.csgo module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.engines.csgo.csgo module
@@ -144,7 +144,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.engines.csgo.csgo module
diff --git a/docs/developing/modules/weapons.engines.csgo.html b/docs/developing/modules/weapons.engines.csgo.html
index 4b7b83984..7d46a76ff 100644
--- a/docs/developing/modules/weapons.engines.csgo.html
+++ b/docs/developing/modules/weapons.engines.csgo.html
@@ -5,11 +5,11 @@
- weapons.engines.csgo package — Source.Python v742 documentation
+ weapons.engines.csgo package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.engines.csgo package
@@ -104,7 +104,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.engines.csgo package
diff --git a/docs/developing/modules/weapons.engines.html b/docs/developing/modules/weapons.engines.html
index 649f9552c..257f53721 100644
--- a/docs/developing/modules/weapons.engines.html
+++ b/docs/developing/modules/weapons.engines.html
@@ -5,11 +5,11 @@
- weapons.engines package — Source.Python v742 documentation
+ weapons.engines package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.engines package
@@ -103,7 +103,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.engines package
diff --git a/docs/developing/modules/weapons.entity.html b/docs/developing/modules/weapons.entity.html
index c452f26b3..af825eddf 100644
--- a/docs/developing/modules/weapons.entity.html
+++ b/docs/developing/modules/weapons.entity.html
@@ -5,11 +5,11 @@
- weapons.entity module — Source.Python v742 documentation
+ weapons.entity module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.entity module
@@ -383,7 +383,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.entity module
diff --git a/docs/developing/modules/weapons.html b/docs/developing/modules/weapons.html
index 2a4d1729d..3107580a6 100644
--- a/docs/developing/modules/weapons.html
+++ b/docs/developing/modules/weapons.html
@@ -5,11 +5,11 @@
- weapons package — Source.Python v742 documentation
+ weapons package — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons package
@@ -114,7 +114,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons package
diff --git a/docs/developing/modules/weapons.instance.html b/docs/developing/modules/weapons.instance.html
index 52da7ad4b..6041a0e52 100644
--- a/docs/developing/modules/weapons.instance.html
+++ b/docs/developing/modules/weapons.instance.html
@@ -5,11 +5,11 @@
- weapons.instance module — Source.Python v742 documentation
+ weapons.instance module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.instance module
@@ -281,7 +281,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.instance module
diff --git a/docs/developing/modules/weapons.manager.html b/docs/developing/modules/weapons.manager.html
index c515cf86f..b72bc3dd9 100644
--- a/docs/developing/modules/weapons.manager.html
+++ b/docs/developing/modules/weapons.manager.html
@@ -5,11 +5,11 @@
- weapons.manager module — Source.Python v742 documentation
+ weapons.manager module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.manager module
@@ -99,7 +99,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.manager module
diff --git a/docs/developing/modules/weapons.restrictions.html b/docs/developing/modules/weapons.restrictions.html
index 120136c67..7c8931947 100644
--- a/docs/developing/modules/weapons.restrictions.html
+++ b/docs/developing/modules/weapons.restrictions.html
@@ -5,11 +5,11 @@
- weapons.restrictions module — Source.Python v742 documentation
+ weapons.restrictions module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.restrictions module
@@ -314,7 +314,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.restrictions module
diff --git a/docs/developing/modules/weapons.scripts.html b/docs/developing/modules/weapons.scripts.html
index b03772b06..77d3ba8b2 100644
--- a/docs/developing/modules/weapons.scripts.html
+++ b/docs/developing/modules/weapons.scripts.html
@@ -5,11 +5,11 @@
- weapons.scripts module — Source.Python v742 documentation
+ weapons.scripts module — Source.Python v743 documentation
-
+
@@ -26,7 +26,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.scripts module
@@ -827,7 +827,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
weapons.scripts module
diff --git a/docs/general/config-auth.html b/docs/general/config-auth.html
index 40b05fb2c..8c801451c 100644
--- a/docs/general/config-auth.html
+++ b/docs/general/config-auth.html
@@ -5,11 +5,11 @@
- Configuring authorization — Source.Python v742 documentation
+ Configuring authorization — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Configuring authorization
@@ -356,7 +356,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Configuring authorization
diff --git a/docs/general/credits.html b/docs/general/credits.html
index f1352de5c..8a8bec93d 100644
--- a/docs/general/credits.html
+++ b/docs/general/credits.html
@@ -5,11 +5,11 @@
- Credits — Source.Python v742 documentation
+ Credits — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Credits
@@ -287,7 +287,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Credits
diff --git a/docs/general/installation.html b/docs/general/installation.html
index 8c6cdb250..411159ad5 100644
--- a/docs/general/installation.html
+++ b/docs/general/installation.html
@@ -5,11 +5,11 @@
- Installation — Source.Python v742 documentation
+ Installation — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Installation
@@ -77,7 +77,7 @@ Windows
-If you are having problems installing Source.Python (e. g. Unknown command "sp" ), please let us know on our forums !
+If you are having problems installing Source.Python (e. g. Unknown command "sp" ), please let us know on GitHub !
@@ -174,7 +174,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Installation
diff --git a/docs/general/known-issues.html b/docs/general/known-issues.html
index 6a207edeb..1e1c646eb 100644
--- a/docs/general/known-issues.html
+++ b/docs/general/known-issues.html
@@ -5,11 +5,11 @@
- Known issues — Source.Python v742 documentation
+ Known issues — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Known issues
@@ -129,7 +129,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Known issues
diff --git a/docs/general/reporting-a-bug.html b/docs/general/reporting-a-bug.html
index dd753840d..0ed6be6ee 100644
--- a/docs/general/reporting-a-bug.html
+++ b/docs/general/reporting-a-bug.html
@@ -5,11 +5,11 @@
- Reporting a bug — Source.Python v742 documentation
+ Reporting a bug — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Reporting a bug
@@ -116,7 +116,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Reporting a bug
diff --git a/docs/general/sp-commands.html b/docs/general/sp-commands.html
index 331abbdc0..ffb24797b 100644
--- a/docs/general/sp-commands.html
+++ b/docs/general/sp-commands.html
@@ -5,11 +5,11 @@
- Console commands — Source.Python v742 documentation
+ Console commands — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Console commands
@@ -561,7 +561,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Console commands
diff --git a/docs/general/updating.html b/docs/general/updating.html
index ac80f7e9d..6e6eb4c71 100644
--- a/docs/general/updating.html
+++ b/docs/general/updating.html
@@ -5,11 +5,11 @@
- Updating — Source.Python v742 documentation
+ Updating — Source.Python v743 documentation
-
+
@@ -34,7 +34,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Updating
@@ -133,7 +133,7 @@ Navigation
previous |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Updating
diff --git a/docs/genindex.html b/docs/genindex.html
index 82027304a..44bbe8424 100644
--- a/docs/genindex.html
+++ b/docs/genindex.html
@@ -4,11 +4,11 @@
- Index — Source.Python v742 documentation
+ Index — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Index
@@ -9806,7 +9806,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Index
diff --git a/docs/index.html b/docs/index.html
index db045a469..becc4fde1 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -5,11 +5,11 @@
- Source.Python documentation — Source.Python v742 documentation
+ Source.Python documentation — Source.Python v743 documentation
-
+
@@ -30,7 +30,7 @@ Navigation
next |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Source.Python documentation
@@ -45,11 +45,7 @@ Source.Python documentation. If you cannot find the
-answer to your question, please post a question of your own in the appropriate
-forum.
+documentation on how to install, update, and use Source.Python.
Source.Python is currently embedding Python 3.13 and will be upgraded from
time to time.
@@ -139,7 +135,8 @@ Other helpful links