Skip to content

Instantly share code, notes, and snippets.

@ods
Created January 30, 2013 09:14
Show Gist options
  • Save ods/4671855 to your computer and use it in GitHub Desktop.
Save ods/4671855 to your computer and use it in GitHub Desktop.
>>> import pdb
>>> pdb.set_trace()
--Return--
> <stdin>(1)<module>()->None
(Pdb) from __future__ import division
(Pdb) 1/2
0
(Pdb) from __future__ import division; 1/2
0.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment