Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ITVictim

    Is there a Python installation test script available?

    Thank for that, Eric. I've had a problem with it, however. I looked "make test" up on python.org, and I found this page: http://www.python.org/dev/doc/devel/lib/regrtest.html. This mentions make test (for UNIX) and rt.bat (for PC), as well as the 'test' module. As I'm on PC, I tried to use...
  2. ITVictim

    Is there a Python installation test script available?

    Does anyone know if there is a test-script available that covers most of Python's functionality? I want to run a test script after installing Python on a new platform, and I wanted some confirmation that some obscure piece of functionality hasn't tripped up. This sound paranoid, but we had a...
  3. ITVictim

    Poor List performance - append() is too slow

    Unfortunately, needs must as the devil drives, as they say. The necessity is to read in a Nastran bulk data file which contains 24000 elements, so I'm going to be handling a lot of data whatever happens. You may well be right about the memory management. I'm going to have to look into this...
  4. ITVictim

    Poor List performance - append() is too slow

    Eric, Thanks you for you post. I've had an experiment with simpler cases, trying to isolate the problem, and what I think it is is the size of the object you are trying to append. For small objects such as integers, the size the list has to be before encountering this problem is huge. In my...
  5. ITVictim

    Poor List performance - append() is too slow

    I have a pretty basic problem: I've got a list of around 15000 (small) objects, which I am trying to store. I originally just appended them to a list, but this took 100% of the CPU and basically didn't finish. On probing, it looks as though the time it takes to append something to a list goes...

Part and Inventory Search

Back
Top