http.client.HTTPResponse.version
  • References/Python/Python/Internet

HTTPResponse.version HTTP protocol version used by server. 10 for HTTP/1.0, 11 for HTTP/1.1.

2025-01-10 15:47:30
readline.add_history()
  • References/Python/Python/Text Processing

readline.add_history(line) Append line to the history buffer, as if it was the last line typed. This calls add_history()

2025-01-10 15:47:30
queue.Full
  • References/Python/Python/Concurrent Execution

exception queue.Full Exception raised when non-blocking put() (or put_nowait()) is called on a Queue

2025-01-10 15:47:30
threading.RLock
  • References/Python/Python/Concurrent Execution

class threading.RLock This class implements reentrant lock objects. A reentrant lock must be released by the thread that acquired

2025-01-10 15:47:30
traceback.format_exception_only()
  • References/Python/Python/Runtime

traceback.format_exception_only(etype, value) Format the exception part of a traceback. The arguments are the exception type

2025-01-10 15:47:30
traceback.format_list()
  • References/Python/Python/Runtime

traceback.format_list(extracted_list) Given a list of tuples as returned by extract_tb() or extract_stack()

2025-01-10 15:47:30
turtle.bgpic()
  • References/Python/Python/Frameworks

turtle.bgpic(picname=None)

2025-01-10 15:47:30
types.GeneratorType
  • References/Python/Python/Data Types

types.GeneratorType The type of generator-iterator objects, created by generator functions

2025-01-10 15:47:30
tarfile.TarFile.extractall()
  • References/Python/Python/Data Compression

TarFile.extractall(path=".", members=None, *, numeric_owner=False) Extract all members from the archive to the current working

2025-01-10 15:47:30
codecs.IncrementalDecoder.setstate()
  • References/Python/Python/Binary Data

setstate(state) Set the state of the encoder to state. state must be a decoder state returned by getstate()

2025-01-10 15:47:30