Update to v0.10 and some minor grammar fixes

This commit is contained in:
Lonami Exo 2017-06-03 13:36:41 +02:00
parent b472421b8a
commit 7acfd0c6c9
3 changed files with 8 additions and 6 deletions

View File

@ -10,7 +10,9 @@ from ..utils import BinaryReader, BinaryWriter
def do_authentication(transport): def do_authentication(transport):
"""Executes the authentication process with the Telegram servers. """Executes the authentication process with the Telegram servers.
If no error is rose, returns both the authorization key and the time offset""" If no error is raised, returns both the authorization key and the
time offset.
"""
sender = MtProtoPlainSender(transport) sender = MtProtoPlainSender(transport)
sender.connect() sender.connect()

View File

@ -46,7 +46,7 @@ from .utils import (find_user_or_chat, get_input_peer,
class TelegramClient: class TelegramClient:
# Current TelegramClient version # Current TelegramClient version
__version__ = '0.9.1' __version__ = '0.10'
# region Initialization # region Initialization
@ -228,7 +228,7 @@ class TelegramClient:
current authorization is exported to the new DC so that current authorization is exported to the new DC so that
it can be used there, and the connection is initialized. it can be used there, and the connection is initialized.
If after using the sender a ConnectionResetError is rose, If after using the sender a ConnectionResetError is raised,
this method should be called again with init_connection=True this method should be called again with init_connection=True
in order to perform the reconnection.""" in order to perform the reconnection."""
# Thanks badoualy/kotlogram on /telegram/api/DefaultTelegramClient.kt # Thanks badoualy/kotlogram on /telegram/api/DefaultTelegramClient.kt
@ -350,8 +350,8 @@ class TelegramClient:
"""Invokes the given request on a different DC """Invokes the given request on a different DC
by making use of the exported MtProtoSenders. by making use of the exported MtProtoSenders.
If 'reconnect=True', then the a reconnection will be performed If 'reconnect=True', then the a reconnection will be performed and
and ConnectionResetError will be rose if it occurs a second time. ConnectionResetError will be raised if it occurs a second time.
""" """
try: try:
sender = self._get_exported_sender( sender = self._get_exported_sender(

View File

@ -45,7 +45,7 @@ def get_extension(media):
def get_input_peer(entity): def get_input_peer(entity):
"""Gets the input peer for the given "entity" (user, chat or channel). """Gets the input peer for the given "entity" (user, chat or channel).
A ValueError is rose if the given entity isn't a supported type.""" A ValueError is raised if the given entity isn't a supported type."""
if (isinstance(entity, InputPeerUser) or if (isinstance(entity, InputPeerUser) or
isinstance(entity, InputPeerChat) or isinstance(entity, InputPeerChat) or
isinstance(entity, InputPeerChannel)): isinstance(entity, InputPeerChannel)):