About 467 results
Open links in new tab

copy — Shallow and deep copy operations — Python 3.13.3 …
3 days ago · This module provides generic shallow and deep copy operations (explained below). Interface summary: copy.copy(obj) ¶ Return a shallow copy of obj. copy.deepcopy(obj[, …
8.17. copy --- Shallow and deep copy operations - Python
A shallow copy constructs a new compound object and then (to the extent possible) inserts references into it to the objects found in the original. A deep copy constructs a new compound …
socketserver --- ネットワークサーバーのフレームワーク — …
基本的な具象サーバクラスが4つあります: class socketserver.TCPServer(server_address, RequestHandlerClass, bind_and_activate=True) ¶ This uses the internet TCP protocol, which …