Skip to content

Commit eb557e0

Browse files
committed
Keeping features under development off this release
2 parents a7ac419 + 7f790c3 commit eb557e0

File tree

11 files changed

+17
-334
lines changed

11 files changed

+17
-334
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2015-09-05
2+
Released 2.8.2
3+
Fix regression on Telegram ReplyMarkup
4+
Add certificate to is_inputfile method
5+
6+
17
2015-09-05
28
Released 2.8.1
39
Fix regression on Telegram objects with thumb properties

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,9 @@ You may copy, distribute and modify the software provided that modifications are
268268
_`Contact`
269269
==========
270270

271-
Feel free to join to our `Telegram group <https://telegram.me/joinchat/00b9c0f802509b94d52953d3fa1ec504>`_.
271+
Feel free to join to our `Telegram group <https://telegram.me/joinchat/00b9c0f802509b946b2e8e98b73e19be>`_.
272272

273-
*If you face trouble joining in the group please ping me on Telegram (@leandrotoledo), I'll be glad to add you.*
273+
If you face trouble joining in the group please ping me `via Telegram <https://telegram.me/leandrotoledo>`_, I'll be glad to add you.
274274

275275
=======
276276
_`TODO`

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '2.8'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '2.8.1'
63+
release = '2.8.2'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

examples/command_handler_example.py

Lines changed: 0 additions & 87 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def read(*paths):
1515

1616
setup(
1717
name='python-telegram-bot',
18-
version='2.8.1',
18+
version='2.8.2',
1919
author='Leandro Toledo',
2020
author_email='[email protected]',
2121
license='LGPLv3',

telegram/__init__.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"""A library that provides a Python interface to the Telegram Bot API"""
2020

2121
__author__ = '[email protected]'
22-
__version__ = '2.8.1'
22+
__version__ = '2.8.2'
2323

2424
from .base import TelegramObject
2525
from .user import User
@@ -46,12 +46,10 @@
4646
from .message import Message
4747
from .update import Update
4848
from .bot import Bot
49-
from .command_handler import *
5049

5150
__all__ = ['Bot', 'Emoji', 'TelegramError', 'InputFile', 'ReplyMarkup',
5251
'ForceReply', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup',
5352
'UserProfilePhotos', 'ChatAction', 'Location', 'Contact',
5453
'Video', 'Sticker', 'Document', 'Audio', 'PhotoSize', 'GroupChat',
55-
'Update', 'ParseMode', 'Message', 'User', 'TelegramObject', 'NullHandler',
56-
'Voice', 'CommandHandler', 'CommandHandlerWithHelp',
57-
'CommandHandlerWithFatherCommand', 'CommandHandlerWithHelpAndFather']
54+
'Update', 'ParseMode', 'Message', 'User', 'TelegramObject',
55+
'NullHandler', 'Voice']

telegram/enchancedbot.py

Lines changed: 0 additions & 83 deletions
This file was deleted.

telegram/parsemode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# You should have received a copy of the GNU Lesser Public License
1818
# along with this program. If not, see [http://www.gnu.org/licenses/].
1919

20-
"""This module contains a object that represents a Telegram Message Parse Modes"""
20+
"""This module contains a object that represents a Telegram Parse Modes"""
2121

2222

2323
class ParseMode(object):
24-
"""This object represents a Telegram Message Parse Modes."""
24+
"""This object represents a Telegram Parse Modes."""
2525

2626
MARKDOWN = 'Markdown'

telegram/utils/botan.py

Lines changed: 0 additions & 74 deletions
This file was deleted.

telegram/utils/request.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@
2222
import json
2323

2424
try:
25-
from urllib.parse import urlencode
2625
from urllib.request import urlopen, Request
27-
from urllib.error import HTTPError, URLError
26+
from urllib.error import HTTPError
2827
except ImportError:
29-
from urllib import urlencode
3028
from urllib2 import urlopen, Request
31-
from urllib2 import HTTPError, URLError
29+
from urllib2 import HTTPError
3230

3331
from telegram import (InputFile, TelegramError)
3432

0 commit comments

Comments
 (0)