Re: 64 bit python 3.5

2015-09-25 Thread Mark Lawrence
On 25/09/2015 17:55, Bill Strum wrote: Is there a 64 bit version of 3.5 and if so where can I get it. Thanks. -- Bill Strum https://www.python.org/downloads/release/python-350/ -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark La

Re: 64-bit Python for Solaris

2013-05-27 Thread Matchek
2013/5/21 Maciej (Matchek) BliziƄski : > the ${prefix}/lib/pythonX.Y/_sysconfigdata.py file contains > system-specific information ...and is installed in an architecture-independent directory by the Python installer. This looks broken to me. -- http://mail.python.org/mailman/listinfo/python-lis

Re: 64 bit python binaries (or builds) for Xeon and Opteron architectures on Windows platforms

2005-10-26 Thread Larry Bates
We are running 64 bit compiled python on Red Hat Fedora Core 3. Hardware is 64 bit on Dual Opteron HP servers running SMP. FYI, Larry [EMAIL PROTECTED] wrote: > Does anyone have any information about 64 bit python support for Xeon > and Opteron architectures on Windows platforms? If anyone has bu

Re: 64 bit Python

2005-02-15 Thread Mathias Waack
Mike C. Fletcher wrote: > Mathias Waack wrote: > ... > >>My python script allocates a bunch of strings each of 1024 >>characters and writes it in a cStringIO. And it fails after writing >>512K of strings. Don't know how python restricts the heap size - >>but I'm fairly sure its not a restriction

Re: 64 bit Python

2005-02-14 Thread Jeff Epler
There's not enough information to guess the "real problem", but it could be this: "variable size" objects (declared with PyObject_VAR_HEAD) are limited to INT_MAX items since the ob_size field is declared as 'int'. This means that a Python string, tuple, or list (among other types) may be limited

Re: 64 bit Python

2005-02-14 Thread Ivan Voras
Mathias Waack wrote: As I stated I wrote a simple C-program before. The c-program was able to allocate a bit more than 900MB in 32 bit mode. Sorry, I should've paid more attention :) -- http://mail.python.org/mailman/listinfo/python-list

Re: 64 bit Python

2005-02-14 Thread Mike C. Fletcher
Mathias Waack wrote: ... My python script allocates a bunch of strings each of 1024 characters and writes it in a cStringIO. And it fails after writing 512K of strings. Don't know how python restricts the heap size - but I'm fairly sure its not a restriction of the OS. Does cStringIO require co

Re: 64 bit Python

2005-02-14 Thread Mathias Waack
Ivan Voras wrote: > Mathias Waack wrote: >> amounts of data. I figured out that a 32 bit application on HP-UX >> cannot address more than 1 GB of memory. In fact (I think due to >> the overhead of memory management done by python) a python >> application cannot use much more than 500 MB of "real"

Re: 64 bit Python

2005-02-14 Thread Ivan Voras
Mathias Waack wrote: amounts of data. I figured out that a 32 bit application on HP-UX cannot address more than 1 GB of memory. In fact (I think due to the overhead of memory management done by python) a python application cannot use much more than 500 MB of "real" data. For this reason I don't thi