Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Unreleased

* Removed Python 3.9 support.

Sun, 14 Jan 2024 08:49:00 -0700 Sean Reifschneider <jafo00@gmail.com>

* Fix some docstring typos (Christian Clauss PR #192)
Expand Down
2 changes: 1 addition & 1 deletion memcache.py
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ def _get_socket(self):
s.settimeout(self.socket_timeout)
try:
s.connect(self.address)
except socket.timeout as msg:
except TimeoutError as msg:
self.mark_dead("connect: %s" % msg)
return None
except OSError as msg:
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 1.6
envlist = py{36,37,38,39,310,311,312},pypy,pep8
envlist = py{310,311,312},pypy,pep8
skipsdist = True

[testenv]
Expand Down
Loading