Re: Wheel-reinvention with Python

2005-08-01 Thread Ed Leafe
s that for those without your aversion to installing useful tools, Dabo provides a ton of functionality. Also, as my partner Paul McNett pointed out, I could have done it in *two* lines: import dabo dabo.dApp().start() ;-) -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Dabo in 30 seconds?

2005-08-01 Thread Ed Leafe
dbapi-compliant modules, and, of course, wxPython. If someone mis-installs one of the pre-requisites, do you expect Dabo to catch that and present you with a diagnostic message? I'm serious here: I want to know what people consider acceptable for a software package that relies on other

Re: Dabo in 30 seconds?

2005-08-01 Thread Ed Leafe
On Monday 01 August 2005 09:28, Harald Armin Massa wrote: > it is not that you use twisted, but > you provide twisted with callbacks so that it uses you? +1 QOTW -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Wheel-reinvention with Python

2005-08-01 Thread Ed Leafe
opers using the framework who have questions/problems/comments about Dabo. http://leafe.com/mailman/listinfo/dabo-dev http://leafe.com/mailman/listinfo/dabo-users -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Dabo in 30 seconds?

2005-08-01 Thread Ed Leafe
nted out, we address it. But one problem with that is when you only have a handful of people actively using and testing it, you limit your potential for discovering problems. If nothing else, this thread has helped by pointing out one such shortcoming. ;-) -- -- Ed Leafe -- http://leafe.c

Re: Dabo in 30 seconds?

2005-08-01 Thread Ed Leafe
where we can see what your software does. Take a look at the SciPy module > for good instructions. It would have been hell without the precise list of > prerequisites in the INSTALL.txt file. OK, thanks for the pointer. We appreciate all of these good ideas! -- -- Ed Leafe -- h

Re: Dabo in 30 seconds?

2005-08-01 Thread Ed Leafe
nly an issue when you build wxPython from source. Those who aren't inclined to go this route have the option of several binaries, all of which include everything. So in a way, I *do* expect someone who has foregone the binary route and chosen the source route to at least read the build ins

Re: Wheel-reinvention with Python

2005-08-01 Thread Ed Leafe
> becoming a standard part of Tk: >       http://wiki.tcl.tk/14522 That's certainly an improvement. But when we reviewed the various toolkits a year and a half ago, we just looked at the standard Tk stuff. -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Dabo in 30 seconds?

2005-08-02 Thread Ed Leafe
s that non-developers will then use, so packaging/distribution certainly comes into play at some point. -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Dabo in 30 seconds?

2005-08-02 Thread Ed Leafe
-generated crash file and forget about it. Thanks! This looks like a great approach - I may have to borrow it! -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

[ANN] Dabo 0.4 Released

2005-08-09 Thread Ed Leafe
to create Dabo classes visually, and have made some great progress, but this is still very much an unfinished product. The Class Designer has progressed to the point where you can lay out a form using a sizer-centric approach, modify the properties of controls and their sizers from a

[ANN] Dabo Runtime for Windows 0.4 Released

2005-08-11 Thread Ed Leafe
ction) visual design tools. As usual, it can be found, along with our other stuff, at http://dabodev.com/download. -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Wheel-reinvention with Python

2005-08-16 Thread Ed Leafe
ovember, but the exact date will depend on how quickly we can turn around the production." So while it's still a little ways off, it's certainly within sight! -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

MySQL & Python

2005-09-15 Thread Ed Hotchkiss
Just migrating now from ASP/to MySQL and Python.   I am trying to create a simple script to access a MySQL DB. The Module for MySQL looks very easy, however I do not understand one thing ...   In ASP, you can just create a new DB with Access. In MySQL, how do I create a database to start playing w

encryption with python?

2005-09-15 Thread Ed Hotchkiss
What's the best module for encryption with python, anyone out there using python and encryption together?-- edward hotchkiss -- http://mail.python.org/mailman/listinfo/python-list

My First Python Script

2005-09-15 Thread Ed Hotchkiss
So I have a  script, first part of a script that I am making to determine each possible combination of IP addresses that are out there.   This part is just to get the end of the IP (the last 3 digits). So, they are from 0 - 255. I just want to print 0 - 255, HOWEVER   If the number is only say ...

Re: My First Python Script

2005-09-15 Thread Ed Hotchkiss
perties as theunix printf. In python, I think its called "string formatting".JamesOn Thursday 15 September 2005 20:33, Ed Hotchkiss wrote: > So I have a script, first part of a script that I am making to determine> each possible combination of IP addresses that are out there.&g

Re: Looking for a database. Sugestions?

2005-09-15 Thread Ed Hotchkiss
Is this for running an SQL database, then using a separate python module to access the database?   On 15 Sep 2005 21:31:27 -0700, gsteff <[EMAIL PROTECTED]> wrote: SQLite rocks, its definitely the way to go.  Its binary is around 250K,but it supports more of the SQL standard than MySQL.  It CAN be

Re: encryption with python?

2005-09-15 Thread Ed Hotchkiss
  Awesome. I just started Python today so I'd have no idea ... how good is this encryption compared to PGP? Any info on using this file? Didn't see any on this guys site ...   On 9/16/05, Robert Kern <[EMAIL PROTECTED]> wrote: Ed Hotchkiss wrote:> Gmail was just an example, I j

Re: My First Python Script

2005-09-16 Thread Ed Hotchkiss
  Sweet, time to play with python for a whole day today :P  On 9/16/05, Gary Wilson Jr <[EMAIL PROTECTED]> wrote: Ed Hotchkiss wrote:> def ZeroThrough255():>   x = 0>   while x <= 255: >   if len(x) == 1:>   mySet = '00'

Re: Looking for a database. Sugestions?

2005-09-16 Thread Ed Hotchkiss
Awesome, I'm checking both out right now, trying to get it setup - thanks. On 9/16/05, Christoph Haas <[EMAIL PROTECTED]> wrote: On Thu, Sep 15, 2005 at 11:00:46PM +0200, ionel wrote:> I'm looking for a thread-safe database. > Preferably an embedded, sql database.>> What are the best choices in ter

Re: Looking for a database. Sugestions?

2005-09-16 Thread Ed Hotchkiss
So I opted actually to stick with MySQL since I got hooked up with a DB free and It's more of a standard.   I'm looking at documentation, and wondering why not just use _mysql which is built in, versus the MySQLdb module? I don't get this ...   -edward -- http://mail.python.org/mailman/listinfo/py

First Script Problem

2005-09-16 Thread Ed Hotchkiss
This script should just be writing every possibly IP (yea, there are billions i know blah blah) to a txt file. Instead of just writing the IP, it continues and the number goes past 4 groups. IE: The possible IP keeps getting 3 characters longer every time. And at the end of the last loops do I some

Re: My First Python Script

2005-09-16 Thread Ed Hotchkiss
Address = '%03.d.%03.d.%03.d.%03.d\n' % (octet1, octet2,octet3, octet4) ipFile.write(ipAddress) ipFile.close()   # execute the function findIPs()Thanks though, your response helps me understand variables better now..   On 9/16/05, John Hazen <[EMAIL PROTECTED]> wrote: * Ed Hotchkis

Re: Inserting tuple from text file into database fields

2005-09-17 Thread Ed Hotchkiss
So I changed the code a little, still throwing the SQL syntax error. I still cannot seem to identify the problem.   # Script to add links from a comma deliminated file to a MySQL database# 9/16/05 import MySQLdb conn=MySQLdb.connect( host="www.freesql.org",   user="edhotchkiss",   port=3306,   pas

Re: MySQLdb - create table problem

2005-09-17 Thread Ed Leafe
On Sep 17, 2005, at 3:04 PM, Ed Hotchkiss wrote: > There is no oreilly in the code ... I still get an error, any other > ideas? sorry ... Strange; can you explain where the text quoted (reilly, Python, Archive, http:// python.oreilly.com/archive.html) came from, then?

MySQLdb error - PLEASE SAVE ME!

2005-09-17 Thread Ed Hotchkiss
Ok. I am trying to read a csv file with three strings separated by commas. I am trying to insert them into a MySQL DB online. MySQLdb is installed, no problems. I think that I am having some kind of error with my csv going into the fields and being broken apart correctly. Can someone please help?

Best Encryption for Python Client/Server

2005-09-18 Thread Ed Hotchkiss
Let us say that I am trying to create a very small and simple private network/connection between several scripts on different machines, to communicate instructions/data/files etc. to each other over the net. Is SSL the best method? Any recommendations of something to get started with? Thanks in adv

Best Encryption for Python Client/Server

2005-09-18 Thread Ed Hotchkiss
Let us say that I am trying to create a very small and simple private network/connection between several scripts on different machines, to communicate instructions/data/files etc. to each other over the net. Is SSL the best method? Any recommendations of something to get started with? Thanks in adv

[no subject]

2005-09-18 Thread Ed Hotchkiss
Let us say that I am trying to create a very small and simple private network/connection between several scripts on different machines, to communicate instructions/data/files etc. to each other over the net. Is SSL the best method? Any recommendations of something to get started with? Thanks in adv

tuples and mysqldb tables

2005-09-18 Thread Ed Hotchkiss
I have used fetchall() to insert the values from a table into a tuple. anywhere from 0 - ? many rows could be in this tuple, so it is a row within a row. How do I use a loops to iterate through the nested tuple, and assign the tuples integers and strings to variables, ugh :P   The Tables data is l

Re: threads/sockets quick question.

2005-09-19 Thread Ed Hotchkiss
  Well, I fixed those problems, now what I have is this: but i am getting errors with the global variables or something ... am i supposed to use this class and def together differently? I just don't seem to understand ... -edward import socketimport threadingimport traceback class scanThread(thr

Re: threads/sockets quick question.

2005-09-19 Thread Ed Hotchkiss
Let's say that I avoid the complexities of using classes, and that I avoid using anything to count the threads...   import socketimport threading def scan(ip, port):    try:    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)    s.connect((ip, port))    s.close()    print '%s |

Re: Best Encryption for Python Client/Server

2005-09-19 Thread Ed Hotchkiss
wrote: SSH can be used for functionality like this, through tunneling. You can eventunnel interprocess communication through SSH. Its not exceptionally complicated.On Sunday 18 September 2005 13:36, Ed Hotchkiss wrote:> Let us say that I am trying to create a very small and simple private

Re: Best Encryption for Python Client/Server

2005-09-19 Thread Ed Hotchkiss
  I apologize for misreading your H my dear professor. Perhaps you can google:asshole and see if your image is present, I would highly doubt that it is not within the first page of results.   I'm sorry that I did not see the message in the thread which recommended SSH rather than SSL. There is no

Re: Best Encryption for Python Client/Server

2005-09-19 Thread Ed Hotchkiss
No worries, I apologize for my outburst. I will check out the viability of using an SSH module, or using pyCrypto or something to encrypt the data.   Here's my mission: simple P2P class with encryption of whatever type of file is being sent, and authentication via encrypted user name/password. So

Re: Best Encryption for Python Client/Server

2005-09-20 Thread Ed Hotchkiss
hah :P awesome, I will be busy this week! -edward  On 20 Sep 2005 14:23:10 -0700, Paul Rubin <"http://phr.cx"@nospam.invalid> wrote: Steve Holden <[EMAIL PROTECTED]> writes:> > Here's my mission: simple P2P class with encryption of whatever type > > of file is being sent, and authentication via enc

Re: Perl's documentation come of age

2005-09-21 Thread Ed Hotchkiss
please feed the trolls. On 9/21/05, Steve Holden <[EMAIL PROTECTED]> wrote: Rudy Schockaert wrote:>> >> • Do think clearly before writing. >> >> You should start thinking before you write something. Do you really> think anyone takes you serious the way you talk?> I haven't seen anything constru

Re: Perl's documentation come of age

2005-09-21 Thread Ed Hotchkiss
I'm new to Python, not programming. I agree with the point regarding the interpreter. what is that? who uses that!? Why are most examples like that, rather than executed as .py files?   Another problem that I have (which does get annoying after awhile), is not using foo and bar. Spam and Eggs sucks

Re: connecting to Sybase/MsSQL from python

2005-02-12 Thread Ed Leafe
? ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ Come to PyCon http://www.python.org/pycon/2005/ -- http://mail.python.org/mailman/listinfo/python-list

Scan document pages to a compressed PDF

2005-02-14 Thread Ed Suominen
to incorporate as much as possible into the Python code and imported packages, rather than relying on pipes to a bunch of external programs. Same question regarding SANE -- I can't seem to find the supposed PIL support for SANE in the release on my system. Anyone know about that, or alternat

Re: Scan document pages to a compressed PDF

2005-02-14 Thread Ed Suominen
Replying to my own post, this looks like a very promising tool: "Pytiff is a library for using TIFF files and advanced imaging in Python." http://pubweb.northwestern.edu/~omh221/software_projects/pytiff/pytiff.html Ed Suominen wrote: > I'd like to write a Python-based commandl

Re: Nevow examples

2005-02-24 Thread Ed Suominen
I will be providing a release and possibly read-only public access to the SVN repository for the underlying code soon. It will be distributed under the LGPL. --- Ed Suominen Registered Patent Agent Open-Source Software Author (yes, both...) Web Site: http://www.eepatents.com Travis Oliphant wrote:

Re: Possible to import a module whose name is contained in a variable?

2005-03-07 Thread Ed Leafe
mport *" % modulename) ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ Come to PyCon http://www.python.org/pycon/2005/ -- http://mail.python.org/mailman/listinfo/python-list

Re: what is \s+ and \S+ means in re.compile?

2005-03-20 Thread Ed Leafe
Matches any non-whitespace character; this is equivalent to the set [^ \t\n\r\f\v]. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ Come to PyCon http://www.python.org/pycon/2005/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Help With Hiring Python Developers

2004-12-03 Thread Ed Leafe
, NY, and might be interested in the job, but man, that commute would be a pain! ;-) ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: installing wxPython on Linux and Windows

2004-12-09 Thread Ed Leafe
are my steps (gtk 2.4 was already installed): You could have saved yourself some grief with http://wxpython.org/builddoc.php ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Best GUI for small-scale accounting app?

2004-12-21 Thread Ed Leafe
ith a database much, much simpler. Even though Dabo is still in development, I've used it to create an app that helps me manage the archives of the technical email lists I host (currently holding over a quarter-million rows). ___/ / __/ / / Ed Leafe http://leafe.

Re: Best GUI for small-scale accounting app?

2004-12-21 Thread Ed Leafe
erver could not handle the request GET /." Nah, it was my own doing. I was changing some things on the server, and you must have hit the site just when I was restarting Zope. Try it again. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.

Re: [Re: newbie question]

2004-12-22 Thread Ed Leafe
on' when it comes from Doug, but it's a 'flame' when it is directed at Doug. Unless there is something more substantial then whining, howzabout we all just ignore it and let it die a quick death? ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Best GUI for small-scale accounting app?

2004-12-28 Thread Ed Leafe
elief that there is a good chance that we will reach a critical mass where enough people are using the tool that it may become a 'standard'. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Best GUI for small-scale accounting app?

2004-12-28 Thread Ed Leafe
e coded them the wx-way, but I wanted to remove that wxPython dependency, so I took a detour from the UI Designer to create the menu classes. That's pretty much the pattern: things get written as they are needed. ___/ / __/ / / Ed Leafe http://leafe.com/ http://d

Re: Best GUI for small-scale accounting app?

2004-12-28 Thread Ed Leafe
ned into the UI designer, so that you can drag and drop fields from the tables in the connection onto the design surface, and create data-bound controls in one step. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Best GUI for small-scale accounting app?

2004-12-28 Thread Ed Leafe
on before undertaking the writing of it myself. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Best GUI for small-scale accounting app?

2004-12-28 Thread Ed Leafe
losely by those communities. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Best GUI for small-scale accounting app?

2004-12-28 Thread Ed Leafe
ek of January. But we do have our sights set pretty high. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Best GUI for small-scale accounting app?

2004-12-29 Thread Ed Leafe
I imagined. Thanks for the impetus to run this test. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Why tuples use parentheses ()'s instead of something else like <>'s?

2004-12-30 Thread Ed Leafe
On Dec 29, 2004, at 3:38 PM, Rocco Moretti wrote: So to summarize: Commas define tuples, except when they don't, and parentheses are only required when they are necessary. Exactly! Now can we clear anything else up for you? ;-) ___/ / __/ / ____/ Ed Leafe http://leaf

Using pyclbr

2004-12-30 Thread Ed Leafe
ds to complete! I tried also passing the optional path to the module, but it had no effect on the speed. Is this normal? Is there anything I can do to improve performance? I'm running Python 2.3.4 on Mac OS X 10.3. ___/ / __/ / / Ed Leafe http://leafe.com/ http://d

[ANN] Dabo 0.3.2 Released

2005-03-22 Thread Ed Leafe
m/download. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ Come to PyCon http://www.python.org/pycon/2005/ -- http://mail.python.org/mailman/listinfo/python-list

Re: collaborative text editor

2005-03-28 Thread Ed Leafe
me of that program? it was one of the coolest things i've ever seen :) SubEthaEdit (http://www.codingmonkeys.de/subethaedit/). And yes, it is *very* cool. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: math - need divisors algorithm

2005-03-30 Thread Ed Suominen
return [x for x in range(1,N-2) if not divmod(N,x)[1]] --- Ed Suominen Registered Patent Agent Open-Source Software Author (yes, both...) Web Site: http://www.eepatents.com -- http://mail.python.org/mailman/listinfo/python-list

How can I get the variable to subtract the input please?

2013-11-18 Thread Ed Taylor
This will be very simple to most of you I guess but it's killing me! print ("Please type in your age") age = input () leave = 16 print ("You have" + leave - age + "years left at school") I want to have an input where the users age is inserted and then subtracted from the variable age which is s

Question about import hooks

2013-11-23 Thread Ed Schofield
clean interface? Preferably this would remain accessible through a one-line import like ``from future import standard_library``. Thanks in advance for any ideas! Best wishes, Ed -- Dr. Edward Schofield (M) +61 (0)405 676 229 Python Charmers http://pythoncharmers.com -- https://mail.python.org/mailman/listinfo/python-list

Can Python do this? First steps, links to resources or complete software referals appreciated.

2014-05-22 Thread ed . cottam
does this already? Preferably open source? If not, any resources you could bring to my attention? I' a complete Newb! Thanks for your help. Ed -- https://mail.python.org/mailman/listinfo/python-list

Save/restore breakpoints between pdb runs

2014-07-11 Thread Ed Blackman
27; cond = '' if bp.cond is None else ', ' + bp.cond print("%s %s:%d%s" % (command, bp.file, bp.line, cond)) if not bp.enabled: print("disable %d" % (bp_num)) if bp.ignore > 0: print("ignore %d %d" % (bp_num, bp.ignore)) print('') -- Ed Blackman -- https://mail.python.org/mailman/listinfo/python-list

[Announce] Python-Future v0.13; cheatsheet for Python 2/3 compatible code

2014-08-12 Thread Ed Schofield
sheet page when they are online. I would be happy to accept pull requests for additions or changes to the Py2/3 cheat-sheet. The source is here: https://github.com/PythonCharmers/python-future/blob/master/docs/notebooks/Writing%20Python%202-3%20compatible%20code.ipynb Best wishes, Ed --

Python code to distinguish between data having, 2 different formats, in a given cell(MS Excel).

2014-08-23 Thread Ed Joz
I got an excel sheet having,2 blocks of data in 2 different formats, in any given cell. Lets take cell A1 for example, 1st block has font = Arial, character size =10 2nd block has font = Times New Roman, character size = 16 OR **no data** sample: "abcd123 PQRS456" A python code need to be dev

Re: Hello, and request for help with 'dynamic grids'

2011-10-03 Thread Ed Leafe
On Sep 5, 2011, at 8:33 AM, Simon Cropper wrote: > Dabo is a great product. Spoke extensively with Ed Leafe and Paul McNett. > Unfortunately the framework is not 'dynamic'. If you have an fixed database > and tables it can quite quickly create a basic data entry setup and m

Dabo 0.9.4 Released!

2011-10-06 Thread Ed Leafe
bizobjs for many-to-many relationships - improved efficiency in detecting changed records - added the dDatePicker control - added the option of vertical text for grid headers - integrated a code editor into the command window You can grab the latest version, as always, from http://dabo

Re: Dabo 0.9.4 Released!

2011-10-07 Thread Ed Leafe
d toward database applications, although a database connection is completely optional. We wrap the wxPython GUI toolkit, hiding its C++ roots and presenting a more Pythonic interface for creating your UI. See more at http://dabodev.com, and feel free to ask any more questions. --

Re: IDE for GUI Designer

2013-04-04 Thread Ed Leafe
ike so: I want a button, I click and drag it to a window, > give two clicks and encode their actions, understand? Check out Dabo: http://dabodev.com -- Ed Leafe (one of the authors) -- http://mail.python.org/mailman/listinfo/python-list

Adding methods to instances

2005-12-15 Thread Ed Leafe
= Test() # Here's where the magic is needed # so that the rest of this example works. testInstance.normal() -> 'normal', 'sample' testInstance.dynamic() -> 'dynamic', 'sample' So? Am I nuts? Or is this possible? -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Adding methods to instances

2005-12-15 Thread Ed Leafe
namic() Thanks! I knew I had done this before. My mistake was that I was setting the exec'd code to the instance, and not to the class. That works, but makes it a function, which doesn't automatically get sent the 'self' reference. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Adding methods to instances

2005-12-16 Thread Ed Leafe
u're correct - I hadn't noticed that, since all my tests had single instances. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Adding methods to instances

2005-12-16 Thread Ed Leafe
still has a 'magical' feel to it! -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Which Python web framework is most like Ruby on Rails?

2005-12-22 Thread Ed Singleton
uld be for there to be a way for newbies to get heard more easily. Newbies were all quite recently nonPythonPeople, and as such have some very valuable insights into what it is like being a normal, nonPythonPerson. They normally get told they aren't pythonic yet, or that they should write a PEP

Re: Which Python web framework is most like Ruby on Rails?

2005-12-22 Thread Ed Singleton
On 22/12/05, A.M. Kuchling <[EMAIL PROTECTED]> wrote: > On Thu, 22 Dec 2005 14:05:08 +, > Ed Singleton <[EMAIL PROTECTED]> wrote: > >> Yes; I've long worried about this, but have no idea how to fix the > >> problem. Python users large

Re: Python article in Free Software Magazine

2006-01-01 Thread Ed Jensen
Steven D'Aprano <[EMAIL PROTECTED]> wrote: > I don't want to nit-pick all my way through the article, which > is very decent and is worth reading, but I will say one more thing: you > describe Python as "an expressive, interpreted language". Python is no > more interpreted than Java. Like Java, it

Re: Python article in Free Software Magazine

2006-01-01 Thread Ed Jensen
Steven D'Aprano <[EMAIL PROTECTED]> wrote: > I don't want to nit-pick all my way through the article, which > is very decent and is worth reading, but I will say one more thing: you > describe Python as "an expressive, interpreted language". Python is no > more interpreted than Java. Like Java, it

bug in Tkinter (FIX)

2006-01-06 Thread Ed Blake
It's my first time posting to the list so I hope I don't sound like an idiot! The other day I was looking for a way to keep track of whether a user had changed the contents of a Tk text widget. After a little bit of searching I found edit_modified. This should let me get/set the modified flag o

Re: Help me in this please--is Python the answer?

2006-01-12 Thread Ed Singleton
value for his > money...) The only thing you really need to be happy is to find something you enjoy doing and to do it. Money is definitely secondary to that. If you have a chance to be paid for working in Python, then go for it; even if you fail, you will have spent your days in a happy state. Ed -- http://mail.python.org/mailman/listinfo/python-list

Capturing instant messages

2006-07-17 Thread Ed Leafe
this reasonable, or am I being too simplistic in my approach? -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Capturing instant messages

2006-07-18 Thread Ed Leafe
get a very accurate real-time monitoring system with > this setup. They aren't interested in real-time monitoring; their main concern is Sarb-ox compliance. Thanks for your help! -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Capturing instant messages

2006-07-19 Thread Ed Leafe
; sessions, thus reducing privacy issues. Thanks for the suggestions; I'll run them by the client. They don't want to do it at the individual desktop level; they want a central location to ensure that someone doesn't have the capability to disable the logging, so

Re: Accessors in Python (getters and setters)

2006-07-19 Thread Ed Jensen
Diez B. Roggisch <[EMAIL PROTECTED]> wrote: > Ah, you mean like in JAVA Java is not an acronym. That is: it's "Java", not "JAVA". > where the compiler prevents you from accessing > private variables, but the runtime allows access to these very variables > via reflection? Java does not allow ac

Re: Accessors in Python (getters and setters)

2006-07-20 Thread Ed Jensen
Diez B. Roggisch <[EMAIL PROTECTED]> wrote: >> Java is not an acronym. That is: it's "Java", not "JAVA". > > Now THAT was an important information RIGHT on topic. It was not meant offensively. >> Java does not allow access to private members via reflection. > > For somebody nitpicking on natur

Re: Accessors in Python (getters and setters)

2006-07-21 Thread Ed Jensen
Diez B. Roggisch <[EMAIL PROTECTED]> wrote: > Which puts us to the next question: the sealing itself doesn't do > anything to restrict the code, the SecurityManager does. Which AFAIK is > something hooked into the VM. Now, I'm not on sure grounds here on how > to altere its behaviour, but I'd sa

Re: do people really complain about significant whitespace?

2006-08-09 Thread Ed Jensen
infidel <[EMAIL PROTECTED]> wrote: > Where are they-who-hate-us-for-our-whitespace? Are "they" really that > stupid/petty? Are "they" really out there at all? "They" almost sound > like a mythical caste of tasteless heathens that "we" have invented. > It just sounds like so much trivial nitpicke

Re: Python component model

2006-10-11 Thread Ed Leafe
diting. There is nothing that prevents you from modifying a design in the editor of your choice; the Dabo visual editing tools simply give you WYSIWYG feedback as you edit. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Python component model

2006-10-11 Thread Ed Leafe
ginal object definition. So you can edit your code in your favorite Python editor, and it all just works. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Python component model

2006-10-12 Thread Ed Jensen
Paul Boddie <[EMAIL PROTECTED]> wrote: > People who bring up stuff about self and indentation are just showing > their ignorance Ouch. That stings. Python's "indentation determines scope" makes it hard for me to discuss Python via mediums like IRC and instant messengers. It also makes it hard t

Re: Getting a lot of SPAM from this list

2006-10-23 Thread Ed Leafe
#x27;s an alias for a list, I first unsub using the old alias, and then re-sub with the new one. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython TextCtrl - weird scrolling behavior

2006-10-31 Thread Ed Leafe
g with all the relevant settings in one place. As you change them in the dialog, the design surface updates so that you can see the effect of your changes before you commit them. If you don't like your changes, click 'Cancel' and things return to the way they were before

Re: jython's future

2006-11-14 Thread Ed Jensen
??ukasz Langa <[EMAIL PROTECTED]> wrote: > Java was at 1.2 (and compiling Hello World took over 5 minutes) Bullshit. Complete and utter bullshit. -- http://mail.python.org/mailman/listinfo/python-list

ANN: Dabo 0.7 released!

2006-11-17 Thread Ed Leafe
cts break our code. We will be focusing on making Dabo work with these later wxPython versions in the coming weeks, but for now, you need to stick with 2.6. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Interface Designer

2006-12-05 Thread Ed Leafe
ng out your GUI designs, as well as a simplified, more Pythonic API than wxPython provides. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Execution time of lines within a function

2006-12-07 Thread Ed Leafe
to get > the exact > link). http://mg.pov.lt/blog/profilehooks-1.0.html Note that the license has been changed from GPL to MIT, making it distributable with non-GPL projects. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: A Good Intro to wxpython/PostgreSQL Applications?

2007-01-08 Thread Ed Leafe
thors and several other helpful folks. You can sign up for the dabo-users list at http://leafe.com/mailman/ listinfo/dabo-users. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: [IDE] - The Dynamic Opportunity - ActiveState Komodo IDE / Open Source

2006-01-26 Thread Ed Leafe
foundation for the ActiveStates business. > > An Open Source Komodo IDE would allow the several dynamic language > communities to collaborate on a common goal. If Komodo were to go open source, I would certainly consider it as the basis for the Dabo IDE project. -- Ed Leafe --

<    1   2   3   4   >