Kinetic / kinetic-py

Kinetic Python Library
http://seagate.github.io/kinetic-py
22 stars 10 forks source link

Confusion between '' and None. #27

Closed toolslive closed 9 years ago

toolslive commented 9 years ago
>>> import kinetic
>>> c = kinetic.Client("127.0.0.1",8000)
>>> c.put("key1","")
>>> e = c.get("key1")
>>> e.value is None
True

I don't think you want this.