Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Should we change PEP 484 to disable implicit Optional when default = None? #275

Closed
gvanrossum opened this issue Sep 3, 2016 · 52 comments
Closed

Comments

@gvanrossum
Copy link
Member

CC: @ddfisher @JukkaL @markshannon

PEP 484 currently says:

An optional type is also automatically assumed when the default value is
None, for example::

  def handle_employee(e: Employee = None): ...

This is equivalent to::

  def handle_employee(e: Optional[Employee] = None) -> None: ...

This was intended as saving some typing in a common case, but I've received strong feedback from some quarters that this is not consistent and a bad idea. There are other places where None is allowed but none of them automatically add Optional (to the contrary).

So far it hasn't mattered much for mypy users because mypy doesn't have Optional support, but that's soon going to change (the --strict-optional flag is becoming more reliable) so if we're going to change this, now would be a good time. Thoughts? If we don't change this soon it will probably be too late.

@ddfisher
Copy link

ddfisher commented Sep 3, 2016

I'm for this change. If I recall correctly, this is the only place where the PEP suggests typecheckers understand types to be something other than what's written as the type, so I think this change would be a nice simplification.

I've also started to notice this cause a bit of user confusion. See python/typeshed#500, for example, for all the arguments to builtin functions that were accidentally marked Optional due to this.

@ilevkivskyi
Copy link
Member

I have seen some confusions between optional arguments and optional types, and the convention in question amplifies such confusions. Therefore I am in favour of removing it.

@gvanrossum
Copy link
Member Author

OK, let's bring this up on python-dev once Python 3.6 beta 1 is released
(i.e. after next weekend).

On Sat, Sep 3, 2016 at 7:32 AM, Ivan Levkivskyi notifications@github.com
wrote:

I have seen some confusions between optional arguments and optional types,
and the convention in question amplifies such confusions. Therefore I am in
favour of removing it.


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
#275 (comment), or mute
the thread
https://github.com/notifications/unsubscribe-auth/ACwrMpUgUvnteOgZfJvI0g_D50N3TOthks5qmYTugaJpZM4J0K87
.

--Guido van Rossum (python.org/~guido)

@dmoisset
Copy link
Contributor

dmoisset commented Sep 5, 2016

