Skip to content
Snippets Groups Projects

Changed function name for testing is an object is picklable

Closed Tiago de Freitas Pereira requested to merge utilities into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
def is_picklable(obj):
def assert_picklable(obj):
"""
Test if an object is picklable or not
"""
Loading