Hello, everyone. I'm trying to install Python 3.6.1 on my CentOS 6.9
server, but test_imaplib always fails its test when make test. Here is what
I got:
> ==
> ERROR: test_logincapa_with_client_certfile (test.test_imaplib.RemoteIMA
is there a way to install python on a thumb drive that does not require an
administrator's password? I have to use public computers and store all my
applications to the thumb drive, using the Portable Apps Platform to manage
the applications.
--
https://mail.python.org/mailman/listinfo/python-lis
On Nov 17, 10:37 am, Wade Leftwich <[EMAIL PROTECTED]> wrote:
> I'm about halfway through Charles Stross' excellent new novel,
> "Halting State". It's set in Edinburgh in the year 2018, and one of
> the main characters is a game programmer whose primary lan
William Gibson, Vernor Vinge, John
Carnack, and Bruce Scheier.
What, they couldn't pop for an advance copy for Guido?
-- Wade Leftwich
Ithaca, NY
--
http://mail.python.org/mailman/listinfo/python-list
urring problems of hardware,
> software, ergonomics, and psychology. The adoption of new, ASCII-base
> dialects of APL, such as J, is suggested as one solution to the
> character set problem. "
>
> This is also the reason for why I will not be downloading your new
> compiler
e. They know what I mean and simply go ahead and translate it
> to Starbucks newspeak.
I, as a tall Americano, have always taken ordering the smallest espresso
beverage possible as something describing the preference of the orderer, as
opposed to the beverage itself.
--
wade ward
"Your boyfriend is not my boyfriend, doll."
--
http://mail.python.org/mailman/listinfo/python-list
On Jul 22, 2:20 am, Bruno Desthuilliers
<[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] a écrit :
>
> > Python is a better language, with php support,
>
> Python has php support ? My, I'm a professional web developper using
> both, and I didn't knew this.
>
As an aside, perl DOES support PHP:
http
) the cross-posting
c) the advocacy of the contents
>
> I have absolutely no reason to rate the OP as a troll or their post as
trollish.
>
In time you will learn...
It wasn't even a good troll. To be a good troll the message actually needs to be
interesting enough to get peop
t mean that you wouldn't be
>> willing to listen about a switch from Python to Lisp?
>
> No, it doesn't mean that. In fact, there is a significant faction in
> the technical staff (including the CTO) who would like nothing better
> than to be able to use Lisp instead of Python.
Who is the CTO?
Wade
--
http://mail.python.org/mailman/listinfo/python-list
Peter Otten wrote:
> Wade Leftwich wrote:
>
> > from itertools import groupby
> >
> > def chunk(it, n=0):
> > if n == 0:
> > return iter([it])
> > def groupfun((x,y)):
> > return int(x/n)
> > grouped = groupby(enum
Wade Leftwich wrote:
> Jeffrey Froman wrote:
> > Dave Dean wrote:
> >
> > > I'm looking for a way to iterate through a list, two (or more) items at a
> > > time.
> >
> > Here's a solution, from the iterools documentation. It may not be the
pn()
it works on infinite lists.
from itertools import groupby, imap
def chunk(it, n=0):
if n == 0:
return iter([it])
grouped = groupby(enumerate(it), lambda x: int(x[0]/n))
counted = imap(lambda x:x[1], grouped)
return imap(lambda x: imap(lambda y: y[1], x), counted)
>>>
.
You can use that style in CL.
(defun nif (x p z n)
(or (when (< x 0) n)
(when (= x 0) z)
(when (> x 0) p)))
Wade
--
http://mail.python.org/mailman/listinfo/python-list
mystilleef wrote:
>
> People only contribute to things they understand and appreciate. More
> people would be writing Lisp libraries if it was worthwhile.
> Apparently, it doesn't seem to be. A few years ago, I tried to write an
> editor is Scheme. The experience was appalling. I was able to writ
e very good reasons, it is folly
to think that programs have to be simple, obvious and elegant. I find
interesting that a programmer got out their comfort zone and attempted
something. Its better than the ones with the big egos who play it safe
so they do not appear to be a fool.
Wade
--
http://
Mark Tarver wrote:
> How do you compare Python to Lisp? What specific advantages do you
> think that one has over the other?
>
Since the late 1950's Lisp has participated in the development of
modern (present day) programming practises. It has shaped and been
shaped by the minds of just not pro
d XML files as they'd look if done by hand?
> >
> > Thanks.
You can roll your own by starting at the root and recursing through
child elements, increasing the indentation as you go:
But I do it the lazy way:
$ xmllint --format ugly.xml >pretty.xml
-- Wade Leftwich
Ithaca, NY
--
http://mail.python.org/mailman/listinfo/python-list
Works fine for me, and I certainly hope MySQLdb is ready for prime
time, because I use the heck out of it. Maybe you're getting fooled by
the fact that cursor.execute() returns the count of result rows. To
actually see the result rows, you have to say cursor.fetchone() or
fetchall() --
In [34]: cu
Oops, problems cutting an pasting, should be,
;; Wade Humeniuk
(defclass odometer ()
((base :initform 0 :accessor base)
(meter :initform nil :accessor meter)
(n-digits :initarg :n-digits :accessor n-digits)
(digit-set :initarg :digit-set :accessor digit-set)))
(defmethod
7;s just assume they're a given.
>
Another attempt. I have made no special attempt to create an
exclusion language, just used an anonymous lambda predicate.
;; Wade Humeniuk
(defclass odometer ()
((base :initform 0 :accessor base)
(meter :initform nil :accessor meter)
(n-dig
XYZ ABC) (ABC ABC
ABC))
CL-USER 24 > (cp-without-wc '(a b) '(a :any :any))
((B B B) (B B A) (B A B) (B A A))
CL-USER 25 > (cp-without-wc '(a b) '(a :any :any) '(b :any :any))
NIL
CL-USER 26 > (cp-without-wc '(a b) '(:any :any b))
((B B A) (B A A) (A B A) (A A A))
CL-USER 27 >
Wade
--
http://mail.python.org/mailman/listinfo/python-list
g faith that the extra work I'm
putting in to design my table classes will pay off in a more robust and
portable application. The module itself is elegant and well written,
and it uses metaclasses to boot.
-- Wade Leftwich
Ithaca, NY
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> Hi
>
> My tkinter apps worked fine in debian linux (woody and sarge)
> I moved to ubuntu 5.10
>
> I follow the 'hello world' test as seen in
> http://wiki.python.org/moin/TkInter
>
Ubuntu uses X.org. Did your Debian distro use xfree86?
--
http://mail.python.org/mailm
e: Is "gezellig" related
to the Zen of Python? (
http://wordcraft.infopop.cc/eve/ubb.x/a/tpc/f/6351024471/m/2041067571/r/3901049571
)
-- Wade Leftwich
Ithaca, NY
--
http://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano wrote:
>I'm usually opposed to creeping featuritis in programming languages ("it
>would be really cool if Python had a built-in command to do my entire
>application") but safe over-writing of files does cry out for a "batteries
>included" approach:
How about the fileinput module?
ted
is not there. So depending on what site you are scraping, you might
have to read the page you got back to figure out if it's what you
wanted.
-- Wade Leftwich
Ithaca, NY
--
http://mail.python.org/mailman/listinfo/python-list
26 matches
Mail list logo