背景

Pythonのログギング設定ファイルのサンプルコードに、ext://sys.stdoutという文字列があります。
このextの意味を調べるため、Googleで"ext://sys.stdout"を検索しましたが、検索結果は0件でした(2019/04/28実施)。

version: 1
formatters:
  simple:
    format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
handlers:
  console:
    class: logging.StreamHandler
    level: DEBUG
    formatter: simple
    stream: ext://sys.stdout
loggers:
  simpleExample:
    level: DEBUG
    handlers: [console]
    propagate: no
root:
  level: DEBUG
  handlers: [console]

https://docs.python.org/ja/3.6/howto/logging.html#configuring-logging

質問

extの意味を調べるため、私はどのように検索すればよかったのでしょうか?

以下のページにextの意味は載っていました。
https://docs.python.org/ja/3.6/library/logging.config.html#access-to-external-objects

しかし、このページにはたまたま辿り着いただけでして、extの意味を調べようと思って見つけたページではありません。

今後同じようなことが起きても調べられるよう、対応方法を知っておきたいです。