How can you copy (clone) a string?
Greg Ewing
see at my.signature
Wed Oct 4 19:38:37 EDT 2000
More information about the Python-list mailing list
Wed Oct 4 19:38:37 EDT 2000
- Previous message (by thread): How can you copy (clone) a string?
- Next message (by thread): How can you copy (clone) a string?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Peter.Rupp at ual.com wrote: > > What I'm trying to do is determine how large a user process can be > before it runs out of memory. >>> a = 1000 * 'a' >>> b = 1000 * 'a' >>> id(a) 1052344 >>> id(b) 1091800 >>> Loop until done. -- Greg Ewing, Computer Science Dept, University of Canterbury, Christchurch, New Zealand To get my email address, please visit my web page: http://www.cosc.canterbury.ac.nz/~greg
- Previous message (by thread): How can you copy (clone) a string?
- Next message (by thread): How can you copy (clone) a string?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list