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
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
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
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
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
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
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
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"
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