From gurunath_s_r at yahoo.co.in Tue Apr 1 10:34:40 2003 From: gurunath_s_r at yahoo.co.in (=?iso-8859-1?q?gurunath=20rampur?=) Date: Tue, 1 Apr 2003 16:34:40 +0100 (BST) Subject: [SciPy-dev] help me sir... Message-ID: <20030401153440.25938.qmail@web8201.mail.in.yahoo.com> hello sir, i am doing seminar on b-splines. sir please send me all information on b-splines u have. sir i want to present as good as possible. i will give all information u want. thanking u sir -student Catch all the cricket action. Download Yahoo! Score tracker -------------- next part -------------- An HTML attachment was scrubbed... URL: From jerryma at hknetmail.com Tue Apr 1 21:13:29 2003 From: jerryma at hknetmail.com (Dr Jerry Mkhalele) Date: Tue, 1 Apr 2003 18:13:29 -0800 Subject: [SciPy-dev] EXPECTING YOUR REPLY ASAP Message-ID: <20030401180340.F00693EB09@www.scipy.com> >From : DR. Jerry Mkhalele Attn : OWNER, I am DR. Jerry Mkhalele, Director of Project, South Africa Ministry of Mining & Natural Resources. I am making this contact with you based on the committee's need for an individual/company who is willing to assist us with a solution to a money transfer. First and foremost, I apologized using this medium to reach you for a transaction/business of this magnitude, but this is due to Confidentiality and prompt access reposed on this medium. In unfolding this proposal, I want to count on you, as a respected and honest person to handle this transaction with sincerity, trust and confidentiality. I have decided to seek a confidential co-operation with you in the execution of the deal described Hereunder for the benefit of all parties and hope you will keep it as a top secret because of the nature ofthis transaction. Within the Ministry of Mining and Natural resources where I work as Director of Project Implemention and with the cooperation of four other top officials, we have in our possession as overduepayment bills totaling Nine Million, Six Hundred Thousand UnitedStates Dollars (US$9,600,000.) which we want to transfer abroad with the assistance and cooperation of a foreign company/individual to receive the said fund on our behalf or a reliable foreign non-company account to receive such funds. More so, we are handicapped in the circumstances, as the South Africa Civil Service Code of Conduct does not allow us to operate offshore account hence your importance in thewhole transaction. This amount $9.6m represents the balance of the total contract value executed on behalf of my Department by a foreign contracting firm, which we the officials over-invoiced deliberately. Though the actual contract cost have been paid to the original contractor, leaving the balance in the tune of the said amount which we have in principles gotten approval to remit by Key tested Telegraphic Transfer (K.T.T) to any foreign bank account you will provide by filing in an application through the Ministry of Justice here in South Africa for the transfer of rights and privileges of the former contractor to you. I have the authority of my partners involved to propose that should you be willing to assist us in the transaction, your share of the sum will be 20% of the $9.6 million, 70% for us and 5% for taxation and miscellaneous expenses while the remaining 5% will go to charity organizatio. The business itself is 100% safe, on your part provided you treat it with utmost secrecy and confidentiality. Also your area of specialization is not a hindrance to the successful execution of this transaction. I have reposed my confidence in you and hope that you will not disappoint me. Endeavor to contact me immediately through my email: to confirm whether or not you are interested in this deal. If you are not, it will enable me scout for another foreign partner to carry out this deal. I want to assure you that my partners and myself are in a position to make the payment of this claim possible provided you can give us a very strong Assurance and guarantee that our share will be secured and please, remember to treat this matter very confidential , because we will not comprehend with any form of exposure as we are still in active Government Service . Once again, remember that time is of great essence in this transaction. I wait in anticipation of your fullest co-operation. Yours faithfully, DR. Jerry Mkhalele -------------- next part -------------- A non-text attachment was scrubbed... Name: suponew.txt Type: application/octet-stream Size: 8945 bytes Desc: not available URL: From nwagner at mecha.uni-stuttgart.de Wed Apr 2 07:20:42 2003 From: nwagner at mecha.uni-stuttgart.de (Nils Wagner) Date: Wed, 02 Apr 2003 14:20:42 +0200 Subject: [SciPy-dev] [Fwd: [SciPy-user] Problems with io.read_array] Message-ID: <3E8AD59A.BEE95AC8@mecha.uni-stuttgart.de> -------------- next part -------------- An embedded message was scrubbed... From: Nils Wagner Subject: [SciPy-user] Problems with io.read_array Date: Wed, 02 Apr 2003 10:42:54 +0200 Size: 19823 URL: From trentm at ActiveState.com Thu Apr 3 18:04:47 2003 From: trentm at ActiveState.com (Trent Mick) Date: Thu, 3 Apr 2003 15:04:47 -0800 Subject: [SciPy-dev] a suggest patch for the traits package Message-ID: <20030403150447.A902@ActiveState.com> This is directed mainly at David Morrill. Hi David, we met at PyCon if you'll remember. I have started using your Traits package in some scripts of mine (I quite like it), and have a few of questions/suggested changes: 1. TraitFunction optionally allows for an "info" attribute on the validation function to specify a more specific description than "a legal value". How about using the function's docstring (if it exists) for "info": --- traits.py.orig Thu Apr 03 14:17:08 2003 +++ traits.py Thu Apr 03 14:14:03 2003 @@ -904,8 +904,10 @@ def info ( self ): try: return self.aFunc.info except: + if self.aFunc.__doc__: + return self.aFunc.__doc__ return 'a legal value' #-------------------------------------------------------------------------------- # 'TraitEnum' class: End of Patch. This patch still allows an "info" attribute to override the docstring if you think that that is valueable to maintain. If not, if wouldn't break any of my code to drop the 'aFunc.info' option in favor of using the docstring. :) 2. Trait.do_list() does not currently translate a MethodType object (i.e. a class method) to a TraitFunction. I think it should: --- traits.py.orig Thu Apr 03 14:17:08 2003 +++ traits.py Thu Apr 03 14:49:47 2003 @@ -341,9 +341,10 @@ elif typeItem == DictType: map.update( item ) elif typeItem == ClassType: other.append( TraitInstance( item ) ) - elif typeItem == FunctionType: + elif (typeItem == FunctionType or + typeItem == MethodType): other.append( TraitFunction( item ) ) elif (isinstance( item, TraitHandler ) or isinstance( item, TraitDelegate ) or isinstance( item, Trait )): End of Patch. What do you think? These two patches allow one to do something like the following: from traits import * class CheechAndChong(HasTraits): __traits__ = {"badges": None} def __init__(self): self.__traits__["badges"] = (self.validate_badges,) def validate_badges(self, object, name, value): "nuthin'" if not value: return value raise ValueError("we don't need no stinkin' badges") c = CheechAndChong() c.badges = 2 raises this error string: traits.traits.TraitError: The 'badges' trait of a CheechAndChong instance must be nuthin', but a value of 2 was specified. 3. The mixed tab spacing in the .py files makes it very difficult to edit these files. Would you consider standardizing on 4 space indentations? If so I would be happy to do a lot of the leg work to reindent. (Actually, I think reindent.py in the Python source tree will do most of that leg work automatically.) Cheers, Trent -- Trent Mick TrentM at ActiveState.com From kingdomedu at access-4-free.com Mon Apr 7 14:41:17 2003 From: kingdomedu at access-4-free.com (Covenant Academy) Date: Mon, 7 Apr 2003 14:41:17 Subject: [SciPy-dev] Where Knowledge is Power Message-ID: <20030407193050.04B283EB09@www.scipy.com> An HTML attachment was scrubbed... URL: From dmorrill at enthought.com Mon Apr 7 14:57:31 2003 From: dmorrill at enthought.com (David C. Morrill) Date: Mon, 7 Apr 2003 13:57:31 -0500 Subject: [SciPy-dev] a suggest patch for the traits package References: <20030403150447.A902@ActiveState.com> Message-ID: <004101c2fd37$8b2324c0$8201a8c0@dellbert> Trent: Thanks for the suggestions/patches! I don't see any problem with adding any of your changes...I'll see if I can do it later today. As to the indenting, Eric and I have agreed that the indenting needs to be "fixed" to be Python standard, but until now no one other than me has been looking at the code. Now that someone else is, maybe I'll fix it in the near future. Thanks for the reminder :-) BTW, over the week-end I just finished the first draft of the "Traits User's Guide" (about 60 pages long). I'll be getting it up on the website sometime this week, but if you're interested I can send you something sooner (PDF or .doc). Let me know if you're interested... Regards, Dave Morrill ----- Original Message ----- From: "Trent Mick" To: Sent: Thursday, April 03, 2003 6:04 PM Subject: [SciPy-dev] a suggest patch for the traits package > > This is directed mainly at David Morrill. Hi David, we met at PyCon if you'll > remember. > > I have started using your Traits package in some scripts of mine > (I quite like it), and have a few of questions/suggested changes: > > 1. TraitFunction optionally allows for an "info" attribute on the > validation function to specify a more specific description than "a > legal value". How about using the function's docstring (if it exists) > for "info": > > --- traits.py.orig Thu Apr 03 14:17:08 2003 > +++ traits.py Thu Apr 03 14:14:03 2003 > @@ -904,8 +904,10 @@ > def info ( self ): > try: > return self.aFunc.info > except: > + if self.aFunc.__doc__: > + return self.aFunc.__doc__ > return 'a legal value' > > #--------------------------------------------------------------------------- ----- > # 'TraitEnum' class: > End of Patch. > > This patch still allows an "info" attribute to override the > docstring if you think that that is valueable to maintain. If not, if > wouldn't break any of my code to drop the 'aFunc.info' option in > favor of using the docstring. :) > > > 2. Trait.do_list() does not currently translate a MethodType object > (i.e. a class method) to a TraitFunction. I think it should: > > --- traits.py.orig Thu Apr 03 14:17:08 2003 > +++ traits.py Thu Apr 03 14:49:47 2003 > @@ -341,9 +341,10 @@ > elif typeItem == DictType: > map.update( item ) > elif typeItem == ClassType: > other.append( TraitInstance( item ) ) > - elif typeItem == FunctionType: > + elif (typeItem == FunctionType or > + typeItem == MethodType): > other.append( TraitFunction( item ) ) > elif (isinstance( item, TraitHandler ) or > isinstance( item, TraitDelegate ) or > isinstance( item, Trait )): > End of Patch. > > > What do you think? These two patches allow one to do something like > the following: > > from traits import * > > class CheechAndChong(HasTraits): > __traits__ = {"badges": None} > def __init__(self): > self.__traits__["badges"] = (self.validate_badges,) > def validate_badges(self, object, name, value): > "nuthin'" > if not value: > return value > raise ValueError("we don't need no stinkin' badges") > > c = CheechAndChong() > c.badges = 2 > > raises this error string: > > traits.traits.TraitError: The 'badges' trait of a CheechAndChong instance must be nuthin', but a value of 2 was specified. > > > 3. The mixed tab spacing in the .py files makes it very difficult to > edit these files. Would you consider standardizing on 4 space > indentations? If so I would be happy to do a lot of the leg work to > reindent. (Actually, I think reindent.py in the Python source tree > will do most of that leg work automatically.) > > > Cheers, > Trent > > -- > Trent Mick > TrentM at ActiveState.com > _______________________________________________ > Scipy-dev mailing list > Scipy-dev at scipy.net > http://www.scipy.net/mailman/listinfo/scipy-dev From eric at enthought.com Mon Apr 7 15:28:42 2003 From: eric at enthought.com (eric jones) Date: Mon, 7 Apr 2003 14:28:42 -0500 Subject: [SciPy-dev] a suggest patch for the traits package In-Reply-To: <004101c2fd37$8b2324c0$8201a8c0@dellbert> Message-ID: <02c701c2fd3b$e961e540$8901a8c0@ERICDESKTOP> Hey Trent, > > > > > > 3. The mixed tab spacing in the .py files makes it very difficult to > > edit these files. Would you consider standardizing on 4 space > > indentations? If so I would be happy to do a lot of the leg work to > > reindent. (Actually, I think reindent.py in the Python source tree > > will do most of that leg work automatically.) Sounds good. Send your preferred login and password to joe at enthought.com, and he'll get you read write access to the repository. Thanks for the patches and the offer to help! eric From princessjoyce at totalise.co.uk Tue Apr 8 05:11:04 2003 From: princessjoyce at totalise.co.uk (Princess Joyce Abonime) Date: Tue, 8 Apr 2003 11:11:04 +0200 Subject: [SciPy-dev] Please help me in the name of God Message-ID: <20030408105604.455843EB09@www.scipy.com> The Palace of King of Ogoni Kingdom, Ogoni Oil producing community, Rivers State Nigeria. Dear Sir, I am Princess Joyce Abonime, daughter of HRH King Solomon Abonime, the king of Ogoni Kingdom. I am 25 years old and a graduate of Mass Communication. My father was the king of Ogoni Kingdom the highest oil producing area in Nigeria. He was in charge of reviving royalties from the multi-national oil companies and government on behalf of the oil producing communities in Nigeria. After the hanging of the Ogoni Nine(9) including Ken Saro Wiwa by the late dictator General Sani Abacha, my father suffered stroke and died in August27th this year. But before his death, he called me and told me he has Twenty Three Million Five Hundred and Sixty Thousand Dollars (USD23,560,000.00) cash in his possession, specially deposited in a Security vault company here. He advised me not to tell anybody except my mother who is the last wife of the (8) eight wives that he married. My mother did not bear any male child for him. Which implies that all my father?s properties, companies e.t.c., we have no share in them because my mother has no male child according to African Tradition. My father therefore secretly gave me all the relevant documents of the said money, and told me that I should use this money with my mother and my younger sisters because he knows that tradtionally, if he dies we cannnot get anything, as inheritance. He importantly advised me that I should seek foreign assistannce and that I should not invest this money here in Nigeria because of his other wives and male children who happen to be my elders. I am soliciting for your immediate assistance to get a Bungalow for us, where I will live with my mother and two younger sisters and further advise me where and how I will invest the balance money overseas, possibly on products of your company and other profitable ventures. I believe that by the special grace of God, you will help us move this money out of Nigeria to any country of your choice where we can invest this money judiciously with you. You are entitled to a reasonable part of this money based on our agreement, and God will bless you as you help us. PLease reply through my e-mail. Looking forward to hear from you as soon as possible. Remain blessed. Princess Joyce Abonime. From t_mgbada1 at totalise.co.uk Tue Apr 8 16:57:18 2003 From: t_mgbada1 at totalise.co.uk (Rev (Mrs.) Tina Mgbada) Date: Tue, 8 Apr 2003 22:57:18 +0200 Subject: [SciPy-dev] Please help Message-ID: <20030408224258.8E7143EB09@www.scipy.com> FROM THE DESK OF Rev (Mrs.) Tina Mgbada N N P C. I am Rev (Mrs.) Tina Mgbada, Personal Assistant to the Group Managing Director of the Nigerian National Petroleum Corporation (NNPC).I have been mandated by my boss Mr. Jackson Gauis Obaseki to urgently look for a trustworthy business minded individual who can conveniently handle a transaction without much stress. On the 23rd/24th of December 2002, the Office building of the Nigerian National Petroleum Corporation was gutted with fire, although a youth movement claims responsibility, we the insider know that it was perpetrated by High ranking Government officials who want to cover their trace of embezzling the enormous Nigerian Oil money and to avoid being probed by the Independent Corrupt Practices Commission. As it is now, there are three of these papers that were with me for payment when this happened and after showing it to my boss, he decided this was a one time chance which would be carried out successfully with out any risk. The documents are already approved payment vouchers for the payment of us$18 million meant for the Organization Administrative Arm of the NNPC. As it is now, we have claimed it was burnt in the Fire but also my boss has issued instruction for the transfer of the money to the Union Bank of Switzerland (UBS AG), with the Identification of the Beneficiary as Confidential and to be provided in a later time. If you are ready to assist us, my boss Mr. Jackson Gauis-Obaseki, would write a letter stating you as the beneficiary of the fund. You would have to take charge of the collection of the fund immediately on his behave and I would come over to supervise the disbursement of the fund. For the above to be carried out without any hitch, you would have to provide quickly your full name, Banking Account and bank address for the transfer, and your personal Telephone and fax number as the UBS would be contacting you strictly through fax. My boss has agreed to compensate you with US$5 Million and pay you any expenses you may incur during the course of this transaction. Please being that as soon as the UBS contacts you, we would not have right over the said fund and the UBS would only deal with the stated beneficiary therefore we demands that you always give us a feed back to keep us abreast. As soon as I see your response and willingness to help as regards to this, I will furnish you on the next line of action to take, but be rest assured that this transaction is 100% risk free, NOTE: I know there may be scams and junk mails flying here and there on the internet but certainly, this is not thesame. Please do not fail to understand that in spite of all that, opportunities of this kind still around. Now I urge you to take this message seriously and with an open mind, with good faith and trust. Join me and I am assuring you now that you will never be disappointed. Treat as strictly confidential. NOTE:Do contact me with my private email address (t_mgbada at totalise.co.uk) Best regards, Rev. Dr. (Mrs.) Tina Mgbada From roybryant at seventwentyfour.com Wed Apr 9 20:48:15 2003 From: roybryant at seventwentyfour.com (Roy at SEVENtwentyfour Inc.) Date: Wed, 09 Apr 2003 20:48:15 -0400 Subject: [SciPy-dev] Broken link in www.scipy.org Message-ID: <20030410013407.2290A3EB09@www.scipy.com> An embedded and charset-unspecified text was scrubbed... Name: not available URL: From dmorrill at enthought.com Thu Apr 10 18:31:34 2003 From: dmorrill at enthought.com (David C. Morrill) Date: Thu, 10 Apr 2003 17:31:34 -0500 Subject: [SciPy-dev] New user's guides available Message-ID: <004c01c2ffb0$f1295520$8201a8c0@dellbert> I just wanted to point out to everyone that first drafts of the following documents are available now on the scipy.org web site: - Chaco User's Guide - Chaco plt Module User's Guide - Traits User's Guide All documents are available in both HTML and PDF format, and are available from their respective web pages: http://www.scipy.org/site_content/chaco http://www.scipy.org/site_content/traits Feedback on any of these documents will be greatly appreciated... Dave Morrill -------------- next part -------------- An HTML attachment was scrubbed... URL: From dmorrill at enthought.com Fri Apr 11 12:02:59 2003 From: dmorrill at enthought.com (David C. Morrill) Date: Fri, 11 Apr 2003 11:02:59 -0500 Subject: [SciPy-dev] PyCon 2003 Papers and Presentations on Trais and Chaco Message-ID: <000801c30043$d3786f00$827ba8c0@dellbert> As a follow-up to yesterday's announcement concerning the new user's guides, I just wanted to mention that the papers and PowerPoint presentations I gave on Chaco and Traits at PyCon 2003 a couple of weeks ago are now available on the Chaco and Traits pages on scipy.org. I just uploaded the PowerPoint presentations this morning... Dave Morrill -------------- next part -------------- An HTML attachment was scrubbed... URL: From vacaciones at en-orlando.com Mon Apr 14 07:59:14 2003 From: vacaciones at en-orlando.com (Vacaciones Soņadas) Date: 14 Apr 2003 11:59:14 -0000 Subject: [SciPy-dev] Viaje a Orlando y reciba su premio sorpresa!!! Message-ID: <20030414115914.94086.qmail@oblivion.shacknet.nu> An HTML attachment was scrubbed... URL: From vacaciones at en-orlando.com Mon Apr 14 08:08:38 2003 From: vacaciones at en-orlando.com (Vacaciones Soņadas) Date: 14 Apr 2003 12:08:38 -0000 Subject: [SciPy-dev] Viaje a Orlando y reciba su premio sorpresa!!! Message-ID: <20030414120838.1505.qmail@oblivion.shacknet.nu> An HTML attachment was scrubbed... URL: From vacaciones at en-orlando.com Mon Apr 14 08:48:41 2003 From: vacaciones at en-orlando.com (Vacaciones Soņadas) Date: 14 Apr 2003 12:48:41 -0000 Subject: [SciPy-dev] Viaje a Orlando y reciba su premio sorpresa!!! Message-ID: <20030414124841.84335.qmail@routed.ath.cx> An HTML attachment was scrubbed... URL: From vacaciones at en-orlando.com Mon Apr 14 08:57:01 2003 From: vacaciones at en-orlando.com (Vacaciones Soņadas) Date: 14 Apr 2003 12:57:01 -0000 Subject: [SciPy-dev] Viaje a Orlando y reciba su premio sorpresa!!! Message-ID: <20030414125701.2635.qmail@routed.ath.cx> An HTML attachment was scrubbed... URL: From bob at bob.com Tue Apr 15 19:34:21 2003 From: bob at bob.com (bob at bob.com) Date: Wed, 16 Apr 2003 00:34:21 +0100 Subject: [SciPy-dev] Rate N*U*D*E Photos ! Message-ID: <20030416002512.EDB5D3EB09@www.scipy.com>

