Re: PDF rendering toolkit?

2007-01-08 Thread Jorge Vargas
On 1/6/07, Diez B. Roggisch <[EMAIL PROTECTED]> wrote: > > I'm looking for a tool to take an actual .pdf file and display it in a > > window (I'm using wxwidgets at the moment) > > No idea if there is a one-shot-kills-them-all solution out there - but > if you have a way to go for windows, you migh

Re: PDF rendering toolkit?

2007-01-08 Thread Jorge Vargas
On 1/8/07, Chris Mellon <[EMAIL PROTECTED]> wrote: > On 1/5/07, Jorge Vargas <[EMAIL PROTECTED]> wrote: > > Hi > > > > I'm looking for a tool to take an actual .pdf file and display it in a > > window (I'm using wxwidgets at the moment) > > &g

Re: Using non-ascii symbols

2006-01-28 Thread Jorge Godoy
uot;net terms" instead of pt_BR for the translation... -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: User login system

2006-01-28 Thread Jorge Godoy
l. > > Hopefully somebody knows one? Take a look at TurboGears Identity module and at PEAK.security... -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smar

Re: Windows - create text file - (newb)

2006-02-02 Thread Jorge Godoy
"Ernesto" <[EMAIL PROTECTED]> writes: > Can Python be used to create (and/or open, read, and write) a text file > in Windows (if the path is known) ? Yes. -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qua

Re: Importing a class, please help...

2006-02-05 Thread Jorge Godoy
"anon" <[EMAIL PROTECTED]> writes: > to do an Import on it. This is where things fail. I cannot see the > contents of my Jar. What am I missing here? That JARs are for Java and yo're using Python? -- Jorge Godoy <[EMAIL PROTECTED]> "Qui

Re: How can I find a freelance programmer?

2006-02-14 Thread Jorge Godoy
Charles <[EMAIL PROTECTED]> writes: > I am looking for a freelance Python programmer to create a cross-platform > application with wxPython. > Any idea where I could find one? Here? At Python-jobs? :-) At the wxPython mailing list? -- Jorge Godoy <[EMAIL PROTECTED]&

Re: making 'utf-8' default codec

2006-02-27 Thread Jorge Godoy
aving a standard charset as input. If it is required, then the library should set it up by itself: explicit is better than implicit. -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said

Re: how do you move to a new line in your text editor?

2006-03-03 Thread Jorge Godoy
hon-mode on Emacs with regards to indenting... :-( -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: stripping spaces in front of line

2006-03-03 Thread Jorge Godoy
-> string Return a copy of the string s with leading and trailing whitespace removed. If chars is given and not None, remove characters in chars instead. If chars is unicode, S will be converted to unicode before stripping. -- Jorge Godoy <[EMAIL PROTECTED]>

Re: How to except the unexpected?

2006-03-04 Thread Jorge Godoy
l UnknownTransferEncoding HTTP HTTPConnection HTTPSConnection HTTPResponse (Yes, it appears twice, don't ask me why...) -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anyt

Re: Package organization: where to put 'common' modules?

2006-03-04 Thread Jorge Godoy
ore than two projects will use it if two of them already are :-) -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: what am I missing (syntax error)

2006-03-05 Thread Jorge Godoy
rs' and 'staff' are lists. The question is: "what's not in XXX"? x? Something else? You hve to remember that the computer does only what you tell it to do: if x not in uniqueUsers and x not in staff: ... I also prefer using parenthesis to make things more clear a

Re: how do you move to a new line in your text editor?

2006-03-06 Thread Jorge Godoy
7;n' times (n == the number of spaces used by soft tabs in my Eclipse configuration) on lines where I have code. (The menu option 'Python backspace' doesn't work.) These are the most annoying things since in Python indentation matters and we use it a lot. -- Jorge Godoy

Re: How to uninstall packages

2007-07-01 Thread Jorge Vargas
On 7/1/07, Rustom Mody <[EMAIL PROTECTED]> wrote: > Yeah sure thats what is (finally) working but its never clear upfront > for a package what its dependency needs are -- linux version of DLL > hell. And it gets worse for systems that are little worlds in > themselves like python, ruby, eclipse, w

Re: Do other Python GUI toolkits require this?

2007-04-20 Thread Jorge Godoy
> 999? You remind me of my grandpa: if all soldiers but one are marching with the "wrong" foot ahead, who's wrong? -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Suggestion: str.itersplit()

2007-04-21 Thread Jorge Godoy
gh (and that's not from lack of trying). You can try WinZip. Last time I had to use a Windows machine it was able to untar + gunzip some files perfectly fine (as we are able to unzip and unrar on *nix...). -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Python ODBC

2007-04-29 Thread Jorge Mazzonelli
various links on python interfaces to several databases including DB2. It contains also links to other ODBC packages for python. Jorge On 29 Apr 2007 09:34:13 -0700, Harlin Seritt <[EMAIL PROTECTED]> wrote: Is there a Python odbc module that will work on Linux? I have a jdbc connection t

Re: SQLObject 0.8.3

2007-05-03 Thread Jorge Godoy
think: is it possible to call a function in a schema other than public in PostgreSQL? For example if I had myschema.myfunction and wanted to use it I can't do "func.myschema.myfunction"... Is there something like a "dbName" for func? :-) -- Jorge Godoy <[EMAIL PR

Re: Decorating class member functions

2007-05-03 Thread Jorge Godoy
.com.br/search?q=python+decorator+memoize -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: No module named urllib

2007-05-07 Thread Jorge Godoy
tory. > > Any suggestions? No messages is good! :-) If you got any error messages then you'd have a problem. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: No module named urllib

2007-05-07 Thread Jorge Godoy
HMS Surprise <[EMAIL PROTECTED]> writes: > Perhaps I should have put qoutes in my sentence. Or I should have read it slowly. ;-) > I get the "no module message named urllib". Can you please import sys print sys.path and put the answer here on the newsgroup? -- Jo

Re: No module named urllib

2007-05-07 Thread Jorge Godoy
? > File "C:\maxq\lib\Lib\urllib.py", line 1148 > _hextochr = dict(('%02x' % i, chr(i)) for i in range(256)) > ^ > SyntaxError: invalid syntax >>> dict(1, 1) Traceback (most recent call last): File "

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Jorge Godoy
;. I've never had any problem installing any library or module for Python. Even the ones that require huge libraries or compiling something. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: (Modular-)Application Framework / Rich-Client-Platform in Python

2007-05-24 Thread Jorge Mazzonelli
mozilla.org/en/docs/Python and the book on mozilla platform: http://books.mozdev.org/html cheers Jorge -- http://mail.python.org/mailman/listinfo/python-list

Re: Advice on sending images to clients over network

2007-07-22 Thread Jorge Godoy
Paul McNett wrote: > Paul Rubin wrote: >> Frank Millman <[EMAIL PROTECTED]> writes: >>> Any suggestions will be much appreciated. >> >> Why on earth don't you write the whole thing as a web app instead of >> a special protocol? Then just use normal html tags to put images >> into the relevant pa

Re: custom plugin architecture: how to see parent namespace?

2007-07-22 Thread Jorge Godoy
escalation746 wrote: > I have updated documentation for this on my blog, diagrammes modernes. > Surf: > http://diagrammes-modernes.blogspot.com/ Your motivation looks a lot like what is solved by setuptools, eggs and entry points. http://peak.telecommunity.com/DevCenter/PkgResources http://docs.

Re: Web based Reporting tool for Python

2007-08-12 Thread Jorge Godoy
Jon Rosebaugh wrote: > Sure, but again, these aren't reporting engines; they're just template > engines. And I don't think any of the web template engines have PDF > output. I generate my PDFs with Genshi / Kid and ReportLab. For the markup processing I use z3c.rml. Works flawlessly. -- http://

Re: status of Programming by Contract (PEP 316)?

2007-08-31 Thread Jorge Godoy
Russ wrote: > Alex, I think you are missing the point. Yes, I'm sure that web > searches are critical to > Google's mission and commercial success. But the point is that a few > subtle bugs cannot > destroy Google. If your search engines and associated systems have > bugs, you fix them > (or simpl

Re: status of Programming by Contract (PEP 316)?

2007-09-01 Thread Jorge Godoy
Carl Banks wrote: > This is starting to sound silly, people. Critical is a relative term, > and one project's critical may be anothers mundane. Sure a flaw in your > flagship product is a critical problem *for your company*, but are you > really trying to say that the criticalness of a bad web s

Re: Python 2.5 incompatible with Fedora Core 6 - packaging problems again

2007-03-04 Thread Jorge Godoy
ay, if following the install after an error is true then some developer should take a look at it. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: SAMBA-PYTHON ???

2007-03-04 Thread Jorge Godoy
o the group... (BTW, I've used the samba-python package that comes with opensuse.) -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: How use XML parsing tools on this one specific URL?

2007-03-04 Thread Jorge Godoy
act the data from this > page? It all depends on what data you want. Probably a non-validating parser would be able to extract some things. Another option is pass the page through some validator that can fix the page, like tidy... -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Project organization and import

2007-03-04 Thread Jorge Godoy
deal with it... My bigger "project" has several modules now each with its own namespace and package. The API is very documented and took the most work to get done. Using setuptools, entrypoints, etc. helps a lot as well. The thing is that for big projects your design is

Re: Project organization and import

2007-03-06 Thread Jorge Godoy
re might be some feature of the system related to that investigation, but there might be not. For example: "what are the methods provided by this object?" or "which approach is faster for this loop?" I won't write a test case to test loop speed. But I'd

Re: Project organization and import

2007-03-06 Thread Jorge Godoy
to say that it is necessary or inevitable is 1960s > mainframe thinking. How can you reload C code that would affect already running code -- ie. existing data, pointers, etc. -- without reloading the full program? Even changing and reloading a dynamic library wouldn't do that to already existing code, so you'd have to "reboot" your application as well. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Project organization and import

2007-03-06 Thread Jorge Godoy
between all clients, etc. It isn't a monolithic take all or nothing. And even like that it works. There are customizations on some features that only exists at one client's branch, there are customizations that might be selected "on the fly" by choosing something on a preferences sc

Re: Project organization and import

2007-03-06 Thread Jorge Godoy
doing ever less work yourself and > pushing ever more work down to your computer. I won't write a script to write two commands and rerun them often. But I would for some more -- lets say starting from 5 commands I might start thinking about having this somewhere where I can at least Cut'n'Past to the interactive interpreter (even with readline's help). -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Database module & multithreading

2007-03-10 Thread Jorge Godoy
simple > n efficient, in any case multi threading capabilities are # 1 > requirement. For which database server? -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Database module & multithreading

2007-03-10 Thread Jorge Godoy
access the files. You talk to the RDBMS server. Is it running? Is it accepting connections from your host? -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Signed zeros: is this a bug?

2007-03-11 Thread Jorge Godoy
ady to find packages on code.google.com yet... ;-) -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

setuptools and code.google.com (was Re: Signed zeros: is this a bug?)

2007-03-11 Thread Jorge Godoy
r. Another alternative is a link at the first page. And, of course, the last alternative is teaching setuptools how to work with code.google.com -- if it doesn't already know -- as it learnt how to work with SourceForge and its "random" mirrors. I don't know how to write that code, th

Re: setuptools and code.google.com

