Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for __none__ (0.03 sec)

  1. scripts/topic_repos.py

        logging.info("Creating PR")
        pr = r.create_pull(title=message, body=message, base="master", head=branch_name)
        logging.info(f"Created PR: {pr.number}")
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. scripts/sponsors.py

        logging.info("Creating PR")
        pr = repo.create_pull(title=message, body=message, base="master", head=branch_name)
        logging.info(f"Created PR: {pr.number}")
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. scripts/deploy_docs_status.py

            ):
                comment.edit(message)
                break
        else:
            issue.create_comment(message)
    
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 05:56:53 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_security/test_tutorial004.py

            "full_name": "Alice Wonderson",
            "email": "******@****.***",
            "hashed_password": mod.get_password_hash("secretalice"),
            "disabled": True,
        }
        with patch.dict(f"{mod.__name__}.fake_users_db", {"alice": alice_user_data}):
            access_token = get_access_token(
                username="alice", password="secretalice", client=client
            )
            response = client.get(
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  5. fastapi/dependencies/utils.py

                    and param_details.depends.scope == "function"
                ):
                    assert dependant.call
                    raise DependencyScopeError(
                        f'The dependency "{dependant.call.__name__}" has a scope of '
                        '"request", it cannot depend on dependencies with scope "function".'
                    )
                sub_own_oauth_scopes: list[str] = []
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 37.6K bytes
    - Viewed (3)
  6. fastapi/params.py

            use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset}
    
            super().__init__(**use_kwargs)
    
        def __repr__(self) -> str:
            return f"{self.__class__.__name__}({self.default})"
    
    
    class Path(Param):  # type: ignore[misc]
        in_ = ParamTypes.path
    
        def __init__(
            self,
            default: Any = ...,
            *,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  7. scripts/contributors.py

        logging.info("Creating PR")
        pr = repo.create_pull(title=message, body=message, base="master", head=branch_name)
        logging.info(f"Created PR: {pr.number}")
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  8. scripts/notify_translations.py

            else:
                logging.info(
                    f"There doesn't seem to be anything to be done about PR #{pr.number}"
                )
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. fastapi/security/api_key.py

            self.model: APIKey = APIKey(
                **{"in": location},
                name=name,
                description=description,
            )
            self.scheme_name = scheme_name or self.__class__.__name__
    
        def make_not_authenticated_error(self) -> HTTPException:
            """
            The WWW-Authenticate header is not standardized for API Key authentication but
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 9.6K bytes
    - Viewed (1)
  10. scripts/people.py

        logging.info("Creating PR")
        pr = repo.create_pull(title=message, body=message, base="master", head=branch_name)
        logging.info(f"Created PR: {pr.number}")
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top