Python的os.mknod在Windows中

我试图在Windows 7中使用Python 3.5.0中的os.mknod函数,但是我发现错误:

 Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> os.mknod AttributeError: module 'os' has no attribute 'mknod' 

我想它应该在那里,因为https://docs.python.org/3/library/os.html没有说有限的可用性。 是否有另一种select在Windows中使用类似的function? 我只是想在特定的path中创build一个空文件,并且我正在考虑调用open(path, 'w')对于这个来说有点丑陋。

我不知道这可能是一个版本特定的问题,因为我以前从未在Windows中使用过Python。