Joseph

Results 6 issues of Joseph

I think there's only one deprecated item - that is easy to fix. Will also need to update tox to include tests for django3.2 and python 3.8 / 3.9 Consider...

Section 6.3 provides an example with the following code: ``` import test print('testing square function') test.testEqual(square(10), 100) ``` (https://github.com/RunestoneInteractive/thinkcspy/blob/master/_sources/Functions/UnitTesting.rst) Python documentation on using the test module is quite clear: >...

Closes #103. Changes proposed in this PR: - fix deprecation issues for django3.2 (including features to be dropped in django4.0); - add tox tests for versions python3.9 and django3.2, remove...

Issue: running django 3.2 causes several deprecation warnings for features removed in django4.0 pull request coming to: - fix deprecation issues; - add tox tests for versions python3.9 and django3.2,...

bug

Problem: `backend.deliver` returns `True` when `backend.can_send`, regardless of potential issues in, e.g., smtp backend For example, if the SMTP connection fails, `backend.deliver` still returns `True`. This means I can't detect...

enhancement

Great work! I'm converting a project from autodoc, and loving the improvements... Came across this, its a bit of a show-stopper: Code like this: ``` class Foo: """I'm a Foo"""...