From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,2cdc6c2ee911fe77 X-Google-Attributes: gid103376,public From: Florian Weimer Subject: Re: Ada vs. C++ Date: 2000/02/11 Message-ID: <87snyzoad9.fsf@deneb.cygnus.argh.org>#1/1 X-Deja-AN: 584646554 References: <38A37C97.9E181025@interact.net.au> <880g59$fv03@ftp.kvaerner.com> Mail-Copies-To: never Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@cygnus.argh.org X-Trace: deneb.cygnus.argh.org 950294146 21108 192.168.1.2 (11 Feb 2000 18:35:46 GMT) Organization: Penguin on board User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.4 Mime-Version: 1.0 Reply-To: Florian Weimer NNTP-Posting-Date: 11 Feb 2000 18:35:46 GMT Newsgroups: comp.lang.ada Date: 2000-02-11T18:35:46+00:00 List-Id: "Tarjei T. Jensen" writes: > You may want to read the december issue of the Linux journal (The interview > with the author of the Bazaar and the Cathedral). The interesting thing is the > rise of Python as a scripting language. It is claimed that 90% of errors in > "working" software is related to memory management. The people implementing long-living server processes in Python have experienced this. ;) Python memory management is based on reference counting, and it's quite easy to create cyclic data structures by accident.