[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Andre M. Descombes

Andre M. Descombes added the comment:

Thanks Martin,

I think you are right, perhaps someone on the python-list will have seen and
solved the problem before.

Andre

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1270>
__Thanks Martin,I think you are right, perhaps someone on the python-list 
will have seen and solved the problem before.Andre

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Andre M. Descombes

Andre M. Descombes added the comment:

I set the IMAGE_FILE_LARGE_ADDRESS_AWARE flag on python and I still get the
memoryerror exceptions. When they start happening there is still more than
1GB of available memory!

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1270>
__I set the IMAGE_FILE_LARGE_ADDRESS_AWARE flag on python and I still get the 
memoryerror exceptions. When they start happening there is still more than 1GB 
of available memory!

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Andre M. Descombes

Andre M. Descombes added the comment:

Martin,

it is really a bug, as I have tried on a machine with Windows 2003 server
and 4GBs of ram and it still doesn't run, and it does run on xp with only
1GB of ram.
Does python.exe have then IMAGE_FILE_LARGE_ADDRESS_AWARE bit set, that could
explain the behaviour it its not set.

Thanks,

Andre M. Descombes

On 10/12/07, Martin v. Löwis <[EMAIL PROTECTED]> wrote:
>
>
> Martin v. Löwis added the comment:
>
> Please understand that the purpose of this bug tracker is to track bug
> reports and patches to Python, not a means of getting help in using
> Python. If you think you have found a bug, please submit a bug report
> that allows us to reproduce the bug. If you merely need help, please use
> some of the Python community channels, such as [EMAIL PROTECTED]
>
> As for your question: I'm not aware of an issue with Windows 2003 server
> that could explain that behavior. Most likely, you get the MemoryError
> because you really ran out of memory. Try increasing the page file, and
> put more main memory into the machine.
>
> --
> nosy: +loewis
> resolution:  -> invalid
>
> __
> Tracker <[EMAIL PROTECTED]>
> <http://bugs.python.org/issue1270>
> __
>

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1270>
__Martin,it is really a bug, as I have tried on a machine with Windows 
2003 server and 4GBs of ram and it still doesn't run, and it does run on xp 
with only 1GB of ram. Does python.exe have then 
IMAGE_FILE_LARGE_ADDRESS_AWARE bit set, that could explain the behaviour it its 
not set.
Thanks,Andre M. DescombesOn 10/12/07, Martin v. 
Löwis <mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]> 
wrote:
Martin v. Löwis 
added the comment:Please understand that the purpose of this bug 
tracker is to track bug
reports and patches to Python, not a means of getting help in 
usingPython. If you think you have found a bug, please submit a bug 
reportthat allows us to reproduce the bug. If you merely need help, please 
use
some of the Python community channels, such as mailto:[EMAIL 
PROTECTED]">[EMAIL PROTECTED].As for your question: I'm not 
aware of an issue with Windows 2003 serverthat could explain that behavior. 
Most likely, you get the MemoryError
because you really ran out of memory. Try increasing the page file, 
andput more main memory into the machine.--nosy: 
+loewisresolution:  -> 
invalid__
Tracker <mailto:[EMAIL PROTECTED]">[EMAIL 
PROTECTED]><http://bugs.python.org/issue1270";>http://bugs.python.org/issue1270>__


___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Andre M. Descombes

New submission from Andre M. Descombes:

Hi everybody,

I am using Python 2.5.1.
I am creating a rather large dictionnary, with more than 8 million
entries, memory usage should be about 1.5GB. If I run the program on
Windows XP all runs fine, if I run the program on Windows Server 2003 I
start getting MemoryError exceptions around the 1GB boundary.
Is there a known issue with Windows 2003 Server?

Thanks,

André M. Descombes

--
components: Interpreter Core
messages: 56361
nosy: amdescombes
severity: critical
status: open
title: MemoryError when working on large dictionaries on Windows 2003 Server
type: resource usage
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1270>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Andre M. Descombes

Andre M. Descombes added the comment:

Apparently, XP is more lax when it comes to checking this flag on the
programs it runs then Windows 2003 Server. I am currently doing a test where
I have manually added the flag to python to see if this makes the problem go
away. I will post my results as soon as I have them.

Andre M. Descombes

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1270>
__Apparently, XP is more lax when it comes to checking this flag on the programs 
it runs then Windows 2003 Server. I am currently doing a test where I have 
manually added the flag to python to see if this makes the problem go away. I 
will post my results as soon as I have them.
Andre M. Descombes

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1270] MemoryError when working on large dictionaries on Windows 2003 Server

2007-10-12 Thread Andre M. Descombes

Andre M. Descombes added the comment:

Ok, so where would you recommend I move this discussion to?

Andre

On 10/12/07, Martin v. Löwis <[EMAIL PROTECTED]> wrote:
>
>
> Martin v. Löwis added the comment:
>
> > I set the IMAGE_FILE_LARGE_ADDRESS_AWARE flag on python and I still get
> the
> > memoryerror exceptions. When they start happening there is still more
> than
> > 1GB of available memory!
>
> Just in case it isn't clear: I still don't see an indication of a bug in
> Python here. If Python reports MemoryError, it likely means that the
> system has refused to provide Python with more memory, whether or not
> it has memory available for other purposes.
>
> Martin
>
> __
> Tracker <[EMAIL PROTECTED]>
> <http://bugs.python.org/issue1270>
> __
>

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1270>
__Ok, so where would you recommend I move this discussion 
to?AndreOn 10/12/07, Martin v. Löwis <mailto:[EMAIL 
PROTECTED]">[EMAIL PROTECTED]
> wrote:Martin v. Löwis added the comment:> I set the 
IMAGE_FILE_LARGE_ADDRESS_AWARE flag on python and I still get the
> memoryerror exceptions. When they start happening there is still more 
than> 1GB of available memory!Just in case it isn't clear: I 
still don't see an indication of a bug inPython here. If Python reports 
MemoryError, it likely means that the
system has refused to provide Python with more memory, whether or notit 
has memory available for other 
purposes.Martin__Tracker 
<mailto:[EMAIL PROTECTED]">
[EMAIL PROTECTED]><http://bugs.python.org/issue1270";>http://bugs.python.org/issue1270>__

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19135] Check out my profile on LinkedIn

2013-10-01 Thread Andre M. Descombes

New submission from Andre M. Descombes:

LinkedIn


I'd like to include you in my network to share updates and stay in touch.

- Andre

Andre Descombes
DQM at Coheris
Paris Area, France

Confirm that you know Andre Descombes:
https://www.linkedin.com/e/-3qcne3-hm8s7jcj-8/isd/16969775744/B54_m0Jy/?hs=false&tok=0vJyT35US96RY1

--
You are receiving Invitation to Connect emails. Click to unsubscribe:
http://www.linkedin.com/e/-3qcne3-hm8s7jcj-8/z2oU7dKDzpt2G7xQz2FC2SclHmnUGzmsk0c/goo/report%40bugs%2Epython%2Eorg/20061/I5638997180_1/?hs=false&tok=2uJc6djm696RY1

(c) 2012 LinkedIn Corporation. 2029 Stierlin Ct, Mountain View, CA 94043, USA.

--
messages: 198751
nosy: amdescombes
priority: normal
severity: normal
status: open
title: Check out my profile on LinkedIn

___
Python tracker 
<http://bugs.python.org/issue19135>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com