Skip to content

Instantly share code, notes, and snippets.

View misrasaurabh1's full-sized avatar

Saurabh Misra misrasaurabh1

View GitHub Profile
#!/usr/bin/env python3
"""
Benchmark script to compare performance of different Python object copying methods.
"""
import copy
import json
import pickle
import time
import sys