José Carlos Senciales schrieb:
thanks

How can i know if i have my Python configured with large file support ?

My version is:

Zope Version  (Zope 2.8.4-final, python 2.3.5, win32)
Python Version 2.3.5 (#62, Feb 8 2005, 16:23:02) [MSC v.1200 32 bit (Intel)]
System Platform  win32


double-klick on the python.exe or start it in a console
window and try:

>>> f=open("somefile.txt","w")
>>> f.tell()
0L
>>>

if its 0L, you probably have large file support.
If its just 0, you probably dont.

Not sure if on windows it also depends on the filesystem
you use. Try with NTFS if in doubt.

Regards
Tino
_______________________________________________
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev

Reply via email to