www.KinkyFriendFinder.com

* Rate Nude Photos!
* Meet our HOT members!
* Submit your photo!
* Find out how HOT you are!







-------------- next part -------------- An HTML attachment was scrubbed... URL: From vacaciones at orlando.nu Wed Apr 16 05:44:21 2003 From: vacaciones at orlando.nu (Vacaciones Increibles) Date: 16 Apr 2003 09:44:21 -0000 Subject: [SciPy-dev] Usted y su familia pueden obtener un viaje fantastico!!! Message-ID: <20030416094421.15174.qmail@oblivion.shacknet.nu> An HTML attachment was scrubbed... URL: From dmp2000 at mail.ru Thu Apr 17 03:20:41 2003 From: dmp2000 at mail.ru (Andre Alves) Date: Thu, 17 Apr 2003 08:20:41 +0100 Subject: [SciPy-dev] Chaco's setup Message-ID: <000501c304b2$0b17ba20$54650dd5@andre> Hi, Mr. E. Jones, my attempt to install CHACO from the source chaco-0.1.0_alpha_32.708.zip was failed, because SETUP need FREETYPE2 and GZIP, absents in the package. After including needed from (http://sourceforge.net/project/showfiles.php?group_id=23617, freetype-2.1.2-src.zip and gzip-1.2.4-src.zip ) I was getting this message >>> __file__= D:\chaco-0.1.0_alpha_32.708\scipy_base\__init__.pyc running build_ext building '_ft' extension Traceback (most recent call last): File "C:\PYTHON22\lib\site-packages\Pythonwin\pywin\framework\scriptutils.py", line 310, in RunScript exec codeObject in __main__.__dict__ File "D:\3\chaco-0.1.0_alpha_32.708\setup.py", line 92, in ? mod.compile( location = build_dir, verbose = 2 ) File "weave\ext_tools.py", line 332, in compile verbose = verbose, **kw) File "weave\build_tools.py", line 242, in build_extension setup(name = module_name, ext_modules = [ext],verbose=verb) File "C:\PYTHON22\lib\distutils\core.py", line 157, in setup raise SystemExit, "error: " + str(msg) CompileError: error: file 'D:\3\chaco-0.1.0_alpha_32.708\freetype\freetype2\src\gzip/ftgzip.c' does not exist >>> What versions of FREETYPE2 and GZIP I must include in the chaco's source to get the success? The attempt was made under msWindows with Visual C++ , Python222 and Numeric-23.0 installed. Best regards, Andre Alves From marlukumba at rediffmail.com Tue Apr 22 12:24:58 2003 From: marlukumba at rediffmail.com (marlukumba at rediffmail.com) Date: Tue, 22 Apr 2003 11:24:58 -0500 (CDT) Subject: [SciPy-dev] RE:LUKUMBA MARK JNR Message-ID: <20030422162458.459973EB09@www.scipy.com> charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII" Reply-To: marlukumba at rediffmail.com Date: Tue, 22 Apr 2003 17:31:51 +0200 X-Priority: 3 X-Library: Indy 9.00.10 X-Mailer: Foxmail DEAR SIR/MADAM MAY I TAKE THE HONOUR TO INTRODUCE MYSELF. I AM MR MARK LUKUMBA JNR THE SON TO GENERAL MARK LUKUMBA OF ANGOLA OF THE UNITA REBELS. I HAVE BEEN MANDATED BY MY FATHER TO SEARCH FOR A RELIABLE AND HONEST FOREIGN ASSOCIATE TO HELP US REALISE A BUSINESS VENTURE INVOLVING THE SUM OF USD17MILLION (SEVENTEEN MILLION UNITED STATE DOLLARS) IN CASH AND DIAMONDS WORTH USD 5 MILLION. YEARS AGO MY FATHER WAS PRIVILEGED TO GET HOLD OF RAW DIAMONDS IN ANGOLA DURING THE WAR, IN HIS CAPACITY AS A GENERAL IN THE UNITA REBELS HE MADE AWAY WITH LARGE QUANTITIES OF DIAMONDS WHICH HE LATER SOLD ON BEHALF OF HIS OTHER GENERALS, HE THEN KEPT SOME QUANTITY FOR FURTHER SALES. HIS FARE SHARE WAS ABOUT USD 20 MILLION, DUE TO THE FACT THAT HE IS STILL BEING MONITORED AND ACCUSED OF THIS ACT, THE POSSIBILITY OF TRANSFERRING THIS MONEY WAS A PROBLEM BUT MY FATHER FINALLY DECIDED THAT I MOVE WITH THIS MONEY TO EUROPE AND THAT WAS ARRANGED SO THAT THIS MONEY COULD BE SAVE. I THEN TRAVELLED UNDER DIPLOMATIC MEANS TO EUROPE. I ARRIVED SAFELY IN EUROPE WITH THE BOX CONTAINING THE CASH AND DIAMOND BUT DUE TO MY STATUS AS AN ASYLUM SEEKER I CAN NOT DECLARE THIS OR OPEN UP AN ACCOUNT WITH IT THUS, I DEPOSITED IT WITH A SECURITY FINANCE FIRM HERE WE HAVE CAREFULLY MAPPED OUT THE MODALITY TO MAKE YOU LAY CLAIMS TO THIS MONEY AS SOON WE FIND A RELIABLE AND TRUST WORTHY FOREIGN ASSOCIATE IN WHOSE CUSTODY WE SHALL ENTRUST THIS SUM AND DIAMONDS. THIS TRANSACTION IS 100% RISK FREE AS LONG AS YOU ADHERE STRICTLY TO OUR INSTRUCTIONS. THE NEED FOR STRICT CONFIDENTIALITY CANNOT BE OVER EMPHASIZED, CONSIDERING THE NATURE OF THIS TRANSACTION. WE HAVE DECIDED TO REWARD YOU WITH 15% FOR YOUR ASSISTANCE AND PARTICIPATION WHILE 5% HAVE BEEN SET ASIDE FOR ANY EXPENSES THAT MAY BE INCURRED DURING THIS TRANSACTION. DETAILS OF HOW WE INTEND TO CARRY OUT THIS PROJECT WILL BE DISCUSSED AS SOON AS WE GET A RESPONSE FROM YOU. WE AWAIT YOUR RESPONSE, AS WE LOOK FORWARD TO A GOOD BUSINESS RELATIONSHIP WITH YOU, YOU CAN EQUALLY REACH ME ON THIS EMAIL. BEST REGARDS, LUKUMBA MARK JNR From marlukumba at rediffmail.com Tue Apr 22 14:41:44 2003 From: marlukumba at rediffmail.com (marlukumba at rediffmail.com) Date: Tue, 22 Apr 2003 13:41:44 -0500 (CDT) Subject: [SciPy-dev] RE:LUKUMBA MARK JNR Message-ID: <20030422184144.05A4A3EB09@www.scipy.com> charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII"; charset="US-ASCII" Reply-To: marlukumba at rediffmail.com Date: Tue, 22 Apr 2003 19:48:35 +0200 X-Priority: 3 X-Library: Indy 9.00.10 X-Mailer: Foxmail DEAR SIR/MADAM MAY I TAKE THE HONOUR TO INTRODUCE MYSELF. I AM MR MARK LUKUMBA JNR THE SON TO GENERAL MARK LUKUMBA OF ANGOLA OF THE UNITA REBELS. I HAVE BEEN MANDATED BY MY FATHER TO SEARCH FOR A RELIABLE AND HONEST FOREIGN ASSOCIATE TO HELP US REALISE A BUSINESS VENTURE INVOLVING THE SUM OF USD17MILLION (SEVENTEEN MILLION UNITED STATE DOLLARS) IN CASH AND DIAMONDS WORTH USD 5 MILLION. YEARS AGO MY FATHER WAS PRIVILEGED TO GET HOLD OF RAW DIAMONDS IN ANGOLA DURING THE WAR, IN HIS CAPACITY AS A GENERAL IN THE UNITA REBELS HE MADE AWAY WITH LARGE QUANTITIES OF DIAMONDS WHICH HE LATER SOLD ON BEHALF OF HIS OTHER GENERALS, HE THEN KEPT SOME QUANTITY FOR FURTHER SALES. HIS FARE SHARE WAS ABOUT USD 20 MILLION, DUE TO THE FACT THAT HE IS STILL BEING MONITORED AND ACCUSED OF THIS ACT, THE POSSIBILITY OF TRANSFERRING THIS MONEY WAS A PROBLEM BUT MY FATHER FINALLY DECIDED THAT I MOVE WITH THIS MONEY TO EUROPE AND THAT WAS ARRANGED SO THAT THIS MONEY COULD BE SAVE. I THEN TRAVELLED UNDER DIPLOMATIC MEANS TO EUROPE. I ARRIVED SAFELY IN EUROPE WITH THE BOX CONTAINING THE CASH AND DIAMOND BUT DUE TO MY STATUS AS AN ASYLUM SEEKER I CAN NOT DECLARE THIS OR OPEN UP AN ACCOUNT WITH IT THUS, I DEPOSITED IT WITH A SECURITY FINANCE FIRM HERE WE HAVE CAREFULLY MAPPED OUT THE MODALITY TO MAKE YOU LAY CLAIMS TO THIS MONEY AS SOON WE FIND A RELIABLE AND TRUST WORTHY FOREIGN ASSOCIATE IN WHOSE CUSTODY WE SHALL ENTRUST THIS SUM AND DIAMONDS. THIS TRANSACTION IS 100% RISK FREE AS LONG AS YOU ADHERE STRICTLY TO OUR INSTRUCTIONS. THE NEED FOR STRICT CONFIDENTIALITY CANNOT BE OVER EMPHASIZED, CONSIDERING THE NATURE OF THIS TRANSACTION. WE HAVE DECIDED TO REWARD YOU WITH 15% FOR YOUR ASSISTANCE AND PARTICIPATION WHILE 5% HAVE BEEN SET ASIDE FOR ANY EXPENSES THAT MAY BE INCURRED DURING THIS TRANSACTION. DETAILS OF HOW WE INTEND TO CARRY OUT THIS PROJECT WILL BE DISCUSSED AS SOON AS WE GET A RESPONSE FROM YOU. WE AWAIT YOUR RESPONSE, AS WE LOOK FORWARD TO A GOOD BUSINESS RELATIONSHIP WITH YOU, YOU CAN EQUALLY REACH ME ON THIS EMAIL. BEST REGARDS, LUKUMBA MARK JNR From carlson3 at aol.com Tue Apr 22 21:49:21 2003 From: carlson3 at aol.com (Della Mead) Date: Wed, 23 Apr 03 01:49:21 GMT Subject: [SciPy-dev] If someone offered you extra money every day, would you accept it? Message-ID: <8v71$-7x9944v-4f5164l3c$-4$9l3@dpv2av0mt> An HTML attachment was scrubbed... URL: From info at kestlerfinancial.com Wed Apr 23 10:08:06 2003 From: info at kestlerfinancial.com (Kestler Financial Group) Date: Wed, 23 Apr 2003 09:08:06 -0500 (CST) Subject: [SciPy-dev] Request-a-Quote Message-ID: An HTML attachment was scrubbed... URL: From Kasper.Souren at ircam.fr Tue Apr 22 17:18:29 2003 From: Kasper.Souren at ircam.fr (Kasper Souren) Date: Tue, 22 Apr 2003 21:18:29 +0000 Subject: [SciPy-dev] problem: xplt.imagesc from wxPython Message-ID: <200304222118.29400.Kasper.Souren@ircam.fr> Hi! I decided to start trying some stuff with wxPython. And I really like it. And because chaco can't handle imagesc'es yet, I wanted to do them with scipy.xplt. But this is what I got: """ Traceback (most recent call last): File "./wxStructures.py", line 27, in OnSelChanged xplt.imagesc_cb(self.object.feature_vectors) File "/usr/lib/python2.2/site-packages/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/lib/python2.2/site-packages/scipy_base/ppimport.py", line 190, in _ppimport_importer module = __import__(name,None,None,['*']) File "/usr/lib/python2.2/site-packages/scipy/xplt/__init__.py", line 47, in ? from Mplot import * File "/usr/lib/python2.2/site-packages/scipy/xplt/Mplot.py", line 46, in ? _user_path = _getdir() File "/usr/lib/python2.2/site-packages/scipy/xplt/Mplot.py", line 41, in _getdir if not weave.catalog.is_writable(path): File "/usr/lib/python2.2/site-packages/scipy_base/ppimport.py", line 212, in __getattr__ return getattr(module, name) AttributeError: 'module' object has no attribute 'catalog' """ Then I tried to localize the problem and I ran into another issue that's probably related to the one above: the imagesc window pops up, but nothing is shown inside. The little script can be found at [1]. bye, Kasper [1] http://www.ircam.fr/equipes/analyse-synthese/souren/python/wxTest.py From pearu at cens.ioc.ee Wed Apr 23 12:38:01 2003 From: pearu at cens.ioc.ee (Pearu Peterson) Date: Wed, 23 Apr 2003 19:38:01 +0300 (EEST) Subject: [SciPy-dev] problem: xplt.imagesc from wxPython In-Reply-To: <200304222118.29400.Kasper.Souren@ircam.fr> Message-ID: On Tue, 22 Apr 2003, Kasper Souren wrote: > I decided to start trying some stuff with wxPython. And I really like it. And > because chaco can't handle imagesc'es yet, I wanted to do them with > scipy.xplt. But this is what I got: > > """ > Traceback (most recent call last): > File "./wxStructures.py", line 27, in OnSelChanged > xplt.imagesc_cb(self.object.feature_vectors) > File "/usr/lib/python2.2/site-packages/scipy_base/ppimport.py", line 211, in > __getattr__ > module = self._ppimport_importer() > File "/usr/lib/python2.2/site-packages/scipy_base/ppimport.py", line 190, in > _ppimport_importer > module = __import__(name,None,None,['*']) > File "/usr/lib/python2.2/site-packages/scipy/xplt/__init__.py", line 47, in > ? > from Mplot import * > File "/usr/lib/python2.2/site-packages/scipy/xplt/Mplot.py", line 46, in ? > _user_path = _getdir() > File "/usr/lib/python2.2/site-packages/scipy/xplt/Mplot.py", line 41, in > _getdir > if not weave.catalog.is_writable(path): > File "/usr/lib/python2.2/site-packages/scipy_base/ppimport.py", line 212, in > __getattr__ > return getattr(module, name) > AttributeError: 'module' object has no attribute 'catalog' > """ > > Then I tried to localize the problem and I ran into another issue that's > probably related to the one above: the imagesc window pops up, but nothing is > shown inside. The little script can be found at [1]. When I ran the script [1] from a python prompt or using 'python -i' then a huge button pops up with label "do imagesc thingy!". Pressing it opens another window that is blank. When I close the button window, the "imagesc thingy" is finally displayed. Considering the above behaviour I don't think that the two problems are related. Could you provide a simple example that demonstrates only the first problem? Also try importing weave *before* importing scipy. This will avoid ppimport hooks for weave and might solve the first problem. Pearu From Kasper.Souren at ircam.fr Tue Apr 22 19:28:09 2003 From: Kasper.Souren at ircam.fr (Kasper Souren) Date: Tue, 22 Apr 2003 23:28:09 +0000 Subject: [SciPy-dev] problem: xplt.imagesc from wxPython In-Reply-To: References: Message-ID: <200304222328.09910.Kasper.Souren@ircam.fr> > When I ran the script [1] from a python prompt or using 'python -i' then > a huge button pops up with label "do imagesc thingy!". Pressing it opens > another window that is blank. When I close the button window, the > "imagesc thingy" is finally displayed. > > Considering the above behaviour I don't think that the two problems are > related. You are right. > Could you provide a simple example that demonstrates only the first > problem? > > Also try importing weave *before* importing scipy. This will > avoid ppimport hooks for weave and might solve the first problem. This was sufficient to get a window popped up! I had tried adding "from scipy import *" to the wx-stuff, but I had it placed after "from wxPython.wx import *". (I don't actually need scipy in the wx stuff, since all that is happening in other .py files.) Placing it before the wx import line fixed the problem. When trying a "from weave import *" instead it doesn't work though. But now I do get the pygist window, but it doesn't draw the stuff. So that's the second problem. How could I solve this? bye, Kasper From 1ttr5lcikv at utdk.com Thu Apr 24 20:02:15 2003 From: 1ttr5lcikv at utdk.com (Darren Anderson) Date: Fri, 25 Apr 03 00:02:15 GMT Subject: [SciPy-dev] Bulk Email Advertise to 28 Million People - $129 - didwzopxippaszl Message-ID: An HTML attachment was scrubbed... URL: From ks7uqzz25 at imaginationcostume.com Fri Apr 25 00:03:15 2003 From: ks7uqzz25 at imaginationcostume.com (Everette Butts) Date: Fri, 25 Apr 03 04:03:15 GMT Subject: [SciPy-dev] Bulk Email Advertise to 28 Million People - $129 - wje wviwzxg q Message-ID: <7$1mpym6jm8gh50@v485j72> An HTML attachment was scrubbed... URL: From zreuter at aol.com Fri Apr 25 14:10:25 2003 From: zreuter at aol.com (Grover Dick) Date: Fri, 25 Apr 03 18:10:25 GMT Subject: [SciPy-dev] Doctor's weight loss ..........................diadem Message-ID: An HTML attachment was scrubbed... URL: From h5d2l3v2q at imagination-unlimited.com Fri Apr 25 20:19:01 2003 From: h5d2l3v2q at imagination-unlimited.com (Vivian Cleveland) Date: Sat, 26 Apr 03 00:19:01 GMT Subject: [SciPy-dev] Bulk Email Advertise to 28 Million People - $129 - qt gp ss Message-ID: An HTML attachment was scrubbed... URL: From james at hello.com Sat Apr 26 05:18:01 2003 From: james at hello.com (james at hello.com) Date: Sat, 26 Apr 2003 17:18:01 +0800 Subject: [SciPy-dev] Italian-crafted Rolex - only $65 - $140!! Free SHIPPING!! Message-ID: <20030426100951.E89D43EB09@www.scipy.com> An HTML attachment was scrubbed... URL: From jmobutu457 at rediffmail.com Sat Apr 26 07:31:17 2003 From: jmobutu457 at rediffmail.com (joseph mobutu) Date: Sat, 26 Apr 2003 13:31:17 +0200 Subject: [SciPy-dev] URGENT ASSISTANCE Message-ID: <20030426122612.3EEC03EB0C@www.scipy.com> Dear Sir/Madam, You may be surprise to receive this email since you do not know me. I am the son of the late president of Democratic Republic Of Zaire, President Mobutu Sese Seko, ( now The Republic Of Congo, under the leadership of the son of Mr. Laurent Kabila). I presume you are aware there is a financial dispute between my family ( THEMOBUTU ) and the present civilian Government. This is based on what they believe as bad and corrupt governance on my late father's part. May his soul rest in perfect peace. As you might have heard how a lot of my father's bank account in Switzerland and North America have been frozen. Following the above named reasons, I am soliciting for your humble and confidential assistance to take custody of THIRTY Million United States Dollars ( US$30,000,000.00 ), also to front for me in the areas of business you desire profitable. These funds have secretly been deposited into a confidential Security Company, where it can easily be withdrawn or paid to a recommended beneficiary. The funds will be released to you by the Security Company, based on my recommendations, on that note, you will be presented as my partner who will be fronting for me and my family in any subsequent ventures. Myself and my mother have decided to give 20% to you if you are able to help us claim this consignment. We have also decided to give you any money spent on phone calls or traveling expenses in the course of this transaction at the end of the transaction. Please, I need your entire support and co-operation for the success of this transaction, your utmost confidentiality and secrecy is highly required, due to my family's present predicament. I sincerely will appreciate your willingness to assist us as soon as possible. I am presently in the refugee camp here in the Netherlands under the united nations refugee camp in Netherlands and I can be reached on phone number +31.645.238.205 or E-mail me at josephmobutu12730 at rediffmail.com for more information on how we can proceed in this transaction. Please indicate your interest by sending your telephone and fax numbers or call me up at anytime. I sincerely will appreciate your acknowledgement as soon as possible. Warmest regards, Joseph Mobutu Sese-Seko From pearu at cens.ioc.ee Sat Apr 26 09:03:41 2003 From: pearu at cens.ioc.ee (Pearu Peterson) Date: Sat, 26 Apr 2003 16:03:41 +0300 (EEST) Subject: [SciPy-dev] SPAM in scipy-dev Message-ID: Hi, In this month 2/3 of messages to scipy-dev mailing list appear to be SPAM. Therefore, I suggest using accept-subscribers-only policy for scipy-dev or using some other means (spamassassin, etc) to stop the SPAM. Thanks, Pearu From harenma at netscape.net Sat Apr 26 15:45:29 2003 From: harenma at netscape.net (MANPENSA DONDO.) Date: Sat, 26 Apr 2003 21:45:29 +0200 Subject: [SciPy-dev] URGENT ASSISTANCE. Message-ID: <20030426204018.553D43EB0C@www.scipy.com> Dear friend, RE: REQUEST FOR URGENT ASSISTANCE IN THE TRANSFER AND SAFEKEEPING FOR INVESTMENT OF $25.5 MILLION USD I am MANPENSA DONDO a financial intermediary for Mikky Kabila, the first son of the third wife of the late Congolese President, LAURENT KABILA who was assassinated by one of his bodyguards. Mikky's father entrusted into his mother's care certain documents and trunk boxes. Amongst these documents are deposit bonds certificate and cash sum $25.5 million USD in the trunk boxes and some other family treasures, this trunk boxes containing the said cash sum were hidden in a cellar under the presidential mansion. After the death of LAURENT KABILA, Mikky's elder brother took over as president and he immediately confiscated all of their father's properties including his bank account and all other family possessions. Mikky's mother was worse hit as she was driven out of the family mansion while Mikky himself was declared wanted. Meanwhile Mikky and his Mother were able to smuggle the boxes of cash out of the cellar in the mansion and immediately took the boxes overseas for investment. Presently the boxes are kept with CONTINENTAL SECURITY COMPANY based in Europe.Mikky has taken a temporary refugee status in one of the West African country awaiting my assistance in sourcing for a reputable trusted person who will help invest the money into a profitable venture. I have decided to nominate you for this project as beneficiary to this fund who would claim this from the Security Company in Europe on behalf of the family provided that you can manage the major money judiciously for them in any part of European Nations and any viable business. Your response to this proposal is urgently needed for immediate action. In your response include your full name and contact address, private tel. and fax phone number, email address for submission to the security firm as the beneficiary. Yours Faithfully, MANPENSA DONDO. NOTE: Mikky has directed that you would be entitled to 20% of the said amount for your effort . Please keep this information to your self for security reasons. From joe at enthought.com Sun Apr 27 03:03:15 2003 From: joe at enthought.com (Joe Cooper) Date: Sun, 27 Apr 2003 02:03:15 -0500 Subject: [SciPy-dev] SPAM in scipy-dev In-Reply-To: References: Message-ID: <3EAB80B3.2010603@enthought.com> This was attempted ~9 months ago, with the result being a huge number of complaints from folks having trouble posting to the list (i.e. from different addresses). It might be worth trying again (Eric, opinions?). Pearu Peterson wrote: > Hi, > > In this month 2/3 of messages to scipy-dev mailing list appear to be SPAM. > Therefore, I suggest using accept-subscribers-only policy for scipy-dev > or using some other means (spamassassin, etc) to stop the SPAM. > > Thanks, > Pearu From prabhu at aero.iitm.ernet.in Sun Apr 27 05:26:16 2003 From: prabhu at aero.iitm.ernet.in (Prabhu Ramachandran) Date: Sun, 27 Apr 2003 14:56:16 +0530 Subject: [SciPy-dev] SPAM in scipy-dev In-Reply-To: <3EAB80B3.2010603@enthought.com> References: <3EAB80B3.2010603@enthought.com> Message-ID: <16043.41528.802869.886807@monster.linux.in> >>>>> "JC" == Joe Cooper writes: JC> This was attempted ~9 months ago, with the result being a huge JC> number of complaints from folks having trouble posting to the JC> list (i.e. from different addresses). It might be worth JC> trying again (Eric, opinions?). If you set the list to members-only posting then all non-subscriber posts are moderated by the admin. So while its more work for the admin it eliminates the spam and yet allows for non-subscribers to post relevant emails. cheers, prabhu From staceylong at aol.com Sun Apr 27 15:22:04 2003 From: staceylong at aol.com (Byron Oconnor) Date: Sun, 27 Apr 03 19:22:04 GMT Subject: [SciPy-dev] iole chimmey Message-ID: An HTML attachment was scrubbed... URL: From eric at enthought.com Mon Apr 28 03:28:20 2003 From: eric at enthought.com (Eric Jones) Date: Mon, 28 Apr 2003 02:28:20 -0500 (CDT) Subject: [SciPy-dev] SPAM in scipy-dev Message-ID: <20030428072820.9F28D1051@www.enthought.com> I'm getting annoid by the spam also. Joe, How hard is it to set up spam-assasin? I like this approach much better than limiting the people who can post. Also how effective is it? I don't mind a few post getting through occasionally, so perfection isn't needed -- we just need to decrease it from its current annoying level. Hmm. Since spam-bayes is already installed on our machines, perhaps we could use it. Do we have enough spam on the list to create an effective spam training corpus? Please try which ever approach above you think best. Either approach above we'll need some volunteer reviewers to check the messages flagged as spam. Any takers? Joe, please provide the responding volunteers with the needed credentials. As far as limiting postings to members, there were a lot of problems with this -- mainly from people who are subscribed, but using a different email when posting. I consider this a last resort. eric Prabhu Ramachandran wrote .. > >>>>> "JC" == Joe Cooper writes: > > JC> This was attempted ~9 months ago, with the result being a huge > JC> number of complaints from folks having trouble posting to the > JC> list (i.e. from different addresses). It might be worth > JC> trying again (Eric, opinions?). > > If you set the list to members-only posting then all non-subscriber > posts are moderated by the admin. So while its more work for the > admin it eliminates the spam and yet allows for non-subscribers to > post relevant emails. > > cheers, > prabhu > > _______________________________________________ > Scipy-dev mailing list > Scipy-dev at scipy.net > http://www.scipy.net/mailman/listinfo/scipy-dev From 236626 at delphi.com Mon Apr 28 18:24:39 2003 From: 236626 at delphi.com (236626 at delphi.com) Date: Mon, 28 Apr 2003 17:24:39 -0500 Subject: [SciPy-dev] Fw: NORTON SYSTEMWORKS FINAL CLEARANCE SALE!9 236626 Message-ID: 151998186@yahoo.com An HTML attachment was scrubbed... URL: From prabhu at aero.iitm.ernet.in Tue Apr 29 03:31:47 2003 From: prabhu at aero.iitm.ernet.in (Prabhu Ramachandran) Date: Tue, 29 Apr 2003 13:01:47 +0530 Subject: [SciPy-dev] Problems with freetype (CVS). Message-ID: <16046.10851.346816.889006@monster.linux.in> hi, I just updated my CVS checkout and rebuilt scipy. I have checked out the newer scipy module. The build first stopped with kiva not compiling since agg2 would not update automatically. So I simply did: cd Lib_chaco/ cvs -q co agg2 and then kiva and everything else built fine. After this I installed scipy and for testing, tried running the chaco demos. I ran into this problem with freetype. $ python -c "import freetype" Traceback (most recent call last): File "", line 1, in ? File "/usr/local/lib/python2.2/site-packages/freetype/__init__.py", line 5, in ? from freetype import FreeType File "/usr/local/lib/python2.2/site-packages/freetype/freetype.py", line 10, in ? from font_lookup import default_font_info File "/usr/local/lib/python2.2/site-packages/freetype/font_lookup.py", line 151, in ? default_font_info = FontLookup( font_dir ) File "/usr/local/lib/python2.2/site-packages/freetype/font_lookup.py", line 30, in __init__ self.library = Library() File "/usr/local/lib/python2.2/site-packages/freetype/library_shadow.py", line 30, in __init__ LibraryPtr.__init__(self,_ft.library__create()) AttributeError: 'module' object has no attribute 'library__create' Exception exceptions.AttributeError: "Library instance has no attribute 'this_own'" in > ignored I removed the installed directory, reinstalled, deleted the build directory, rebuilt all of scipy all to no avail. _ft.so simply does not have library__create(). BTW, scipy.test runs fine. Is there a problem or am I doing something wrong? cheers, prabhu From eric at enthought.com Wed Apr 30 01:53:50 2003 From: eric at enthought.com (Eric Jones) Date: Wed, 30 Apr 2003 00:53:50 -0500 (CDT) Subject: [SciPy-dev] Problems with freetype (CVS). Message-ID: <20030430055350.B90D31050@www.enthought.com> This happened to me also. It looks like the ft_spec.pyc and build_ft.pyc files left over in the scipy/Lib_chaco/freetype directory after the code re-organization are the culprits. The new .py files for these guys have been moved down into the src directory. Just delete these old files, and then rebuild. All should work fine... thanks for catching this, eric Prabhu Ramachandran wrote .. > hi, > > I just updated my CVS checkout and rebuilt scipy. I have checked out > the newer scipy module. The build first stopped with kiva not > compiling since agg2 would not update automatically. So I simply did: > > cd Lib_chaco/ > cvs -q co agg2 > > and then kiva and everything else built fine. After this I installed > scipy and for testing, tried running the chaco demos. I ran into this > problem with freetype. > > > $ python -c "import freetype" > Traceback (most recent call last): > File "", line 1, in ? > File "/usr/local/lib/python2.2/site-packages/freetype/__init__.py", line > 5, in ? > from freetype import FreeType > File "/usr/local/lib/python2.2/site-packages/freetype/freetype.py", line > 10, in ? > from font_lookup import default_font_info > File "/usr/local/lib/python2.2/site-packages/freetype/font_lookup.py", > line 151, in ? > default_font_info = FontLookup( font_dir ) > File "/usr/local/lib/python2.2/site-packages/freetype/font_lookup.py", > line 30, in __init__ > self.library = Library() > File "/usr/local/lib/python2.2/site-packages/freetype/library_shadow.py", > line 30, in __init__ > LibraryPtr.__init__(self,_ft.library__create()) > AttributeError: 'module' object has no attribute 'library__create' > Exception exceptions.AttributeError: "Library instance has no attribute > 'this_own'" in instance at 0x814b3bc>> ignored > > I removed the installed directory, reinstalled, deleted the build > directory, rebuilt all of scipy all to no avail. _ft.so simply does > not have library__create(). > > BTW, scipy.test runs fine. > > Is there a problem or am I doing something wrong? > > cheers, > prabhu > _______________________________________________ > Scipy-dev mailing list > Scipy-dev at scipy.net > http://www.scipy.net/mailman/listinfo/scipy-dev From eric at enthought.com Wed Apr 30 01:53:50 2003 From: eric at enthought.com (Eric Jones) Date: Wed, 30 Apr 2003 00:53:50 -0500 (CDT) Subject: [SciPy-dev] Problems with freetype (CVS). Message-ID: <20030430055350.B90D31050@www.enthought.com> This happened to me also. It looks like the ft_spec.pyc and build_ft.pyc files left over in the scipy/Lib_chaco/freetype directory after the code re-organization are the culprits. The new .py files for these guys have been moved down into the src directory. Just delete these old files, and then rebuild. All should work fine... thanks for catching this, eric Prabhu Ramachandran wrote .. > hi, > > I just updated my CVS checkout and rebuilt scipy. I have checked out > the newer scipy module. The build first stopped with kiva not > compiling since agg2 would not update automatically. So I simply did: > > cd Lib_chaco/ > cvs -q co agg2 > > and then kiva and everything else built fine. After this I installed > scipy and for testing, tried running the chaco demos. I ran into this > problem with freetype. > > > $ python -c "import freetype" > Traceback (most recent call last): > File "", line 1, in ? > File "/usr/local/lib/python2.2/site-packages/freetype/__init__.py", line > 5, in ? > from freetype import FreeType > File "/usr/local/lib/python2.2/site-packages/freetype/freetype.py", line > 10, in ? > from font_lookup import default_font_info > File "/usr/local/lib/python2.2/site-packages/freetype/font_lookup.py", > line 151, in ? > default_font_info = FontLookup( font_dir ) > File "/usr/local/lib/python2.2/site-packages/freetype/font_lookup.py", > line 30, in __init__ > self.library = Library() > File "/usr/local/lib/python2.2/site-packages/freetype/library_shadow.py", > line 30, in __init__ > LibraryPtr.__init__(self,_ft.library__create()) > AttributeError: 'module' object has no attribute 'library__create' > Exception exceptions.AttributeError: "Library instance has no attribute > 'this_own'" in instance at 0x814b3bc>> ignored > > I removed the installed directory, reinstalled, deleted the build > directory, rebuilt all of scipy all to no avail. _ft.so simply does > not have library__create(). > > BTW, scipy.test runs fine. > > Is there a problem or am I doing something wrong? > > cheers, > prabhu > _______________________________________________ > Scipy-dev mailing list > Scipy-dev at scipy.net > http://www.scipy.net/mailman/listinfo/scipy-dev From prabhu at aero.iitm.ernet.in Wed Apr 30 02:24:51 2003 From: prabhu at aero.iitm.ernet.in (Prabhu Ramachandran) Date: Wed, 30 Apr 2003 11:54:51 +0530 Subject: [SciPy-dev] Problems with freetype (CVS). In-Reply-To: <20030430055350.B90D31050@www.enthought.com> References: <20030430055350.B90D31050@www.enthought.com> Message-ID: <16047.27699.118419.190550@monster.linux.in> >>>>> "EJ" == Eric Jones writes: EJ> This happened to me also. It looks like the ft_spec.pyc and EJ> build_ft.pyc files left over in the scipy/Lib_chaco/freetype EJ> directory after the code re-organization are the culprits. EJ> The new .py files for these guys have been moved down into the EJ> src directory. Just delete these old files, and then rebuild. EJ> All should work fine... thanks for catching this, eric Yes, that fixed it for me too. Now the chaco demos run fine. Thanks! cheers, prabhu From Kasper.Souren at ircam.fr Wed Apr 30 06:18:49 2003 From: Kasper.Souren at ircam.fr (Kasper Souren) Date: Wed, 30 Apr 2003 10:18:49 +0000 Subject: [SciPy-dev] cvs build problem Message-ID: <200304301018.49964.Kasper.Souren@ircam.fr> Hi, This is what I get when trying to build the current cvs stuff: $ python setup.py build ### Little Endian detected #### Traceback (most recent call last): File "setup.py", line 111, in ? setup_package() File "setup.py", line 90, in setup_package config_list += map(get_separate_package_config,separate_packages) File "setup.py", line 74, in get_separate_package_config return get_package_config(name,'') File "setup.py", line 68, in get_package_config config = mod.configuration(parent) File "Lib_chaco/kiva/setup_kiva.py", line 60, in configuration config_list.append(get_package_config('agg','kiva')) File "Lib_chaco/kiva/setup_kiva.py", line 36, in get_package_config mod = __import__('setup_'+os.path.basename(name)) ImportError: No module named setup_agg I did check out agg2 from scipy/Lib_chaco/ so that thingy is there. But there's no .py file at all in that directory... bye, Kasper From pearu at cens.ioc.ee Wed Apr 30 06:43:46 2003 From: pearu at cens.ioc.ee (Pearu Peterson) Date: Wed, 30 Apr 2003 13:43:46 +0300 (EEST) Subject: [SciPy-dev] cvs build problem In-Reply-To: <200304301018.49964.Kasper.Souren@ircam.fr> Message-ID: On Wed, 30 Apr 2003, Kasper Souren wrote: > Hi, > > This is what I get when trying to build the current cvs stuff: > > $ python setup.py build > ### Little Endian detected #### > Traceback (most recent call last): > File "setup.py", line 111, in ? > setup_package() > File "setup.py", line 90, in setup_package > config_list += map(get_separate_package_config,separate_packages) > File "setup.py", line 74, in get_separate_package_config > return get_package_config(name,'') > File "setup.py", line 68, in get_package_config > config = mod.configuration(parent) > File "Lib_chaco/kiva/setup_kiva.py", line 60, in configuration > config_list.append(get_package_config('agg','kiva')) > File "Lib_chaco/kiva/setup_kiva.py", line 36, in get_package_config > mod = __import__('setup_'+os.path.basename(name)) > ImportError: No module named setup_agg > > I did check out agg2 from scipy/Lib_chaco/ so that thingy is there. But > there's no .py file at all in that directory... Try `cvs update -Pd` in scipy/Lib_chaco/agg2 Pearu From Kasper.Souren at ircam.fr Wed Apr 30 07:02:21 2003 From: Kasper.Souren at ircam.fr (Kasper Souren) Date: Wed, 30 Apr 2003 11:02:21 +0000 Subject: [SciPy-dev] cvs build problem In-Reply-To: References: Message-ID: <200304301102.21911.Kasper.Souren@ircam.fr> > > I did check out agg2 from scipy/Lib_chaco/ so that thingy is there. But > > there's no .py file at all in that directory... > > Try `cvs update -Pd` in scipy/Lib_chaco/agg2 $ cd ~/cvs/scipy/Lib_chaco/agg2 $ cvs update -Pd cvs server: Updating . cvs server: Updating include cvs server: Updating include/util cvs server: Updating src $ find|grep py $ So still no .py files... bye, Kasper