На Windows XP и Vim 7.3.1105 (сборка Yongwei):
:tabnew
:py import vim
:py print(type(vim.current.buffer.name))
<type 'str'> -- THIS
на Ubuntu и Vim 7.3.1020 (моя собственная сборка):
:tabnew
:py import vim
:py print(type(vim.current.buffer.name))
<type 'NoneType'> -- AND THIS
почему эта разница?