IMO most of the confusion comes from the name being wrong. An argument is «optional» when the parameter has a default in python. An «optional» type is a type that you can choose to add or not (as in gradual typing). If we had Nullable[T] instead of Optional many of these confusions wold go away (and it's the name used mostly everywhere else, other than Maybe T in Haskell).

Other than that, there is an inconsistency that may require a change (I just wanted to clarify that the confusions shouldn't be part of the argument)

@prechelt
Copy link

prechelt commented Sep 5, 2016

@dmoisset: I agree that Nullable or Nonable (1 char shorter) or Maybe (3 chars shorter) would be better solutions than Optional.

On the other hand, even the short Maybe is cumbersome. Nonable parameters are a frequent case and I believe the =None is sufficiently explicit to warrant introducing an additional PEP rule to cope with it, even if that rule has the character of an exception.

@markshannon
Copy link
Member

I like that the Optional[] can be omitted if a None default is provided. It is less typing, reads naturally (to me) and is unambiguous.
If users want to use Optional they can since Optional[Optional[T]] == Optional[T].
As syntactic sugar goes, it seems quite sweet :)

OOI, which quarters?

@JukkaL
Copy link
Contributor

JukkaL commented Sep 5, 2016

I haven't had enough experience with using mypy strict optional checking to decide whether the extra verbosity would become awkward. Maybe we should wait until we have a substantial codebase that can be type checked using strict optional checking.

@markshannon
Copy link
Member

Why do you use the word "strict"? That suggests that there is something "loose" about the syntactic sugar. There isn't; it is precisely defined.

@JukkaL
Copy link
Contributor

JukkaL commented Sep 6, 2016

Strict optional checking means that mypy treats None as a regular type, and mypy enforces that you add guards like if x: foo(x + 1) for values with an Optional[] type. Without strict optional checking, None is implicitly compatible with every type, kind of like null in Java, and an Optional[X] type is equivalent to just X. It has nothing to do with syntax.

@markshannon
Copy link
Member

So how is it relevant to default values for parameters making the type Optional?

@JukkaL
Copy link
Contributor

JukkaL commented Sep 6, 2016

The reason for adopting the syntactic sugar was the worry that otherwise type annotations would be too verbose and thus maybe also harder to read. I think that the main arguments for not having the syntactic sugar are consistency and conceptual simplicity.

If we have a codebase that uses Optional[] consistently, which can be enforced by the strict optional mode of mypy, we could evaluate, at least for that codebase, whether the arguments hold water. We can get a realistic of estimate of the actual verbosity of annotating code with or without the syntactic sugar. We can perhaps also get a better understanding of whether the inconsistency is an actual problem for people who are working on the code.

It may all boil down to personal preference, but having some empirical data could be useful for the discussion. Also, it doesn't seem to me that this is an urgent thing to resolve, as this doesn't require major typing implementation changes (though get_type_hints may be affected) and it's going to be easy for a static checker to support both modes via a configuration option. I don't see a need to rush the decision, and we can first wait for tools that can perform useful "strict optional" checking to be built.

@markshannon
Copy link
Member

Whether it is easier to read is, as you say, personal preference, which is rarely influenced by empirical evidence 😄

Happy to wait and see what you come up with.

@ilevkivskyi
Copy link
Member

@JukkaL I ma not sure what kinds of inconsistency you mean, but this one

x = None # type: int # here the type stays int, unlike for function params

will go away after PEP 526. I think there it is better to assume implicit Optional or not for both of these

def f(x: int = None): ...
x: int = None

but not separately for each of these.

@markshannon
Copy link
Member

x = None # type: int

Ah, that thing. I think that should never have been added. It is just self-contradictory.

@JukkaL
Copy link
Contributor

JukkaL commented Sep 6, 2016

@ilevkivskyi There's still the question about annotating instance variables with mutable types in the class body in pre-3.6 code. This is what mypy users can write today:

class A:
    x = None  # type: List[int]  # Can't use x = [] (list is mutable) and don't want Optional

    def __init__(self) -> None:
        self.x = []

This is a common use case and I think we need to have a reasonable way to expressing this without PEP 526 syntax.

@markshannon
Copy link
Member

That seems somewhat off topic, want to open a new issue?

@JukkaL
Copy link
Contributor

JukkaL commented Sep 6, 2016

I'm not proposing to change that, I just brought it up as I think that it's related to this consistency discussion and one of the more common cases where things currently feel a bit clumsy. PEP 526 would resolve that inconsistency for new code that can assume Python 3.6+.

@ambv
Copy link
Contributor

ambv commented Apr 24, 2017

Internal feedback at Facebook also suggests we should make this change.

@ddfisher
Copy link

There's been some internal feedback at Dropbox to that effect as well.

I think if the status quo was the other way, it's very unlikely that we'd want to add this syntactic sugar. I think the main reason we still have it is due to status quo bias. This change should still be low cost to make -- let's make it now, before that changes.

@gvanrossum
Copy link
Member Author

I agree we should not have done this. I'm more worried about the cost of updating 600K LoC internal code (plus numerous stubs) than @ddfisher. It's probably a simple PR so we can try it out really cheaply.

@ddfisher
Copy link

On our internal repo that uses None Checking more, a run with this change causes about 20 errors in Python 2 stubs (13 of which are in builtins) and 120 errors in the rest of the codebase. Thankfully, these errors are all fixable mechanistically -- I'd be fine with making the fixes to our internal repos.

@gvanrossum
Copy link
Member Author

What should be the next step? Maybe a simple thing would be to add a flag to mypy that disables the default Optional. That will allow us to track down all the stubs that rely on this; once we have those fixed (and our internal repo) we can make it the default.

At the same time we should propose a diff to PEP 484 and discuss it. At this point I expect that would be pretty uncontroversial.

@Tinche
Copy link

Tinche commented May 10, 2017

Coming here via Guido's Python-Dev post.

I'm a strong +1 on explicit Optionals. I use them heavily in our internal codebase and I consider them very helpful. They are verbose though, I'd be totally on board if we could get a shorter name for them and deprecate Optional.

@markshannon
Copy link
Member

To clarify, the proposal is that this becomes a type error:
def handle_employee(e: Employee = None): ...
Is that correct?

@ilevkivskyi
Copy link
Member

To clarify, the proposal is that this becomes a type error:
def handle_employee(e: Employee = None): ...
Is that correct?

Yes.

@JukkaL
Copy link
Contributor

JukkaL commented May 11, 2017

I also prefer requiring explicit Optional[...] types, and I'd like a shorter syntax. However, the shorter syntax is a separate issue.

@JelleZijlstra
Copy link
Member

We fixed all instances of implicit Optional in typeshed a while ago.

@gvanrossum is the next step here just to change PEP 484?

@gvanrossum
Copy link
Member Author

We're nearly there, I think we have a few steps to go first:

  • Add --no-strict-optional somewhere so that typeshed stays clean
  • Add words to PEP 484 allowing (maybe even encourage) type checkers to do this
  • Discuss on python-dev when type checkers should do this

JelleZijlstra added a commit to JelleZijlstra/peps that referenced this issue Jul 1, 2018
Following discussion in python/typing#275, there is a consensus that it is better to require optional types to be made explicit. This PR changes the wording of PEP 484 to allow, but not require, type checkers to treat a None default as implicitly making an argument Optional.
@JelleZijlstra
Copy link
Member

The first one is done: https://github.com/python/typeshed/blob/master/tests/mypy_test.py#L134.

I submitted a patch to PEP 484 in python/peps#689.

@ilevkivskyi
Copy link
Member

I assume we will keep a flag in mypy, but will just invert the default. Right?

@gvanrossum
Copy link
Member Author

I assume we will keep a flag in mypy, but will just invert the default. Right?

Yes we should do that.

gvanrossum pushed a commit to python/peps that referenced this issue Jul 10, 2018
…ly (#689)

Following discussion in python/typing#275, there is a consensus that it is better to require optional types to be made explicit. This PR changes the wording of PEP 484 to encourage
type checkers to treat a None default as implicitly making an argument Optional.
@gvanrossum
Copy link
Member Author

Closed by python/peps#689.

@sproshev
Copy link

sproshev commented Jan 9, 2019

What if I'm annotating function that does not accept None but has it as a marker of missed argument? E.g.:

def foo(p: int = None):
    if p is None:
        print("p not specified")

Should I use some another value to achieve this? If so, should it have type int or other one? E.g.:

class _MISSING:
    pass

def f(p: int = _MISSING):
    ...

@ewjoachim
Copy link

ewjoachim commented Jan 9, 2019

I'd say it's not desirable to put a default value if you consider that default value is not an acceptable value. In this case, just don't put a default value. If you don't pass anything, mypy will tell you and you'll get a type error, and if you explicitely pass None, mypy will tell you it's wrong.

def foo(p: int):
    # in the function body, don't try to defend against p being not an int
    ...

@sproshev
Copy link

What about other cases such as dataclasses.field? Default value for default and default_factory has incompatible type. See stub and specification.

bdarnell pushed a commit to tornadoweb/tornado that referenced this issue Jun 17, 2019
"Implicit-optional" mode is on by default, but that default is intended to change in the indefinite future (python/peps#689, python/typing#275). Go ahead and change to the future explicit use of Optional.
eugene2candy added a commit to eugene2candy/tornado that referenced this issue Apr 10, 2021
* iostream: check that stream is open before trying to read (tornadoweb#2670)

* curl_httpclient: fix disabled decompress_response

by setting None (NULL) instead of "none" for ENCODING

reported by Andrey Oparin <andrey@edsd.com>

* tests: run test_gzip for curl_httpclient also

move simple_httpclient test_gzip to the shared httpclient tests,
to test the decompress_response option for curl_httpclient as well

* mypy: Enable no_implicit_optional

"Implicit-optional" mode is on by default, but that default is intended to change in the indefinite future (python/peps#689, python/typing#275). Go ahead and change to the future explicit use of Optional.

* gen.with_timeout: Don't log CancelledError after timeout

See also: commit a237a99

* Fix ReST syntax

* locks: Remove redundant CancelledError handling

CancelledError is now always considered "quiet" (and
concurrent.futures.CancelledError is no longer the same as
asyncio.CancelledError).

* ci: Re-enable nightly python

Fixes tornadoweb#2677

* gen: Clean up docs for with_timeout

Mark CancelledError change as 6.0.3

* *: Modernize IO error handling

Where possible, replace use of errno with the exception hierarchy
available since python 3.3. Remove explicit handling of EINTR which
has been automatic since python 3.5

* netutil: Ignore EADDRNOTAVAIL when binding to localhost ipv6

This happens in docker with default configurations and is generally
harmless.

Fixes tornadoweb#2274

* test: Skip test_source_port_fail when running as root

Root is always allowed to bind to low port numbers, so we can't
simulate failure in this case. This is the last remaining failure when
running tests in docker.

* docs: Add notice about WindowsSelectorEventLoop on py38

Fixes tornadoweb#2608

* Bump version of twisted to pick up security fix

* Release notes for 6.0.3

* SSLIOStream: Handle CertificateErrors like other errors

Fixes: tornadoweb#2689

* Update database backend reference

* Strip documentation about removed argument

* Mark Template autoescape kwarg as Optional

* httputil: cache header normalization with @lru_cache instead of hand-rolling

Tornado is now py3-only so @lru_cache is always available.

Performance is about the same. Benchmark below. Python 3.7 on Linux.

before, cached:   0.9121252089971676
before, uncached: 13.358482279989403

after, cached:    0.9175888689933345
after, uncached:  11.085199063003529

```py
from time import perf_counter

names = [f'sOMe-RanDOM-hEAdeR-{i}' for i in range(1000)]

from tornado.httputil import _normalize_header
start = perf_counter()
for i in range(10000):
    # _normalize_header.cache_clear()
    for name in names:
        _normalize_header(name)
print(perf_counter() - start)

from tornado.httputil import _NormalizedHeaderCache
start = perf_counter()
_normalized_headers = _NormalizedHeaderCache(1000)
for i in range(10000):
    # _normalized_headers = _NormalizedHeaderCache(1000)
    for name in names:
        _normalized_headers[name]
print(perf_counter() - start)
```

* httputil: use compiled re patterns

This is slightly faster than using the builtin cache, e.g.:

With benchmark below (Python 3.7, Linux):

before: 0.7284867879934609
after:  0.2657967659761198

```py
import re
from time import perf_counter

line = 'HTTP/1.1'

_http_version_re = re.compile(r"^HTTP/1\.[0-9]$")

start = perf_counter()
for i in range(1000000):
    _http_version_re.match(line)
print(perf_counter() - start)

start = perf_counter()
for i in range(1000000):
    re.match(r"^HTTP/1\.[0-9]$", line)
print(perf_counter() - start)
```

* test: Disable TLS 1.3 in one test

This test started failing on windows CI with an upgrade to python
3.7.4 (which bundles a newer version of openssl). Disable tls 1.3 for
now.

Possibly related to tornadoweb#2536

* spelling corrections

* maintainance -> maintenance

* recieving -> receiving

* tests: replace remaining assertEquals() with assertEqual()

assertEquals() is deprecated, and python3.7/pytest can warn about it

* httputil.parse_body_arguments: allow incomplete url-escaping

support x-www-form-urlencoded body with values consisting of
encoded bytes which are not url-encoded into ascii
(it seems other web frameworks often support this)

add bytes qs support to escape.parse_qs_bytes,
leave str qs support for backwards compatibility

* Clear fewer headers on 1xx/204/304 responses

This function is called on more than just 304 responses; it’s
important to permit the Allow header on 204 responses.  Also, the
relevant RFCs have changed significantly.

Fixes tornadoweb#2726.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>

* Fix extra data sending at HEAD response with Transfer-Encoding: Chunked

* Omit Transfer-Encoding header for HEAD response

* Add test for unescaping with groups

* Fix unescaping of regex routes

Previously, only the part before the first '(' would be correctly
unescaped.

* Use HTTPS link for tornado website.

* Simplify chained comparison.

* build(deps): bump twisted from 19.2.1 to 19.7.0 in /maint

Bumps [twisted](https://github.com/twisted/twisted) from 19.2.1 to 19.7.0.
- [Release notes](https://github.com/twisted/twisted/releases)
- [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst)
- [Commits](twisted/twisted@twisted-19.2.1...twisted-19.7.0)

Signed-off-by: dependabot[bot] <support@github.com>

* Dead link handling

Added an extra set for handling dead links, and reporting.

One consequence of this is that using this script will "work" offline, but will report that some all the links were not fetched.

* ci: Pin version of black

A new release of black changed the way some of our files are formatted,
so use a fixed version in CI.

* demos: Fix lint in webspider demo

Updates tornadoweb#2765

* build: Revamp test/CI configuration

Reduce tox matrix to one env per python version, with two extra builds
for lint and docs. Delegate to tox from travis-ci.

Add 3.8 to testing. Simplify by dropping coverage reporting and
"no-deps" test runs.

* process: correct docs of fork_processes exit behavior

fixes tornadoweb#2771

* Remove legacy Python support in speedups.c

* ci: Don't run full test suite on python 3.5.2

* web: Update hashing algorithm in StaticFileHandler (tornadoweb#2778)

Addresses tornadoweb#2776.

* build: Run docs and lint on py38

This requires moving some noqa comments due to 3.8's changes to the
ast module.

* lint: Upgrade to new version of black

* lint: Use newer mypy

This required some minor code changes, mainly some adjustments in tests
(which are now analyzed more thoroughly in spite of being mostly
unannotated), and some changes to placement of type:ignore comments.

* use bcrypt's checkpw instead of ==

* Fix case of JavaScript, GitHub and CSS.

* Fix syntax error in nested routing example

* test: Add gitattributes for test data files

This ensures that the tests pass on Windows regardless of the user's git
CRLF settings.

* test: Use selector event loop on windows.

This gets most of the tests working again on windows with py38.

* test: Add some more skips on windows

Alternate resolvers behave differently on this platform for unknown
reasons.

* test: Add hasattr check for SIGCHLD

This name is not present on all platforms

* testing: Add level argument to ExpectLog

This makes it possible for tests to be a little more precise, and also
makes them less dependent on exactly how the test is run (runtests.py
sets the logging level to info, but when running tests directly from
an editor it may use the default of warnings-only).

CI only runs the tests with runtests.py, so this might regress, but I'm
not building anything to prevent that yet (options include running the
tests differently in CI or making ExpectLog always use a fixed log
configuration instead of picking up the current one)

* ci: Add python 3.8 to windows CI

* asyncio: AnyThreadEventLoopPolicy should always use selectors on windows

* iostream: resolve reads that may be completed while closing

fixes issue that a read may fail with StreamClosedError
if stream is closed mid-read

* avoid premature _check_closed in _start_read

_start_read can resolve with _try_inline_read, which can succeed even if the stream has been closed
if the buffer has been populated by a prior read

preserve the fix for asserts being hit when dealing with closed sockets

* catch UnsatisfiableReadError in close

* iostream: Add tests for behavior around close with read_until

Updates tornadoweb#2719

* iostream: Expand comments around recent subtle changes

* Fix Google OAuth example (from 6.0 OAuth2Mixin->authorize_redirect is an ordinary synchronous function)

* Add Python 3.8 clasifier to setup.py

* Standardize type documentation for HTTPRequest init

* travis-ci.com doesn't like it when you have matrix and jobs

.org still allows this for some reason

* Master branch release notes for version 6.0.4

* maint: Bump bleach version for a security fix

* iostream: Update comment

Update comment from tornadoweb#2690 about ssl module exceptions.

* Added default User-Agent to the simple http client if not provided.

The User-Agent format is "Tornado\{Tornado_Version}".

If self.request.user_agent isn't set and self.request.headers has
no User-Agent in it's keys the default User-Agent is added.

Fixes: tornadoweb#2702

* Revert "docs: Use python 3.7 via conda for readthedocs builds"

This reverts commit e7e31e5.

We were using conda to get access to python 3.7 before rtd supported
it in their regular builds, but this led to problems pinning a
specific version of sphinx. See
readthedocs/readthedocs.org#6870

* fix new E741 detected cases

* fix typos

* revert genericize change

* stop ping_callback

* fix types for max_age_days and expires_days parameters

* test: Add a sleep to deflake a test

Not sure why this has recently started happening in some environments,
but killing a process too soon causes the wrong exit status in some
python builds on macOS.

* ci: Drop tox-venv

Its README says it is mostly obsolete due to improvements in
virtualenv. Using it appears to cause problems related to
pypa/setuptools#1934 because virtualenv
installs the wheel package by default but venv doesn't.

* ci: Allow failures on nightly python due to cffi incompatibility

* template: Clarify docs on escaping

Originally from tornadoweb#2831, which went to the wrong branch.

* test: Use default timeouts in sigchild test

The 1s timeout used here has become flaky with the introduction of a
sleep (before the timeout even starts).

* auth: Fix example code

Continuation of tornadoweb#2811

The oauth2 version of authorize_redirect is no longer a coroutine, so
don't use await in example code. The oauth1 version is still a
coroutine, but one twitter example was incorrectly calling it with
yield instead of await.

* platform: Remove tornado.platform.auto.set_close_exec

This function is obsolete: Since python 3.4, file descriptors created
by python are non-inheritable by default (and in the event you create
a file descriptor another way, a standard function os.set_inheritable
is available).

The windows implementation of this function was also apparently
broken, but this went unnoticed because the default behavior on
windows is for file descriptors to be non-inheritable.

Fixes tornadoweb#2867

* iostream,platform: Remove _set_nonblocking function

This functionality is now provided directly in the `os` module.

* test: Use larger time values in testing_test

This test was flaky on appveyor. Also expand comments about what
exactly the test is doing.

* Remove text about callback (removed) in run_on_executor

* curl_httpclient: set CURLOPT_PROXY to NULL if pycurl supports it

This restores curl's default behaviour: use environment variables.

This option was set to "" to disable proxy in
905a215 but curl uses environment
variables by default.

* httpclient_test: Improve error reporting

Without this try/finally, if this test ever fails, errors can be
reported in a confusing way.

* iostream_test: Improve cleanup

Closing the file descriptor without removing the corresponding handler
is technically incorrect, although the default IOLoops don't have a
problem with it.

* test: Add missing level to ExpectLog call

* asyncio: Improve support Python 3.8 on Windows

This commit removes the need for applications to work around the
backwards-incompatible change to the default event loop. Instead,
Tornado will detect the use of the windows proactor event loop and
start a selector event loop in a separate thread.

Closes tornadoweb#2804

* asyncio: Rework AddThreadSelectorEventLoop

Running a whole event loop on the other thread leads to tricky
synchronization problems. Instead, keep as much as possible on the
main thread, and call out to a second thread only for the blocking
select system call itself.

* test: Add an option to disable assertion that logs are empty

Use this on windows due to a log spam issue in asyncio.

* asyncio: Refactor selector to callbacks instead of coroutine

Restarting the event loop to "cleanly" shut down a coroutine introduces
other problems (mainly manifesting as errors logged while running
tornado.test.gen_test). Replace the coroutine with a pair of callbacks
so we don't need to do anything special to shut down without logging
warnings.

* docs: Pin version of sphinxcontrib-asyncio

The just-released version 0.3.0 is incompatible with our older pinned
version of sphinx.

* docs: Pin version of sphinxcontrib-asyncio

The just-released version 0.3.0 is incompatible with our older pinned
version of sphinx.

* Added arm64 jobs for Travis-CI

* CLN : Remove utf-8 coding cookies in source files

On Python 3, utf-8 is the default python source code encoding. so, the
coding cookies on files that specify utf-8 are not needed anymore.

	modified:   tornado/_locale_data.py
	modified:   tornado/locale.py
	modified:   tornado/test/curl_httpclient_test.py
	modified:   tornado/test/httpclient_test.py
	modified:   tornado/test/httputil_test.py
	modified:   tornado/test/options_test.py
	modified:   tornado/test/util_test.py

* Allow non-yielding functions in `tornado.gen.coroutine`'s type hint (tornadoweb#2909)

`@gen.coroutine` deco allows non-yielding functions, so I reflected that in the type hint.

Requires usage of `@typing.overload` due to python/mypy#9435

* Update super usage (tornadoweb#2912)

On Python 3, super does not need to be called with arguments where as on
Python 2, super needs to be called with a class object and an instance.

This commit updates the super usage using automated regex-based search
and replace. After the automated changes were made, each change was
individually checked before committing.

* Update links on home page

* Updated http links to the https versions when possible.
* Updated links to Google Groups to match their new URL format.
* Updated links to other projects to match their new locations.
* And finally, updated link to FriendFeed to go to the Wikipedia page, because friendfeed.com is just a redirect to facebook.com now :-( :-(

* Modified ".travis.yml" to test it's own built wheel

Signed-off-by: odidev <odidev@puresoftware.com>

* tests: httpclient may turn all methods into GET for 303 redirect

* websocket_test: test websocket_connect redirect raises exception

instead of "uncaught exception" and then test timeout

* websocket: set follow_redirects to False

to prevent silent failure when the websocket client gets a 3xx
redirect response, because it does not currently support redirects

Partial fix for issue tornadoweb#2405

* simple_httpclient: after 303 redirect, turn all methods into GET

not just POST (but still not HEAD)

following the behavior of libcurl > 7.70

* httpclient_test: add test for connect_timeout=0 request_timeout=0

* simple_httpclient: handle connect_timeout or request_timeout of 0

Using a connect_timeout or request_timeout of 0 was effectively
invalid for simple_httpclient: it would skip the actual request
entirely (because the bulk of the logic was inside "if timeout:").
This was not checked for or raised as an error, it just behaved
unexpectedly.

Change simple_httpclient to always assert these timeouts are not None
and to support the 0 value similar to curl (where request_timeout=0
means no timeout, and connect_timeout=0 means curl default 300 seconds
which is very very long for a tcp connection).

* httpclient: document connect_timeout/request_timeout 0 value

not exactly true for curl_httpclient (libcurl uses a connect_timeout
of 300 seconds if no connect timeout is set) but close enough

* test: update Travis-CI matrix pypy version to 3.6-7.3.1

* httpclient_test: new test for invalid gzip Content-Encoding

this caused an infinite loop in simple_httpclient

* http: fix infinite loop hang with invalid gzip data

* test: Refactor CI configuration

- Add osx and windows builds on travis
- Stop running -full test suites on every python version on arm64
- Use cibuildwheel to build for all python versions in one job per
  platform
- Bring a single test configuration and linters up to a first "quick"
  stage before starting the whole matrix
- Push the resulting wheels (and sdist) to pypi on tag builds

* Add release notes for 6.1, bump version to 6.1b1

* ci: Switch from testpypi to real pypi

* Add deprecation notice for Python 3.5

* Update how to register application with Google

* Fix await vs yield in the example

* gen: Expliclty track contextvars, fixing contextvars.reset

The asyncio event loop provides enough contextvars support out of the
box for basic contextvars functionality to work in tornado coroutines,
but not `contextvars.reset`. Prior to this change, each yield created
a new "level" of context, when an entire coroutine should be on the
same level. This is necessary for the reset method to work.

Fixes tornadoweb#2731

* test: Add a timeout to SyncHTTPClient test

* asyncio: Manage our own thread instead of an executor

Python 3.9 changed the behavior of ThreadPoolExecutor at interpreter
shutdown (after the already-tricky import-order issues around
atexit hooks). Avoid these issues by managing the thread by hand.

* ci,setup: Add python 3.9 to tox, cibuildwheel and setup.py

* Bump version to 6.1b2

* Set version to 6.1 final

* ci: Work around outdated windows root certificates

* Bump main branch to 6.2.dev1

* Remove appveyor configs

* Drop support for python 3.5

* iostream: Add platform assertion for mypy

Without this mypy would fail when run on windows.

* maint: Prune requirements lists

Remove dependencies that are rarely used outside of tox. The main
motivation is to give dependabot less to worry about when an indirect
dependency has a security vulnerability.

* *: Update black to newest version

* Update mypy to latest version

* docs: Upgrade to latest version of sphinx

This version attempts to resolve types found in type annotations,
but in many cases it can't find them so silence a bunch of warnings.
(Looks like deferred annotation processing will make this better but
we won't be able to use that until we drop Python 3.6)

* docs: Pin specific versions of requirements

* docs: Stop using autodoc for t.p.twisted

This way we don't have to install twisted into the docs build
environment. Add some more detail while I'm here.

* platform: Deprecate twisted and cares resolvers

These were most interesting when the default resolver blocked
the main thread. Now that the default is to use a thread pool,
there is little if any demand for alternative resolvers just to
avoid threads.

* Issue tornadoweb#2954: prevent logging error messages for not existing translation files

Every not existing translation file for the existing locales logged an error message:
Cannot load translation for 'ps': [Errno 2] No such file or directory: '/usr/share/locale/ps/LC_MESSAGES/foo.mo'

* WaitIterator: don't re-use _running_future

When used with asyncio.Future, WaitIterator may skip indices in some
cases. This is caused by multiple _return_result calls after another,
without having the chain_future call finish in between. This is fixed
here by not hanging on to the _running_future anymore, which forces
subsequent _return_result calls to add to _finished, instead of causing
the previous result to be silently dropped.

Fixes tornadoweb#2034

* Fix return type of _return_result

* docs: fix simple typo, authentiate -> authenticate

There is a small typo in tornado/netutil.py.

Should read `authenticate` rather than `authentiate`.

* Avoid 2GB read limitation on SSLIOStream

* Remove trailing whitespace

* locale: Format with black

* wsgi: Update docstring example for python 3

Fixes tornadoweb#2960

* Remove WebSocketHandler.stream.

It was no longer used and always set to None.

* Add 'address' keyword control binded address tornadoweb#2969

* format code according to result of flake8 check

* Add comment explaining workaround

* change comment

* should use python3 unicode in 'blog' demo tornadoweb#2977

* leave previous versionchanged

* leave previous versionchanged

* write_message method of WebSocketClientConnection now accepts dict as input

* write_message method of WebSocketClientConnection now accepts dict as input

* Uppercase A in Any

* BaseIOStream.write(): support typed memoryview

Making sure that ``len(data) == data.nbytes`` by casting
memoryviews to bytes.

* Allowed set max_body_size to 0

* fix line too long

* fix E127

* what

* But this is not beautiful

* Is this okay

* build(deps): bump jinja2 from 2.11.2 to 2.11.3 in /docs

Bumps [jinja2](https://github.com/pallets/jinja) from 2.11.2 to 2.11.3.
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/master/CHANGES.rst)
- [Commits](pallets/jinja@2.11.2...2.11.3)

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump pygments from 2.7.2 to 2.7.4 in /docs

Bumps [pygments](https://github.com/pygments/pygments) from 2.7.2 to 2.7.4.
- [Release notes](https://github.com/pygments/pygments/releases)
- [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES)
- [Commits](pygments/pygments@2.7.2...2.7.4)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Ben Darnell <ben@bendarnell.com>
Co-authored-by: Zachary Sailer <zachsailer@gmail.com>
Co-authored-by: Pierce Lopez <pierce.lopez@gmail.com>
Co-authored-by: Robin Roth <robin@rroth.de>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Martijn van Oosterhout <oosterhout@fox-it.com>
Co-authored-by: Michael V. DePalatis <mike@depalatis.net>
Co-authored-by: Remi Rampin <r@remirampin.com>
Co-authored-by: Ran Benita <ran@unusedvar.com>
Co-authored-by: Semen Zhydenko <simeon.zhidenko@gmail.com>
Co-authored-by: Anders Kaseorg <andersk@mit.edu>
Co-authored-by: Bulat Khasanov <afti@yandex.ru>
Co-authored-by: supakeen <cmdr@supakeen.com>
Co-authored-by: John Bampton <jbampton@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jeff van Santen <jeffreyavansanten@gmail.com>
Co-authored-by: Bruno P. Kinoshita <kinow@users.noreply.github.com>
Co-authored-by: Gareth T <garetht@users.noreply.github.com>
Co-authored-by: Min RK <benjaminrk@gmail.com>
Co-authored-by: bn0ir <gblacknoir@gmail.com>
Co-authored-by: James Bourbeau <jrbourbeau@gmail.com>
Co-authored-by: Recursing <buonanno.lorenzo@gmail.com>
Co-authored-by: Flavio Garcia <piraz@candango.org>
Co-authored-by: Ben Darnell <ben@cockroachlabs.com>
Co-authored-by: marc <Marc>
Co-authored-by: agnewee <agnewee@gmail.com>
Co-authored-by: Jeff Hunter <jeff@jeffhunter.me>
Co-authored-by: 依云 <lilydjwg@gmail.com>
Co-authored-by: odidev <odidev@puresoftware.com>
Co-authored-by: Sai Rahul Poruri <rporuri@enthought.com>
Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>
Co-authored-by: Amit Patel <amitp@cs.stanford.edu>
Co-authored-by: Debby <debby@glance.net>
Co-authored-by: = <=>
Co-authored-by: Eugene Toder <eltoder@users.noreply.github.com>
Co-authored-by: Florian Best <best@univention.de>
Co-authored-by: Alexander Clausen <alex@gc-web.de>
Co-authored-by: Tim Gates <tim.gates@iress.com>
Co-authored-by: bfis <b.fis@cern.ch>
Co-authored-by: Eugene Toder <eltoder@gmail.com>
Co-authored-by: youguanxinqing <youguanxinqing@qq.com>
Co-authored-by: kriskros341 <krzysztofczuba884@gmail.com>
Co-authored-by: Mads R. B. Kristensen <madsbk@gmail.com>
Co-authored-by: Sakuya <dl@pbstu.com>
@keu
Copy link

keu commented Apr 11, 2021

@ewjoachim there are these different scenarios:

# None is not one of possible values, func1 can't be called with explicit `param = None`
def func1(param: Class = None):
   param = param or Class("somethin")

# None is one of the possible values, funct2 can be called with explicit `param = None`
def func2(param: Optional[Class] = None):
   pass

# None is one of the possible values, funct3 requires param and can be called with explicit `param = None`
def func3(param: Optional[Class]):
   pass

# None is one of the possible values, funct3 can be called with `param = None`
def func4(param: Optional[Class] = obj):
   pass

i.e. default values has nothing to do with type annotation i.e. public contract of a function

@ewjoachim
Copy link

ewjoachim commented Apr 12, 2021

Not sure I get your point, and I don't agree with "default values has nothing to do with type annotation":

This function has wrong annotations which we can tell BECAUSE the annotations and the default value are clashing:

def func(param: int = "hello"):
   pass

I was answering to:

What if I'm annotating function that does not accept None but has it as a marker of missed argument? E.g.:

def foo(p: int = None):
    if p is None:
        print("p not specified")

and I understood "does not accept None" as "if you call the function with None (or without an argument), the call is going to be rejected. And I stand by my (... 2-year-old-)opinion: if a function is written to fail if an argument is missing, it's best to not have that argument have a default value.

If you want a default value and you want to be able to detect that the default value was used, either use : Optional[...] = None if None doesn't already have another meaning or do something like:

missing = object()
def func(a: Any = missing):
	if a is missing:
		print("default")

or

class Missing:
	pass
missing = Missing()
def func(json: Union[None, list, dict, str, int, float, Missing] = missing):
	if json is missing:
		print("default")

Maybe I missed an important point ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests