Skip to content

Commit

Permalink
http.serverBaseHTTPRequestHandler.date_time_string: timestamp is a fl…
Browse files Browse the repository at this point in the history
…oat (python#11322)
  • Loading branch information
aresler authored Jan 27, 2024
1 parent 0b8841e commit 6d9f28a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/http/server.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class BaseHTTPRequestHandler(socketserver.StreamRequestHandler):
def log_error(self, format: str, *args: Any) -> None: ...
def log_message(self, format: str, *args: Any) -> None: ...
def version_string(self) -> str: ...
def date_time_string(self, timestamp: int | None = None) -> str: ...
def date_time_string(self, timestamp: float | None = None) -> str: ...
def log_date_time_string(self) -> str: ...
def address_string(self) -> str: ...
def parse_request(self) -> bool: ... # undocumented
Expand Down

0 comments on commit 6d9f28a

Please sign in to comment.