Changes between Version 63 and Version 64 of Ticket #23919
- Timestamp:
- Jan 19, 2017, 11:19:31 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23919 – Description
v63 v64 23 23 * ~~In tests: `contextlib.closing(self.urlopen` (`contextlib.closing` no longer needed)~~ 24 24 * Support for pysqlite (doesn't support Python 3) [https://github.com/django/django/pull/7890 PR] 25 * Replace `super(ClassName, self)` with `super()` 25 * Replace `super(ClassName, self)` with `super()` [https://github.com/django/django/pull/7905 PR] 26 26 * ~~Remove `# -*- coding: utf-8 -*-` source file encoding~~ (that's the default on Python 3) 27 27 * Evaluate replacement of custom `__del__` methods by [https://docs.python.org/3/library/weakref.html#weakref.finalize weakref.finalize]