2007-03-12 Thread Jorge Godoy
pporting other OSs). > Me neither, knowing near to nothing about setuptools (I'm not even a > user of it...). Let's hope some expert does speak up -- I can't just > freely experiment with uploads and the like... Lets wait. ;-) Thanks again, -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: How to modify the source of a python file inside a python egg file?

2007-03-12 Thread Jorge Godoy
ce, make your changes and rebuild the egg. Unzipping, changing and zipping it back also works. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: string formatting: engineering notation

2007-03-14 Thread Jorge Godoy
notation in future releases? >> > How close is this: > > >>> "%.3e" % 3.14159 > '3.142e+00' >>> "%.3e" % 314159 '3.142e+05' >>> Not close when you have the exponent. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: merits of Lisp vs Python

2007-03-14 Thread Jorge Godoy
ous from context... Maybe FastCGI should help, then. It can run "forever" after a request has finished so it is suitable for long running processes. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Python COM called from VB/Delphi

2007-03-16 Thread Jorge Mazzonelli
ere are changes... Regards, Jorge On 3/15/07, Gabriel Genellina <[EMAIL PROTECTED]> wrote: En Wed, 14 Mar 2007 21:17:12 -0300, Larry Bates <[EMAIL PROTECTED]> escribió: > I have a rather large Python class that I've converted to > a COM object. I can dispatch (using eit

Re: MIME Magic

2007-03-17 Thread Jorge Godoy
ry/file_sigs.html And here's an example of an authoritative source for that table: http://www.libpng.org/pub/png/spec/1.2/PNG-Structure.html -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: To count number of quadruplets with sum = 0

2007-03-18 Thread Jorge Godoy
"n00m" <[EMAIL PROTECTED]> writes: > my dial-up line's too slow for downloading 4mb of shedskin-0.0.20.exe Don't worry! We can email it to you. :-D -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Automagically log changes in table

2007-03-18 Thread Jorge Godoy
that can be bound so they can act is triggers on your database, but client side. Of course they don't have all the context as a real trigger does, but those might be enough to avoid duplicating lots of code through the app to set some variable. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: encoding - arabic(IBM 864) to UNICODE

2007-03-18 Thread Jorge Godoy
option is checking if Python has those encodings available (are they standard or platform specific?) and using its own conversion method, as explained in the docs. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: cheese shop: tagging and dating

2007-03-18 Thread Jorge Godoy
an alternate tag interface would be interesting, though. But not making it the main interface or the only one. Tags are cool when they are few. They are a nightmare when there are hundreds or thousands of them to search for something. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: SQLObject 0.8.1

2007-03-19 Thread Jorge Godoy
Larry Bates <[EMAIL PROTECTED]> writes: > WOW! Went from 0.7.4 to 0.8.1 in the span of only 23 minutes! There are two branches: 0.7 and 0.8. So, there were two releases. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Using remote source code

2007-03-25 Thread Jorge Godoy
[EMAIL PROTECTED] writes: > Is there any possible way that I can place a .py file on the internet, > and use that source code in an .py file on my computer? Besides Alex suggestion, you can also check Pyro. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mail

Re: organizing collections of small modules

2007-03-25 Thread Jorge Godoy
collect them somewhere to use easy_install ;-) It also supplies means to determine the minimum / maximum / exact version that is required, so this also helps with how up-to-date your library has to be to be used with some application. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: How to find to HTML strings and 'save' them?

2007-03-25 Thread Jorge Godoy
tried allsorts but I've been learning Python for 1 week and just > don't know enough to mod example scripts it seems. don't even get me > started on python docs.. ayaa ;] Please feel free to teach me to suck > eggs because it's all new to me :) > > T

ctypes failing when a library needs another library

2007-04-09 Thread Jorge Vargas
Hi I'm having an issue with ctypes loading libraries. I got the following setup. I have a library (coded by me) that calls a external library (installed with the package manager), and my ctypes program calls my lib. at first python couldn't find my lib but setting LD_LIBRARY_PATH=. fix that, but

Re: About Trolltech QT OpenSource license.

2007-04-11 Thread Jorge Godoy
ing of their license. He's selling you his product and stating how you can / can't use it. I believe that this has some value in case they say you can't do one thing that they told you could when you were acquiring their services. I'd save those emails exchanged very car

Re: Python editor/IDE on Linux?

2007-04-14 Thread Jorge Godoy
-) > > "Emacs makes a good OS, but a lousy editor." Yep. Emacs comes with a lot of those funny phrases. It is so good that it even helps people using other editors to have some fun. ;-) -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Segmentation fault..

2007-10-06 Thread Jorge Godoy
Abandoned wrote: > Hi.. > I run a my script and 3-4 minutes later give me an error "segmentation > fault". > What is the reason of this error ? > > I use in my script: > Threading > Psycopg2 > open & write to txt > urlopen > > My platform is ubuntu linux. > > I'm sorry my bad english. > King re

Re: Yet another comparison of Python Web Frameworks

2007-10-06 Thread Jorge Godoy
Tim Chase wrote: > Any respectable comparison of Python web frameworks should > include evaluation of at least Django and TG. Or at least give > good reason why the comparison excludes them. When he said that he didn't want anything complex neither anything that used a templating system, I thou

Re: Yet another comparison of Python Web Frameworks

2007-10-06 Thread Jorge Godoy
Lawrence Oluyede wrote: > Thomas Wittek <[EMAIL PROTECTED]> wrote: >> At least, you missed Turbo Gears :) >> http://turbogears.org/ >> For me, it feels more integrated than Pylons. > > Yeah, so integrated that the next version will be based upon Pylons ;-) ? What is good, since a lot of good thi

Re: Segmentation fault..

2007-10-06 Thread Jorge Godoy
Bruno Desthuilliers wrote: > Jorge Godoy a écrit : >> Without seeing any code, it is hard to say anything. But the answer to >> the ultimate question is "42". > > Indeed. Err, what was the question, exactly ?-) As soon as calculations are finished, you'll

Re: Putting a line from a text file into a variable, then moving to next line

2007-10-07 Thread Jorge Godoy
Vernon Wenberg III wrote: > I'm not really sure how readline() works. Is there a way to iterate > through a file with multiple lines and then putting each line in a > variable in a loop? To know how something works you can always check the docs about this specific functionality: >>> a = open('a'

Re: Barcode recognition in Python

2007-01-13 Thread Jorge Godoy
decodes the barcode and sends the decoded output. If it is one plugged in a keyboard port, for example, reading the barcode or typing the "message" is exactly the same thing. Or are you willing some kind of OCR to process the barcodes without a barcode reader (why having

Re: template engine

2007-01-13 Thread Jorge Godoy
ea > > that would be nice if engine could work with non HTML documents. > > thanks in advance for your help, and sorry for my English :) Take a look at Kid (http://www.kid-templating.org/) and Genshi (http://genshi.edgewall.org/). -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: sqlobject 0.8.0b1 and python 2.5

2007-01-13 Thread Jorge Godoy
ttp://www.sqlobject.org/2/ Be seeing you, -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: OT Annoying Habits

2007-01-19 Thread Jorge Godoy
helps everyone. But do not include the entire original. I've added the "^" to mark the part where it says what should be on the top of the message. You can check it: http://www.dtcc.edu/cs/rfc1855.html Be seeing you, -- Jorge Godoy <[EMAIL PROTECTED]> -- htt

Re: OT Annoying Habits

2007-01-20 Thread Jorge Godoy
For those there is always http://www.goldmark.org/jeff/stupid-disclaimers/ :-) Be seeing you, -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Python does not play well with others

2007-02-03 Thread Jorge Godoy
es as possible is > also a big win. So we should get a better egg support. Then it would all be just a matter of easy_install . As it is that easy for thousands of modules on CPAN for Perl. -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Python does not play well with others

2007-02-04 Thread Jorge Godoy
oftware being managed in the hosting environment. And why eggs wouldn't satisfy them? Eggs can be installed globally as well, making the package available to every client of this hosting server (if they mount their libs from a unique NFS server then it would automatically be available for al

Re: uml and python

2007-02-08 Thread Jorge Godoy
> gpl or freeware (widows) prefered I like Umbrello (several OSs supported, including MacOS, Linux, *BSD and you probably can get it running in Windows though it might be somewhat hard...). -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Does Python have equivalent to MATLAB "varargin", "varargout", "nargin", "nargout"?

2007-02-18 Thread Jorge Godoy
[EMAIL PROTECTED] writes: > Thank you in advance for your response. And those do ... ? -- Jorge Godoy <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

BDFL in wikipedia

2007-02-21 Thread Jorge Vargas
Hi I just hit this page in wikipedia BDFL[1] and it redirected me to Guido's wikipedia[2] entry now without causing any troubles (read flamewar) shouldn't a) that page have an explanation of what BDFL is b) shouldn't it mention Linus, Larry Wall, others?[3] c) for the ones that have been around l

Re: BDFL in wikipedia

2007-02-21 Thread Jorge Vargas
On 2/21/07, Andrew McNamara <[EMAIL PROTECTED]> wrote: > >Hi I just hit this page in wikipedia BDFL[1] > > > >and it redirected me to Guido's wikipedia[2] entry > >now without causing any troubles (read flamewar) shouldn't > > > >a) that page have an explanation of what BDFL is > >b) shouldn't it m

Re: BDFL in wikipedia

2007-02-21 Thread Jorge Vargas
On 2/21/07, Toby A Inkster <[EMAIL PROTECTED]> wrote: > Jorge Vargas wrote: > > > shouldn't it mention Linus, Larry Wall, others?[3] > > Despite the link you posted, I don't think Linus, Larry Wall, Rasmus > Lerdorf, etc describe themselves as BDFLs, even

Re: BDFL in wikipedia

2007-02-21 Thread Jorge Vargas
On 2/21/07, Gabriel Genellina <[EMAIL PROTECTED]> wrote: > En Wed, 21 Feb 2007 05:28:30 -0300, Andrew McNamara > <[EMAIL PROTECTED]> escribió: > > >> Hi I just hit this page in wikipedia BDFL[1] > >> and it redirected me to Guido's wikipedia[2] entry > >> [1] http://en.wikipedia.org/wiki/BDFL > > >

Re: CherryPy/Turbogears on server not controlled by me

2007-02-21 Thread Jorge Vargas
On 2/20/07, Brian Blais <[EMAIL PROTECTED]> wrote: > Hello, > > I was wondering if there is a way to run CherryPy/Turbogears on a server that > I don't > have root access to. I have never run ANY webapp as root. you should follow that advice. in fact don't run any server as root. > If I just cho

Re: how to know if folder contents have changed

2007-11-12 Thread Jorge Godoy
[EMAIL PROTECTED] wrote: > can someone suggest a better way? i know it is a general programming > problem..but i wish to know if a python solution exists Use pyfam. I believe all docs are in fam but it integrates with that. -- http://mail.python.org/mailman/listinfo/python-list

Re: Arrays

2007-11-13 Thread Jorge Godoy
Steven D'Aprano wrote: > "The only intuitive interface is the nipple. After that, it's all > learned." -- Bruce Ediger on user interfaces. And after we learn its other "uses", not even the nipple is so easy... Who haven't heard (or said, if you're a woman) "Don't bite it like that, it hurts!"?

Re: Is a "real" C-Python possible?

2007-12-09 Thread Jorge Godoy
Jack wrote: > I wonder if it's possible to have a Python that's completely (or at > least for the most part) implemented in C, just like PHP - I think > this is where PHP gets its performance advantage. Or maybe I'm wrong PHP is slower than Python. -- http://mail.python.org/mailman/listinfo/pyt

Re: python docs in contrib?

2007-12-16 Thread Jorge Godoy
Tshepang Lekhonkhobe wrote: > Hi, > I was surprised to find python2.{4,5}-doc in contrib and wondered why? What contrib? -- http://mail.python.org/mailman/listinfo/python-list

Re: python docs in contrib?

2007-12-16 Thread Jorge Godoy
Tshepang Lekhonkhobe wrote: > On Dec 16, 2007 4:33 PM, Jorge Godoy <[EMAIL PROTECTED]> wrote: >> Tshepang Lekhonkhobe wrote: >> >> > Hi, >> > I was surprised to find python2.{4,5}-doc in contrib and wondered why? >> >> What contrib? > > c

Re: 2.5 excitement (was Re: Java Developer Exploring Python)

2006-04-18 Thread Jorge Godoy
I need pysqlite if I use PostgreSQL? ;-) /me remembering the old days of Clipper Summer '87, when he'd use DBFs all over... ;-) -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in L

Re: 2.5 excitement (was Re: Java Developer Exploring Python)

2006-04-18 Thread Jorge Godoy
excuse for using Berkeley > for simple database purposes. You're right Aahz. It is more useful. I was just being "smart" with you :-) Now it will be easier to provide that classic phone book example in your book :-) -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid

Re: datetime question

2006-04-18 Thread Jorge Godoy
educe__', '__reduce_ex__', '__repr__', '__rsub__', '__setattr__', '__str__', '__sub__', 'astimezone', 'combine', 'ctime', 'date', 'day', 'dst', 'fromordinal', 'from

Re: multiline comments

2006-04-19 Thread Jorge Godoy
levant here. Well, I believe they are since it looks like a habit of yours to use multiline comments. It is common for people coming from other programming languages that support them. -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qual

Re: multiline comments

2006-04-19 Thread Jorge Godoy
p code than > comment syntax. Is it harder to remove "n" lines of code commented out with "#" than "n" lines of multiline commented code? How? The same question goes for triple quoted code. -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine

Re: multiline comments

2006-04-19 Thread Jorge Godoy
ch that allows using those... I don't remember which docsystem allows for MathML markup. But then, I'd go with DocBook + MathML + SVG ;-) (Hey! You started! And you even said that you didn't like verbose comments... ;-)) -- Jorge Godoy <[EMAIL PROTECTED]> "

Re: multiline comments

2006-04-19 Thread Jorge Godoy
time and annoys the pig. Good coding is a state > of mind, not a parser option. If the latter can help, why not? -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: multiline comments

2006-04-19 Thread Jorge Godoy
block first, then your editor might not be highlighting anymore... With nested comments things get even worse because you might miss the end of the outer block or something like that. -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer

Re: multiline comments

2006-04-19 Thread Jorge Godoy
e is multiline comment support or not. It is really as fast as inserting /* and ending with */ (in fact, I type less than to achieve that since I only use three keys, counting the Ctrl-Space to start the block). -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, al

Re: multiline comments

2006-04-19 Thread Jorge Godoy
rx wrote: > > "Jorge Godoy" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >> Edward Elliott wrote: >> > >> >> You can use either """ or '''. I don't keep changing them in my code, so >&g

Re: multiline comments

2006-04-19 Thread Jorge Godoy
ndentation. You don't have an "endif", "endwhile", "endfor" (so, why having an "end comment"?). -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: multiline comments

2006-04-19 Thread Jorge Godoy
re docs in Perl, for example). Triple quotes can also be used like this: usage = """ This program accepts the following options: --help, -h Display this message --verbose, -v Display more details """ This defines a multiline string. If you had t

Re: mini component distribution question

2006-04-19 Thread Jorge Godoy
RL" or even to share the traffic... -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: R Paul Johnson is out of the office.

2006-04-21 Thread Jorge Godoy
RK wrote: > ok, who's been playing with mailman? I thought you were going to say something like "I hope he turned off the lights before leaving the office"... :-) -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualque

Re: Plotting package?

2006-04-25 Thread Jorge Godoy
is pretty easy to use. Also, I don't know what you're doing with numbers, but there's rpy to use with R. -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: finding IP address of computer

2006-04-27 Thread Jorge Godoy
e result. So take that into account. -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer coisa dita em latim soa profundo. - Anything said in Latin sounds smart. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Eggs Just install in *ONE* place? Easy to uninstall?

2006-05-06 Thread Jorge Godoy
l instructions at the documentation: http://peak.telecommunity.com/DevCenter/setuptools For other Python Eggs information you might want to check: http://peak.telecommunity.com/DevCenter/PythonEggs -- Jorge Godoy <[EMAIL PROTECTED]> "Quidquid latine dictum sit, altum sonatur." - Qualquer c

<    1   2   3   4   5   >