notebook/IPython
Matthias Bussonnier fea07e81ce Merge pull request #3370 from minrk/nonasciicp
used in comparison check for notebook name change.

Unless the filenames are normalized, unchanged names may result in false positives for a name change (e.g. OS X uses NFD on the filesystem, so u'\xfc' roundtripped to the filesystem will be u'u\u0308'), which can result in the first save of a notebook after open performing the following actions:

save the recently opened notebook
old_name != new_name, so name change detected
delete old_name (which is actually new_name), which ultimately deletes the just-saved notebook
In master, this has a symptom of the first checkpoint failing because the first save actually deleted the file, and you can't checkpoint a notebook that doesn't exist.

closes #3360
2013-06-02 08:43:20 -07:00
..
frontend/html/notebook Merge pull request #3370 from minrk/nonasciicp 2013-06-02 08:43:20 -07:00
testing Fixing imports for frontend tests. 2013-05-16 16:08:20 -07:00
utils/tests s/nt.assert_equals/nt.assert_equal/ 2012-07-17 08:30:53 -07:00