mirror of
https://github.com/django/django.git
synced 2025-08-24 20:44:24 +00:00
Fixed #27857 -- Dropped support for Python 3.4.
This commit is contained in:
parent
a80903b711
commit
cfff2af02b
20 changed files with 37 additions and 116 deletions
|
@ -150,12 +150,6 @@ class BaseExpression:
|
|||
if output_field is not None:
|
||||
self.output_field = output_field
|
||||
|
||||
def __getstate__(self):
|
||||
# This method required only for Python 3.4.
|
||||
state = self.__dict__.copy()
|
||||
state.pop('convert_value', None)
|
||||
return state
|
||||
|
||||
def get_db_converters(self, connection):
|
||||
return (
|
||||
[]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue