Search Discussions
-
Probably just me. I've only been using Access and SQL Server for 12 years, so I'm sure my opinions don't count for anything. I was, nevertheless, looking forward to Sqlite3. And now that gmpy has ...
Mensanator
Sep 5, 2006 at 1:15 am
Sep 22, 2006 at 11:04 pm -
If so, I doubt there are many. I wonder why that is?
Walterbyrd
Sep 25, 2006 at 11:09 pm
Oct 3, 2006 at 8:44 am -
I'd love the perfect editor that would be: a) free b) enable me to drag and drop code snippets from a sort of browser into the code c) can run programs right from within d) can edit - PYTHON - ...
Omar
Sep 7, 2006 at 8:18 pm
Sep 16, 2006 at 3:02 am -
Hi all, Is there any PEP to introduce true threading features into python's next version as in java? i mean without having GIL. when compared to other languages, python is fun to code but i feel its ...
Km
Sep 4, 2006 at 2:15 pm
Sep 8, 2006 at 4:58 pm -
Here's my script: import sqlite3 con = sqlite3.connect('labdb') cur = con.cursor() cur.executescript(''' DROP TABLE IF EXISTS Researchers; CREATE TABLE Researchers ( researcherID varchar(9) PRIMARY ...
John Salerno
Sep 27, 2006 at 6:26 pm
Oct 18, 2006 at 6:08 am -
It's a nice thought that a person can earn a living programming with Python, which is fun enough to use just for its own sake. But for someone like me (i.e. no programming experience) it's always a ...
John Salerno
Sep 26, 2006 at 7:38 pm
Oct 1, 2006 at 10:06 pm -
This is such a long posting that I've broken it out into sections. Note that while developing this patch I discovered a Subtle Bug in CPython, which I have discussed in its own section below. THE ...
Larry Hastings
Sep 29, 2006 at 2:07 am
Oct 5, 2006 at 10:31 pm -
Hello, Can anybody tell me the reason(s) why regular expressions are not built into Python like it is the case with Ruby and I believe Perl? Like for example in the following Ruby code line = 'some ...
Antoine De Groote
Sep 30, 2006 at 9:24 am
Oct 2, 2006 at 8:30 am -
Hi, I am a bit disapointed with the current Python online documentation. I have read many messages of people complaining about the documentation, it's lack of examples and the use of complicated ...
Nicolasfr
Sep 16, 2006 at 5:16 pm
Sep 18, 2006 at 5:52 pm -
hello, my boss ask me to prefer windev to python. I have to argue - python work on multiple platform (linux, mac, windows) A good point but it didn't interest him. Because we want to choose a ...
Stéphane bard
Sep 27, 2006 at 7:04 pm
Oct 8, 2006 at 12:55 am -
I have no experience with database applications. This database will likely hold only a few hundred items, including both textfiles and binary files. I would like a pure Python solution to the extent ...
David Isaac
Sep 11, 2006 at 1:23 pm
Sep 15, 2006 at 12:33 am -
Hello, I'm planning to use Python in order to teach a DSA (data structures and algorithms) course in an academic institute. If you could help out with the following questions, I'd sure appreciate it: ...
Efrat
Sep 27, 2006 at 11:35 pm
Nov 9, 2007 at 3:36 am -
'do' Python's NFA regexp engine trys only the first option, and happily rests on that. There's another example: 'oneself' The Python regular expression engine doesn't exaust all the possibilities, ...
Licheng Fang
Sep 12, 2006 at 3:04 am
Sep 16, 2006 at 11:03 pm -
I've just bought a new notebook, which has a dual core CPU. I write cross platform games in Python, and I'd really like to be able to use this second core (on my machine, and on user's machines) for ...
Simon Wittber
Sep 12, 2006 at 12:25 pm
Oct 1, 2006 at 12:24 pm -
Hi, I am trying to get a regexp to validate email addresses but can't get it quite right. The problem is I can't quite find the regexp to deal with ignoring the case james..kirk at fred.com, which is ...
Codefire
Sep 21, 2006 at 5:14 pm
Sep 26, 2006 at 10:23 am -
-- python -i File "<stdin ", line 1 class = "algebra" ^ SyntaxError: invalid syntax Why isn' t the parser smart enough to see that class followed by an identifier is used for class definition but ...
Metaperl
Sep 12, 2006 at 2:43 pm
Sep 15, 2006 at 2:02 pm -
I have written a script and I would like to ensure that the script is never run more than once at any given time. What is the best way of testing and exiting if there is another version of this ...
Hari Sekhon
Sep 27, 2006 at 3:53 pm
Oct 7, 2006 at 10:01 pm -
Computer Language Popularity Trend This page gives a visual report of computer languages's popularity, as indicated by their traffic level in newsgroups. This is not a comprehensive or fair survey, ...
Xah Lee
Sep 27, 2006 at 3:03 am
Oct 1, 2006 at 6:12 pm -
I am writing a wrapper to a binary command to run it and then do something with the xml output from it. What is the best way of making sure that the command is installed on the system before I try to ...
Hari Sekhon
Sep 11, 2006 at 3:06 pm
Sep 13, 2006 at 5:31 am -
I understand that I can use __metaclass__ to create a class which modifies the behaviour of another class. How can I add this metaclass to *all* classes in the system? (In ruby I would alter the ...
Ilias Lazaridis
Sep 17, 2006 at 4:22 pm
Sep 22, 2006 at 6:26 pm -
Hello I want to convert a Mysql resulset to a dictionary. I made some code myself, and want to ask you if I do this the right way. def remapmysql(a): return (a[0], (a[1:])) def test_map(): count = ...
Pom
Sep 25, 2006 at 4:26 pm
Sep 26, 2006 at 9:03 pm -
We all know that there are many softwares that require some license key or registration key to enable them. How does one implement something like this in python?
T
Sep 22, 2006 at 6:51 pm
Oct 3, 2006 at 1:06 am -
Hi, String formatting can be used to converting an integer to its octal or hexadecimal form: '307' 'c7' But, can string formatting be used to convert an integer to its binary form ? Thanks in ...
Fdu Xiaojf
Sep 28, 2006 at 7:10 am
Sep 29, 2006 at 2:47 pm -
I thought the 'is' operator was used to identify identical objects, whereas the '==' operator checked equality. Well, I got a surprise here: IDLE 1.1.3 True True True True I was NOT expecting the ...
Codefire
Sep 26, 2006 at 9:34 am
Sep 27, 2006 at 6:42 pm -
I've written a simple Python extension for UNIX, but I need to get it working on Windows now. I'm having some difficulties figuring out how to do this. I've seen web pages that say that MS Visual ...
Kevin D. Smith
Sep 7, 2006 at 1:02 pm
Sep 15, 2006 at 4:43 pm -
Hi is it possible to make search on for example on google without api with a list of words 1- there is word list 2- the script will take the words from the list by turn 3-it iwll make the search ...
Altemurbugra
Sep 25, 2006 at 10:00 am
Oct 6, 2006 at 10:31 am -
Any suggestions for transforming the sequence: [1, 2, 3, 4...] Where 1,2,3.. are it the ith item in an arbitrary sequence into a succession of tuples: [(1, 2), (3, 4)...] In other words, given a seq ...
Neal Becker
Sep 26, 2006 at 5:07 pm
Oct 4, 2006 at 1:49 pm -
Hi everybody, is there a python equivalent for the ruby %w operator? %w{a b c} creates an array with strings "a", "b", and "c" in ruby... Thanks a lot Regards, antoine
Antoine De Groote
Sep 24, 2006 at 9:35 pm
Sep 30, 2006 at 10:15 am -
Forgive my excitement, especially if you are already aware of this, but this seems like the kind of feature that is easily overlooked (yet could be very useful): Both 8-bit and Unicode strings have ...
John Salerno
Sep 19, 2006 at 6:52 pm
Sep 22, 2006 at 7:58 pm -
Is it possible to specify which port to use as the outbound port on a connection? I have the IP address and port number for the computer I'm trying to connect to (not listening for), but it's ...
Bmearns
Sep 14, 2006 at 12:23 pm
Sep 18, 2006 at 2:14 am -
Hey: I am trying to run python from a usb drive under windows xp. I installed python "for this user" on to a machine, then copied the entire Python24 directory to the usb drive. I have the following ...
Cjl
Sep 11, 2006 at 5:14 pm
Sep 13, 2006 at 4:00 pm -
I'm extremely happy to announce that we have released IronPython 1.0 today! http://www.codeplex.com/IronPython I started work on IronPython almost 3 years ago. My initial motivation for the project ...
Jim Hugunin
Sep 5, 2006 at 8:27 pm
Sep 8, 2006 at 12:58 am -
Why subclassing bool from int either __invert__ or __neg__ haven't been overrided to produce a boolean negation? I suspect backwards compatibility or something alike, but I still wonder.. And since ...
Saizan
Sep 22, 2006 at 2:08 pm
Sep 24, 2006 at 5:29 am -
Hello All, This is annoying. I am trying to build scipy right now but every .so file requires my adding "-lpython2.5 -lpthread -lm -lutil -ldl -shared" to the ld flags. Main Question: When building ...
James Stroud
Sep 22, 2006 at 2:33 am
Sep 23, 2006 at 4:18 pm -
Hi, I'm from an ASP.NET background an am considering making the switch to Python. I decided to develop my next project in tandem to test the waters and everything is working well, loving the ...
Damian
Sep 27, 2006 at 9:24 pm
Oct 2, 2006 at 2:11 am -
A very old thread: http://groups.google.com/group/comp.lang.python/browse_frm/thread/2c5022e2b7f05525/1542d2041257c47e?lnk=gst&q=for+else&rnum=9#1542d2041257c47e discusses the optional "else:" clause ...
Metaperl Etc
Sep 26, 2006 at 8:59 pm
Sep 30, 2006 at 11:01 pm -
I'm working on a product which for a long time has had a Perl binding for our remote access API. A while ago, I wrote a Python binding on my own, chatted it up a bit internally, and recently had a ...
Roy Smith
Sep 24, 2006 at 11:08 pm
Sep 30, 2006 at 4:29 am -
I know this PEP is rejected. However I have a problem that would benefit from having extreme values and the sample implementation that is given in the PEP is unsatifactory for my purpose. I had ...
Antoon Pardon
Sep 27, 2006 at 6:47 am
Sep 28, 2006 at 1:35 pm -
Hi, I was wondering if Python programs always need to include the source code with the program itself. I'm asking this because I don't want my program to be open-source and so far all the Python ...
Guy Fawkes
Sep 17, 2006 at 9:27 am
Sep 22, 2006 at 4:30 pm -
Hi All, I've received (via UDP) a null terminated string and need to convert it into a Python string. Can anyone tell me how this is done? If it helps, I know the number of characters in the string. ...
Michael
Sep 14, 2006 at 3:41 am
Sep 15, 2006 at 8:17 pm -
IDLE has an output format like this: <type 'object' <type 'type' <type 'type' How can I customize it to become like that: <type 'object' <type 'type' <type 'type' or that: : <type 'object' : <type ...
Ilias Lazaridis
Sep 23, 2006 at 2:56 pm
Oct 7, 2006 at 11:59 pm -
I was shocked to see the personal insults hurled in this thread: http://groups.google.com/group/comp.lang.python/browse_thread/thread/d0758cb9545cad4b I have been very pleased with Python developers ...
Metaperl
Sep 25, 2006 at 12:45 pm
Oct 2, 2006 at 3:01 am -
Has anyone a function/script to verify an e-mail-address? It should: a) check the syntax b) verify an existing mailserver or DNS/MX records ingo
Ingo Linkweiler
Sep 24, 2006 at 9:07 am
Sep 26, 2006 at 9:51 am -
# What's the correct way to get the # byte count of a unicode (UTF-8) string? # I couldn't find a builtin method # and the following is memory inefficient. ustr = "example\xC2\x9D".decode('UTF-8') ...
Willie
Sep 20, 2006 at 5:53 am
Sep 21, 2006 at 12:38 am -
Hi All, The following piece of code is giving me issues: from email.Charset import Charset,QP from email.MIMEText import MIMEText charset = Charset('utf-8') charset.body_encoding = QP msg = MIMEText( ...
Chris Withers
Sep 11, 2006 at 6:04 am
Sep 12, 2006 at 11:13 am -
XPN (X Python Newsreader) is a multi-platform newsreader with Unicode support. It is written with Python+GTK. It has features like scoring/actions, X-Face and Face decoding, muting of quoted text, ...
Nemesis
Sep 12, 2006 at 8:15 pm
Sep 17, 2006 at 7:22 pm -
I think I read a suggestion somewhere to wrap the code where a Python script starts in a main() function, so one has def main(): print "hi" main() instead of print "hi" What are the advantages of ...
Beliavsky
Sep 18, 2006 at 7:40 pm
Sep 20, 2006 at 8:23 am -
iam having user account on an exchangeserver. with that can i send an email using python? if iam using the following code iam getting error fromAddress = 'sridhar_kasturi at satyam.com' toAddress = ...
Sridhar
Sep 7, 2006 at 5:37 am
Sep 14, 2006 at 10:08 am -
Hello, How can I disgrate (probably not a good word for it) a list? For example: a = [1,2] b = 3 c = [a] + [b] # which makes [[1,2],3] Then how can I change c ([[1,2],3]) into [1,2,3]? I have a ...
Jwaixs
Sep 1, 2006 at 5:34 pm
Sep 2, 2006 at 6:45 pm -
I'm trying to work with the following idea: class animal: def __init__(self, weight, colour): self.weight = weight self.colour = colour class bird(animal): def __init__(self, wingspan): self.wingspan ...
Lm401
Sep 21, 2006 at 9:52 am
Sep 22, 2006 at 9:44 am
Group Overview
group | python-list |
categories | python |
discussions | 821 |
posts | 5,106 |
users | 966 |
website | python.org |
966 users for September 2006
Archives
- September 2015 (591)
- August 2015 (1,058)
- July 2015 (1,440)
- June 2015 (1,704)
- May 2015 (1,841)
- April 2015 (1,231)
- March 2015 (1,717)
- February 2015 (1,612)
- January 2015 (889)
- December 2014 (1,283)
- November 2014 (1,600)
- October 2014 (1,447)
- September 2014 (1,031)
- August 2014 (1,867)
- July 2014 (1,618)
- June 2014 (1,357)
- May 2014 (1,431)
- April 2014 (1,285)
- March 2014 (2,093)
- February 2014 (1,999)
- January 2014 (2,089)
- December 2013 (2,060)
- November 2013 (2,507)
- October 2013 (1,932)
- September 2013 (1,634)
- August 2013 (1,532)
- July 2013 (2,062)
- June 2013 (2,795)
- May 2013 (1,935)
- April 2013 (1,980)
- March 2013 (1,953)
- February 2013 (1,789)
- January 2013 (1,924)
- December 2012 (1,569)
- November 2012 (1,579)
- October 2012 (1,961)
- September 2012 (2,311)
- August 2012 (1,808)
- July 2012 (1,577)
- June 2012 (1,199)
- May 2012 (1,197)
- April 2012 (1,416)
- March 2012 (1,373)
- February 2012 (1,442)
- January 2012 (1,446)
- December 2011 (1,895)
- November 2011 (1,291)
- October 2011 (1,188)
- September 2011 (1,587)
- August 2011 (2,069)
- July 2011 (2,140)
- June 2011 (1,908)
- May 2011 (2,475)
- April 2011 (2,098)
- March 2011 (1,761)
- February 2011 (1,746)
- January 2011 (2,123)
- December 2010 (1,671)
- November 2010 (2,355)
- October 2010 (2,518)
- September 2010 (2,187)
- August 2010 (3,098)
- July 2010 (2,579)
- June 2010 (3,238)
- May 2010 (2,458)
- April 2010 (2,356)
- March 2010 (2,759)
- February 2010 (3,486)
- January 2010 (3,294)
- December 2009 (2,899)
- November 2009 (3,396)
- October 2009 (3,346)
- September 2009 (3,087)
- August 2009 (3,903)
- July 2009 (3,761)
- June 2009 (3,321)
- May 2009 (3,370)
- April 2009 (4,272)
- March 2009 (4,228)
- February 2009 (3,965)
- January 2009 (4,732)
- December 2008 (4,335)
- November 2008 (3,799)
- October 2008 (4,123)
- September 2008 (3,816)
- August 2008 (4,056)
- July 2008 (4,238)
- June 2008 (3,737)
- May 2008 (4,976)
- April 2008 (4,708)
- March 2008 (4,122)
- February 2008 (4,132)
- January 2008 (4,145)
- December 2007 (3,686)
- November 2007 (3,419)
- October 2007 (4,234)
- September 2007 (4,332)
- August 2007 (4,189)
- July 2007 (3,771)
- June 2007 (4,142)
- May 2007 (5,018)
- April 2007 (4,912)
- March 2007 (4,365)
- February 2007 (3,951)
- January 2007 (3,864)
- December 2006 (4,449)
- November 2006 (4,229)
- October 2006 (5,506)
- September 2006 (5,244)
- August 2006 (4,829)
- July 2006 (4,720)
- June 2006 (5,054)
- May 2006 (5,302)
- April 2006 (4,845)
- March 2006 (5,729)
- February 2006 (4,839)
- January 2006 (5,249)
- December 2005 (5,011)
- November 2005 (5,677)
- October 2005 (5,387)
- September 2005 (4,458)
- August 2005 (4,428)
- July 2005 (4,472)
- June 2005 (4,562)
- May 2005 (4,269)
- April 2005 (5,019)
- March 2005 (5,070)
- February 2005 (5,159)
- January 2005 (5,194)
- December 2004 (5,211)
- November 2004 (4,048)
- October 2004 (5,191)
- September 2004 (5,534)
- August 2004 (6,168)
- July 2004 (4,217)
- June 2004 (4,202)
- May 2004 (3,890)
- April 2004 (4,285)
- March 2004 (5,077)
- February 2004 (4,213)
- January 2004 (3,988)
- December 2003 (3,818)
- November 2003 (4,940)
- October 2003 (6,297)
- September 2003 (4,299)
- August 2003 (5,654)
- July 2003 (4,912)
- June 2003 (4,933)
- May 2003 (4,938)
- April 2003 (5,017)
- March 2003 (5,031)
- February 2003 (7,701)
- January 2003 (6,229)
- December 2002 (4,102)
- November 2002 (4,346)
- October 2002 (3,307)
- September 2002 (4,206)
- August 2002 (4,919)
- July 2002 (4,826)
- June 2002 (4,215)
- May 2002 (5,295)
- April 2002 (5,967)
- March 2002 (5,323)
- February 2002 (5,245)
- January 2002 (5,617)
- December 2001 (4,443)
- November 2001 (4,565)
- October 2001 (3,669)
- September 2001 (3,719)
- August 2001 (5,208)
- July 2001 (6,528)
- June 2001 (4,905)
- May 2001 (5,492)
- April 2001 (4,713)
- March 2001 (4,478)
- February 2001 (3,871)
- January 2001 (4,187)
- December 2000 (3,099)
- November 2000 (2,336)
- October 2000 (3,820)
- September 2000 (3,933)
- August 2000 (4,253)
- July 2000 (4,199)
- June 2000 (4,089)
- May 2000 (4,269)
- April 2000 (3,217)
- March 2000 (3,719)
- February 2000 (4,000)
- January 2000 (2,682)
- December 1999 (2,283)
- November 1999 (1,896)
- October 1999 (2,048)
- September 1999 (2,001)
- August 1999 (2,151)
- July 1999 (2,351)
- June 1999 (2,386)
- May 1999 (2,201)
- April 1999 (1,706)
- March 1999 (6)
- February 1999 (1)