Re: Why do I have both /usr/lib/python3 and /usr/lib/python3.8?

2021-01-01 Thread Barry Scott
s to a newer version of python. If you are testing your code against multiple version of python you need the version specific names like python3.8, python3.10 etc. Barry FYI this is what I have installed (lspy is a personal script): $ lspy /bin/python: 3.9.1 final 0 /bin/python2: 2.7.18 final 0

Does windows edit .py file shebangs?

2021-01-01 Thread Barry Scott
I found python scripts have had their shebang lines edited behind my back. The shebang line I'm seeing is: #!C:\Users\barry\AppData\Local\Microsoft\WindowsApps\python3.EXE Is this Microsoft being "helpful"? Does anyone know what I will have done to best with this "help&

Re: Why do I have both /usr/lib/python3 and /usr/lib/python3.8?

2021-01-01 Thread Barry Scott
> On 1 Jan 2021, at 16:42, Chris Angelico wrote: > > On Sat, Jan 2, 2021 at 3:36 AM Barry Scott <mailto:ba...@barrys-emacs.org>> wrote: >> >> FYI this is what I have installed (lspy is a personal script): >> >> $ lspy >> /bin/python: 3.9.1

Re: Funny error message

2021-01-01 Thread Barry Scott
TP library with thread-safe connection pooling, file post, >> and more. >> Home-page: https://urllib3.readthedocs.io/ >> Author: Andrey Petrov >> Author-email: andrey.pet...@shazow.net >> License: MIT >> Location: /usr/lib/python3.9/site-packages >> Requires:

Re: Does windows edit .py file shebangs?

2021-01-03 Thread Barry Scott
> On 1 Jan 2021, at 17:03, Eryk Sun wrote: > > On 1/1/21, Barry Scott wrote: >> I found python scripts have had their shebang lines edited behind my back. >> >> The shebang line I'm seeing is: >> >>#!C:\Users\barry\AppData\Local\Micr

Re: Does windows edit .py file shebangs?

2021-01-03 Thread Barry Scott
> On 3 Jan 2021, at 15:13, Eryk Sun wrote: > > On 1/3/21, Barry Scott wrote: >> >> I've been doing some more investigation and found that the change happened >> at 01/01/2021 16:16. The shebang is pointing to a 0 length PYTHON3.EXE. > > The files in

Re: are variables local only to try/except blocks?

2005-09-20 Thread Barry Searle
eException()     doMORELotsMoreStuff()      doLotsHere()     excp = 0 # always reset excp as last action except aParticularSetOfExceptions:     excp = 1 if excp:   should be fine     handleException() doLotsMoreStuff() Barry Searle,    [EMAIL PROTECTED],  905-413-4020  (TL:969-4020) Ba

Re: are variables local only to try/except blocks?

2005-09-20 Thread Barry Searle
eException()     doMORELotsMoreStuff()      doLotsHere()     excp = 0 # always reset excp as last action except aParticularSetOfExceptions:     excp = 1 if excp:   should be fine     handleException() doLotsMoreStuff() Barry Searle,    [EMAIL PROTECTED],  905-413-4020  (TL:969-4020) Ba

Standalone email package 3.0 final

2004-11-28 Thread Barry Warsaw
removed. * Lots and lots of fixes. Feel free to join the email-sig mailing list for further discussion. -Barry signature.asc Description: This is a digitally signed message part -- http://mail.python.org/mailman/listinfo/python-list

RE: Python 3.4.4 Install

2016-01-11 Thread Emanuel Barry
> Date: Sat, 9 Jan 2016 14:25:40 -0800 > Subject: Python 3.4.4 Install > From: cjwilliam...@gmail.com > To: python-list@python.org > > The reponse is not understood. Which response? Obviously Python's, but response to what? More context would be useful. > *** Python 3.4.4rc1 (v3.4.4rc1:04f3f72589

RE: subscripting Python 3 dicts/getting the only value in a Python 3 dict

2016-01-12 Thread Emanuel Barry
> Hi all, > > Seemingly simple problem: > > There is a case in my code where I know a dictionary has only one item in it. > I want to get the value of that item, whatever the key is. > > In Python2 I'd write: > > >>> d = {"Wilf's Cafe": 1} > >>> d.values()[0] > 1 The equivalent in Python 3 is

Re: [Python-Dev] Python 2.x and 3.x use survey, 2014 edition

2014-12-11 Thread Barry Warsaw
eclare victory yet, and there will always be legacy code for which there just aren't the resources to port, I think it's perfectly reasonable for Python 3 to be the default target version for any new code (and a lot of existing code). Cheers, -Barry [1] SQLAlchemy replaced Storm, and Fa

Re: [Python-Dev] Python 2.x and 3.x use survey, 2014 edition

2014-12-12 Thread Barry Warsaw
code that would still benefit a significant population if it got ported to Python 3. By far Python 3 is a better language, with a better stdlib, so the work is worth it. Cheers, -Barry -- https://mail.python.org/mailman/listinfo/python-list

Re: How to create an instance of a python class from C++

2014-03-11 Thread Barry Scott
python3. Has docs and examples. Barry PyCXX maintainer. > ( I am relatively new to Python so excuse some of > the following. ) > > In a .py file I create an ABC and then specialize it: > >from MyMod import * >from abc import ABCMeta, abstractmethod > >#

New on python

2013-09-16 Thread Ibrahima Barry
hello everyone, I am a beginner in python programming language, so I need help with the basics, the synthaxes, functions, please help me -- https://mail.python.org/mailman/listinfo/python-list

Released: Python 2.6.9 release candidate 1

2013-09-30 Thread Barry Warsaw
g/download/releases/2.6.9/NEWS.txt Many thanks go out to the entire Python community for their contributions and help in making Python 2.6.9 available, especially Jyrki Pulliainen for his patch contributions. Enjoy, -Barry (on behalf of the Python development community) signature.asc Descri

RELEASED: Python 2.6.9 final

2013-10-29 Thread Barry Warsaw
9/NEWS.txt Users on OS X 10.9 (Mavericks) please note that issue 18458, which can crash the interactive interpreter, is *not* fixed in 2.6.9. If this issue affects you, please review the tracker for possible options: http://bugs.python.org/issue18458 Enjoy, -Barry (on behalf of the Pyt

Re: what are the most frequently used functions?

2006-10-28 Thread Barry Margolin
t aren't functions will have low enough frequency that they won't impact the results. Perl would be harder, I think. For ordinary function calls you can look for a word followed by (, but built-in functions allow use without parentheses around the parameters. -- Barry Margolin, [EMA

__getattribute__ doesn't work on 'type' type for '__class__'

2006-06-20 Thread Barry Kelly
--- Yet when I try this with the 'type' type, it doesn't work: ---8<--- >>> x.__class__.__class__ >>> x.__class__.__getattribute__('__class__') Traceback (most recent call last): File "", line 1, in ? TypeError: descriptor '__get

Re: __getattribute__ doesn't work on 'type' type for '__class__'

2006-06-20 Thread Barry Kelly
Barry Kelly <[EMAIL PROTECTED]> wrote: > From "pydoc __getattribute__": > > ---8<--- > Help on method-wrapper object: > > __getattribute__ = class method-wrapper(object) > | Methods defined here: > | > | __call__(...) > | x.__call

Re: size of an array..

2006-07-01 Thread Barry Kelly
etermine the number of elements in "l", or the number of > iterations for the "for loop" prior to running it... > > the tutorials i've seen as of yet haven't mentioned this.. Have you tried len(object)? -- Barry -- http://barrkel.blogspot.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: python/libxml2dom questions

2006-07-01 Thread Barry Kelly
"bruce" <[EMAIL PROTECTED]> wrote: > also, how can i determine what methods are available for a libxml2dom > object? Have you tried dir(object)? It works great on the command-line reply-eval-print loop. -- Barry -- http://barrkel.blogspot.com/ -- http://mail.pytho

Re: [Mailman-Developers] Parsing and Rendering rfc2822

2006-07-05 Thread Barry Warsaw
be able to preserve the current u/i and link algorithm unless the new one is explicitly enabled. And if the archives are regenerated with a new u/i, we should ensure that the link urls will be much more persistent than they currently are, probably based on a guaranteed unique Mes

Re: [Mailman-Developers] Parsing and Rendering rfc8222

2006-07-05 Thread Barry Warsaw
eems to be the obvious choice; anything else I should > consider? Anyone know of good pylucene/web UI glue code out there? Just keep in mind that of course, Mailman is GPL so anything we bundle has to be GPL-compatible. - -Barry -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Dar

Re: [Mailman-Developers] Parsing and Rendering rfc8222

2006-07-05 Thread Barry Warsaw
e can to make sure that Richard's ht:dig solution is nearly trivial to integrate, but I'm not sure we should distribute it with Mailman. - -Barry -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (Darwin) iQCVAwUBRKxMYHEjvBPtnXfVAQKQqgP/V82bojemSuFnLGr

Re: [Mailman-Developers] Parsing and Rendering rfc8222

2006-07-05 Thread Barry Warsaw
7;t read JWZ's article in a while, but IIRC, it lays out an algorithm that does about as good as you can do in these cases. BTW, my earlier post re: X-List-Message-ID isn't about threading, it's about message identification and trying to make that as robust as possible. - -Barr

Re: [Mailman-Developers] Parsing and Rendering rfc8222

2006-07-06 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jul 6, 2006, at 1:56 PM, Brad Knowles wrote: > Barry said: > >> We should certainly do everything we can to make sure that Richard's >> ht:dig solution is nearly trivial to integrate, but I'm not sure we >>

RE: What is proper way to require a method to be overridden?

2007-01-05 Thread Carroll, Barry
insert(self,x): raise NotImplementedError, "set.insert" In this way the superclass's interface is well defined (the methods and their parameters are all listed, but if invoked before they are overwritten, they abort with a useful error message. Pretty slick, IMHO. Regards, B

File Closing Problem in 2.3 and 2.4, Not in 2.5

2007-01-05 Thread Carroll, Barry
ated bugs, but found no mention of this type of a bug. What I want to know is: * has anyone else encountered a problem like this, * how was the problem corrected, * can the fix be retro-fitted to 2.5 and 2.4? Thanks in advance for any information you can provide. Regards

RE: File Closing Problem in 2.3 and 2.4, Not in 2.5

2007-01-08 Thread Carroll, Barry
> -Original Message- > From: [EMAIL PROTECTED] [mailto:python- > [EMAIL PROTECTED] On Behalf Of John Machin > Sent: Saturday, January 06, 2007 11:09 PM > To: python-list@python.org > Subject: Re: File Closing Problem in 2.3 and 2.4, Not in 2.5 > > Martin v. Löwis w

RE: File Closing Problem in 2.3 and 2.4, Not in 2.5

2007-01-08 Thread Carroll, Barry
John: <<> > > Hi Barry, > > Please always reply on-list if the communication is non-private -- and > meaningful :-) Right. I noticed I hadn't "replied-to-all", so I resent the post to the mailing list. Slip of the mouse, no disrespect intended to th

RE: File Closing Problem in 2.3 and 2.4, Not in 2.5 (Final report)

2007-01-09 Thread Carroll, Barry
ad programmer is convinced (I think) that we have a reference count problem somewhere, so perhaps he will persue it. If any more useful information comes up on this subject, I'll post it here. Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere ston

RE: Free support for Python developers

2007-07-30 Thread Carroll, Barry
Viktor: This is a great idea. Thank you I don't currently have a voice setup on my machine, but will try to get one as soon as possible. I would be pleased to trade English practice for Python support. Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut

win32con.client.constants error

2007-04-01 Thread Barry Newberger
False if not self.outlookFound: return [SNIP] # Outlook default folder constants msgFolderTypeConsts = {'Rcvd': constants.olFolderInbox, 'Sent': constants.olFolderSentMail} folderSet = [yr, mo, msgType] # Used to loop over folder tree. I am runni

Re: How to Start

2007-09-13 Thread Brandon Barry
On Sep 13, 5:59 pm, [EMAIL PROTECTED] (Michael R. Copeland) wrote: >I've decided that Python is a language/environment I'd like to learn > (I've been a professional programmer for 45+ years), but I really don't > know where and how to start! I have a number of books - and am buying > some more

RE: File Closing Problem in 2.3 and 2.4, Not in 2.5 (Final report)

2007-01-09 Thread Carroll, Barry
Hi, Gabriel, > -Original Message- > From: Gabriel Genellina [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 09, 2007 4:06 PM > To: python-list@python.org > Subject: RE: File Closing Problem in 2.3 and 2.4, Not in 2.5 (Final > report) > > At Tuesday 9/1/2007 20:

OT: teleporters (Was: General Question About Python)

2007-01-16 Thread Carroll, Barry
quot; malfunction which caused the subject to turn inside out and then explode.(2) These experiments MUST be conducted under the most rigorous controls to prevent similar catastrophes. (Unless, you're using Perl programmers as test subjects, in which case it's okay. ;^) Humorously your

RE: *POLL* How many sheeple believe in the 911 fairy tale and willingto accept an Orwellian doublespeak and enslavement world ?

2007-01-17 Thread Carroll, Barry
are many forums where people will be happy to debate this: physics, firefighting, metallurgy, geopolitics, etc. This forum is about the Python programming language. Let's keep it that way. Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stones must always be envisioning cathedrals. -Quarry worker's creed -- http://mail.python.org/mailman/listinfo/python-list

RE: *POLL* How many sheeple believe in the 911 fairy tale and willingto accept an Orwellian doublespeak and enslavement world ?

2007-01-17 Thread Carroll, Barry
happy to debate this: physics, firefighting, metallurgy, geopolitics, etc. This forum is about the Python programming language. Let's keep it that way. Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stones must always be envisioning cathedrals.

RE: *POLL* How many sheeple believe in the 911 fairy tale and willingto accept an Orwellian doublespeak and enslavement world ?

2007-01-17 Thread Carroll, Barry
ake this discussion to a more appropriate forum. There are many forums where people will be happy to debate this: physics, firefighting, metallurgy, geopolitics, etc. This forum is about the Python programming language. Let's keep it that way. Regards, Barry [EMAIL PROTECTED] 5

RE: *POLL* How many sheeple believe in the 911 fairy tale and willingto accept an Orwellian doublespeak and enslavement world ?

2007-01-17 Thread Carroll, Barry
here people will be happy to debate this: physics, firefighting, metallurgy, geopolitics, etc. This forum is about the Python programming language. Let's keep it that way. Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stones must always be envision

RE: *POLL* How many sheeple believe in the 911 fairy tale and willingto accept an Orwellian doublespeak and enslavement world ?

2007-01-17 Thread Carroll, Barry
you to see if you had the IQ > to search for it. > Ladies and Gentlemen: PLEASE take this discussion to a more appropriate forum. There are many forums where people will be happy to debate this: physics, firefighting, metallurgy, geopolitics, etc. This forum is about the Python programmi

OT: Apology

2007-01-17 Thread Carroll, Barry
just hope the other posters will follow suit. Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stones must always be envisioning cathedrals. -Quarry worker's creed > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL P

OT Annoying Habits (Was: when format strings attack)

2007-01-19 Thread Carroll, Barry
s. So, as far as I'm concerned, post your posts in whatever manner works for you. If it's in English, I'll figure it out. If not, well, there's always Babelfish. ;^) Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stone

RE: OT Annoying Habits (Was: when format strings attack)

2007-01-19 Thread Carroll, Barry
know which rules I'm choosing to break. ;^) Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stones must always be envisioning cathedrals. -Quarry worker's creed > -Original Message- > From: Aahz [mailto:[EMAIL PROTECTED] > Sent

RE: OT Annoying Habits (Was: when format strings attack)

2007-01-19 Thread Carroll, Barry
> -Original Message- > From: Aahz [mailto:[EMAIL PROTECTED] > Sent: Friday, January 19, 2007 3:29 PM > To: python-list@python.org > Subject: Re: OT Annoying Habits (Was: when format strings attack) > > In article <[EMAIL PROTECTED]>, > Carroll, B

RE: Overloading assignment operator

2007-01-23 Thread Carroll, Barry
OLL[Python]|7> a.result = 2*3 @BCARROLL[Python]|8> a.result <8> 6 @BCARROLL[Python]|9> a.result = 25.0 * 5.25 @BCARROLL[Python]|10> a.result <10> 131.25 @BCARROLL[Python]|11> >>>>>>>>>> HTH Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stones must always be envisioning cathedrals. -Quarry worker's creed -- http://mail.python.org/mailman/listinfo/python-list

RE: Overloading assignment operator

2007-01-25 Thread Carroll, Barry
> -Original Message- > From: Gabriel Genellina [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 23, 2007 9:24 PM > To: python-list@python.org > Subject: Re: Overloading assignment operator > > "Carroll, Barry" <[EMAIL PROTECTED]> escribió

RE: What is the dummy statement that do nothing in Python?

2007-01-31 Thread Carroll, Barry
there? > > Thanks! > > Greetings: Try 'pass': if a>b: pass else: dosomething() Regards, Barry [EMAIL PROTECTED] 541-302-1107 We who cut mere stones must always be envisioning cathedrals. -Quarry worker's creed -- http://mail.python.org/mailman/listinfo/python-list

RE: Sorting a list

2007-02-01 Thread Carroll, Barry
alling sort() on the list should just work. > > Amazing, it was that easy. :) Hello, John. Yeah. That's one of the things that drew me to Python: so many things you want to do are just so *easy* in Python. Regards, Barry [EMAIL PROTECTED] 541-302-1107 ___

open excel file while it is being used.

2008-01-10 Thread barry . zhao
ng notification. I have been trying to implement that in the program, but don't know how. So, any suggestion will be greatly appreciated! - Barry -- http://mail.python.org/mailman/listinfo/python-list

RELEASED Python 2.6a1 and 3.0a3

2008-03-01 Thread Barry Warsaw
ll to be determined. Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.8 (Darwin) iQCVAwUBR8mlu3EjvBPtnXfVAQKePAQAgx6w9wztfJaSWkbKrbwur2U6t6o5aIY5 pyMa00CZWY06p8099BztcSjgp5

Re: [Python-3000] RELEASED Python 2.6a1 and 3.0a3

2008-03-01 Thread Barry Warsaw
.l.p. announcement. > > I just fixed that. The files were there; just the links were wrong. Thanks for fixing these Martin! - -Barry -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.8 (Darwin) iQCVAwUBR8nY1HEjvBPtnXfVAQJ3YgP/TYr0X5vRqvVDEMgsHxHuiSuYZCIr8y36 ibAh3RAGeLLK7C7NiOyAfxkesf91

Re: [Python-Dev] [ANN] Python 2.3.7 and 2.4.5, release candidate 1

2008-03-03 Thread Barry Warsaw
I definitely won't change > it to work out of the box. If 2.4.4 compiled out of the box on this > box, > it would have been a regression and would have to be fixed. IIUC, > 2.4.4 > won't compile on 10.5, either, and Python 2.4.5 will have no code to > port it to

Re: Pycon disappointment

2008-03-16 Thread Barry Hawkins
On Mar 16, 9:18 am, [EMAIL PROTECTED] (Aahz) wrote: > In article <[EMAIL PROTECTED]>, > Bruce Eckel  <[EMAIL PROTECTED]> wrote: > > >If the following seems unnecessarily harsh, it was even more harsh for > >me to discover that the time and money I had spent to get to my > >favorite conference had b

RELEASED Python 3.0.1

2009-02-13 Thread Barry Warsaw
see the Python 3.0.1 release page: http://www.python.org/download/releases/3.0.1/ To report bugs in Python 3.0.1, please submit them to the issue tracker at: http://bugs.python.org/ Enjoy! Barry -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin) iQCVAwUBSZYpSnEj

Re: [Python-Dev] RELEASED Python 3.0.1

2009-02-14 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Feb 13, 2009, at 11:46 PM, Benjamin Kaplan wrote: Any chance of getting a Mac installer for this one? I believe Ronald is planning to upload it soon. Barry -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin

Re: [Python-mode] special editor support for indentation needed.

2008-11-27 Thread Barry Warsaw
it's version 1.0 from year 2005. You are right, sorry. I should tell you the present place. Barry Warsaw, the maintainer, took it to https://launchpad.net/python-mode Please look there for last version. Maybe subscribe the mailing list at [EMAIL PROTECTED] I've tried as best I c

RELEASED Python 3.0 final

2008-12-03 Thread Barry Warsaw
nloadable distributions, see the Python 3.0 website: http://www.python.org/download/releases/3.0/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin) iQCVAwUBS

Re: RELEASED Python 3.0 final

2008-12-03 Thread Barry Warsaw
ter first impression :) Fixed, thanks! - -Barry -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin) iQCVAwUBSTc/WHEjvBPtnXfVAQL8TwP+M2Ryv7WY36ICEvzGU4EzlRG/gI4MolQe cD8DJUJfQuR6INTot/t7vTcL8oDHq7q9OHbfvd3jmSwH/ZytsMz2OvJUYlKDQjwG BcQRpioprcesoU6cufSmKAUiUP+L0RTAMmT0WDbbeCzzMZRq3Humd4Zs43nL26N

RELEASED Python 2.6.1

2008-12-04 Thread Barry Warsaw
/releases/2.6.1/ Bugs can be reported in the Python bug tracker: http://bugs.python.org Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin

RELEASED Python 3.0rc2

2008-11-06 Thread Barry Warsaw
downloadable distributions, see the Python 3.0 website: http://www.python.org/download/releases/3.0/ See PEP 361 for release schedule details: http://www.python.org/dev/peps/pep-0361/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire

RELEASED Python 3.0rc3

2008-11-21 Thread Barry Warsaw
/peps/pep-0361/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin) iQCVAwUBSSbOhHEjvBPtnXfVAQLzBwP/dS2j4XhZMNdb28TG3ZblkSmlPS4IU20U Vvq85inUkJ6idwKZBqa6brrD1hbqrl4UjKZh4

Re: [Python-Dev] PEP 382: Namespace Packages

2009-04-06 Thread Barry Warsaw
#x27;t the policy just that nothing can go into 2.7 that isn't backported from 3.1? Whether the actual backport happens or not is up to the developer though. OTOH, we talked about a lot of things and my recollection is probably fuzzy. Barry -BEGIN PGP SIGNATURE- Version: GnuPG

RELEASED Python 2.6.2 candidate 1

2009-04-07 Thread Barry Warsaw
page: http://www.python.org/download/releases/2.6.2/ Bugs can be reported in the Python bug tracker: http://bugs.python.org Enjoy, Barry Barry Warsaw ba...@python.org Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v

RELEASED Python 2.6.2

2009-04-15 Thread Barry Warsaw
page: http://www.python.org/download/releases/2.6.2/ Please report bugs for any Python version in the Python tracker: http://bugs.python.org Enjoy, -Barry Barry Warsaw ba...@python.org Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) PGP.sig Description: This

Re: [Python-Dev] RELEASED Python 2.6.2

2009-04-15 Thread Barry Warsaw
the OS X image for 2.6.2, AFAIK. I think it will be out soon, and maybe he can answer your Tcl/ Tk question. -Barry PGP.sig Description: This is a digitally signed message part -- http://mail.python.org/mailman/listinfo/python-list

Re: [Python-Dev] RELEASED Python 2.6.2

2009-04-17 Thread Barry Warsaw
On Apr 17, 2009, at 5:42 AM, Piet van Oostrum wrote: Maybe a link to the MacOSX image can also be added to http://www.python.org/download Done. -Barry PGP.sig Description: This is a digitally signed message part -- http://mail.python.org/mailman/listinfo/python-list

Re: [Python-Dev] PEP 383: Non-decodable Bytes in System Character Interfaces

2009-04-29 Thread Barry Scott
unicode and bytes if its not utf-8 data. Why not simply return string if its valid utf-8 otherwise return bytes? Then in the app you check for the type for the object, string or byte and deal with reporting errors appropriately. Barry -- http://mail.python.org/mailman/listinfo/python-list

Re: [Python-Dev] PEP 383: Non-decodable Bytes in System Character Interfaces

2009-04-30 Thread Barry Scott
s if its a string no problem, if its a byte deal with the exceptions seems simple. How do I do this detection with the PEP proposal? Do I end up using the byte interface and doing the utf-8 decode myself? Barry -- http://mail.python.org/mailman/listinfo/python-list

Re: [Python-Dev] PEP 383: Non-decodable Bytes in System Character Interfaces

2009-04-30 Thread Barry Scott
e. How do I do this detection with the PEP proposal? Do I end up using the byte interface and doing the utf-8 decode myself? No, you should encode using the "strict" error handler, with the locale encoding. If the file name encodes successfully, it's correct, otherwise, it&#x

Re: [Python-mode] What text editor is everyone using for Python

2009-05-29 Thread Barry Warsaw
try ?\_ "w" py-mode-syntax-table) This one is ancient and I remember that Guido and I talked about this for a long time before settling on the behavior. -Barry PGP.sig Description: This is a digitally signed message part -- http://mail.python.org/mailman/listinfo/python-list

RELEASED Python 2.6b1 and 3.0b1

2008-06-18 Thread Barry Warsaw
and downloadable distributions, see the Python 2.6 website: http://www.python.org/download/releases/2.6/ and the Python 3.0 web site: http://www.python.org/download/releases/3.0/ See PEP 361 for release schedule details: http://www.python.org/dev/peps/pep-0361/ Enjoy, - -Barry

Re: [Python-3000] RELEASED Python 2.6b1 and 3.0b1

2008-06-19 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jun 19, 2008, at 4:43 AM, Paul Moore wrote: On 19/06/2008, Barry Warsaw <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On behalf of the Python development team and the Python community, I am happy to announ

RELEASED Python 2.6b2 and 3.0b2

2008-07-17 Thread Barry Warsaw
/releases/3.0/ See PEP 361 for release schedule details: http://www.python.org/dev/peps/pep-0361/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin

RELEASED Python 2.6a2 and 3.0a4

2008-04-03 Thread Barry Warsaw
n 3.0 web site: http://www.python.org/download/releases/3.0/ We are planning one more alpha release of each version, followed by two beta releases, with the final releases planned for August 2008. See PEP 361 for release details: http://www.python.org/dev/peps/pep-0361/ Enjoy, - -

RELEASED Python 2.6a3 and 3.0a5

2008-05-08 Thread Barry Warsaw
September 3, 2008. See PEP 361 for release details: http://www.python.org/dev/peps/pep-0361/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.8 (Darwin

RELEASED Python 2.6b3 and 3.0b3

2008-08-20 Thread Barry Warsaw
: http://www.python.org/download/releases/2.6/ and the Python 3.0 web site: http://www.python.org/download/releases/3.0/ See PEP 361 for release schedule details: http://www.python.org/dev/peps/pep-0361/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on

RELEASED Python 2.6rc1

2008-09-12 Thread Barry Warsaw
://www.python.org/dev/peps/pep-0361/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python-dev team) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Darwin) iQCVAwUBSMsXV3EjvBPtnXfVAQJFsgP9GxZYQocbDTd0Z/0yEjpHfZ/FTd8y83jV

RELEASED Python 2.6rc2 and 3.0rc1

2008-09-17 Thread Barry Warsaw
/download/releases/2.6/ and the Python 3.0 web site: http://www.python.org/download/releases/3.0/ See PEP 361 for release schedule details: http://www.python.org/dev/peps/pep-0361/ Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on behalf of the entire python

RELEASED Python 2.6 final

2008-10-01 Thread Barry Warsaw
ad/releases/2.6/ (Please note that due to quirks in the earth's time zones, the Windows installers will be available shortly.) Bugs can be reported in the Python bug tracker: http://bugs.python.org Enjoy, - -Barry Barry Warsaw [EMAIL PROTECTED] Python 2.6/3.0 Release Manager (on

Re: RELEASED Python 2.6 final

2008-10-02 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Oct 1, 2008, at 11:46 PM, Barry Warsaw wrote: On behalf of the Python development team and the Python community, I am happy to announce the release of Python 2.6 final. This is the production-ready version of the latest in the Python 2

Re: symbolic links, aliases, cls clear

2006-04-12 Thread Barry Margolin
". /usr/share/term-sh/$TERM" or > something similar. I generated a lot of files a few years ago, > but I have never had any call for them, so I'd have to hunt for > them. So you've essentially reinvented the whole termcap/terminfo mechanism? -- Barry Margolin,

Python 2.6.3rc1 available

2009-09-30 Thread Barry Warsaw
. Barring any unforeseen problems, we will make the final 2.6.3 release this Friday, October 2nd. Please give this release candidate a spin and let us know if you encounter any show stopping problems. Enjoy, -Barry PGP.sig Description: This is a digitally signed message part -- http

RELEASED Python 2.6.3

2009-10-02 Thread Barry Warsaw
e see http://docs.python.org/whatsnew/2.6.html Please report bugs for any Python version in the Python tracker. http://bugs.python.org Enjoy, -Barry Barry Warsaw ba...@python.org Python 2.6 Release Manager (on behalf of the entire python-dev team) PGP.sig Description: This is a digi

Python 2.6.4rc1

2009-10-07 Thread Barry Warsaw
them. Hopefully we can avoid the situation with 2.6.3 having such critical bugs. 2.6.4 final is planned for 18-October. Cheers, -Barry PGP.sig Description: This is a digitally signed message part -- http://mail.python.org/mailman/listinfo/python-list

Python 2.6.4rc2

2009-10-18 Thread Barry Warsaw
there are no more regressions found, we'll do the final release in one week, on 25-October. Enjoy, -Barry PGP.sig Description: This is a digitally signed message part -- http://mail.python.org/mailman/listinfo/python-list

RELEASED Python 2.6.4

2009-10-26 Thread Barry Warsaw
on Python 2.6 in general, please see http://docs.python.org/whatsnew/2.6.html Please report bugs for any Python version in the Python tracker. http://bugs.python.org Enjoy, -Barry Barry Warsaw ba...@python.org Python 2.6 Release Manager (on behalf of the entire python-dev team)

Python 2.6.5 release candidate 1 now available

2010-03-02 Thread Barry Warsaw
will do the final release on Monday March 15, 2010. Please test the release candidate as much as possible in the meantime, and help make 2.6.5 a rock solid release! Thanks, -Barry P.S. The Mac installer will hopefully be available soon. signature.asc Description: PGP signature -- http

Python 2.6.5 release candidate 2 now available

2010-03-10 Thread Barry Warsaw
problems on OS X have been fixed since rc1, and I'm really hoping we will not have to do an rc3. I'm currently planning on releasing 2.6.5 final on March 19, 2010. Enjoy, -Barry P.S. The Mac installer will hopefully be available soon. signature.asc Description: PGP signatur

RELEASED Python 2.6.5

2010-03-19 Thread Barry Warsaw
disk image will be uploaded soon. http://www.python.org/download/releases/2.6.5/ For more information on Python 2.6 in general, please see http://docs.python.org/whatsnew/2.6.html Please report bugs for any Python version in the Python tracker. http://bugs.python.org Enjoy, -Barry

Python 2.6.6 release candidate 1 now available

2010-08-04 Thread Barry Warsaw
support security fixes in Python 2.6 for quite some time. My thanks go out to everyone who has helped contribute fixes great and small, and much testing and bug tracker gardening for Python 2.6.6. The excellent folks on #python-dev are true Pythonic heros too. Enjoy, -Barry (on behalf of the

Python 2.6.6 release candidate 2 now available.

2010-08-17 Thread Barry Warsaw
. We plan on continuing to support source-only security fixes in Python 2.6 for the next five years. My thanks go out to everyone who has contributed with code, testing and bug tracker gardening for Python 2.6.6. The excellent folks on #python-dev are true Pythonic heros. Enjoy, -Barry (on behalf o

Released: Python 2.6.6

2010-08-24 Thread Barry Warsaw
y releases of Python 2.6 will be made available. After that date, Python 2.6 will no longer be supported, even for security bugs. My deepest appreciation go out to everyone who has helped contribute fixes great and small, and much testing and bug tracker gardening for Python 2.6.6. Enjoy, -Barry

Python 3.0 (pinin' for the fjords)

2009-07-02 Thread Barry Warsaw
.1.x release after the final release of Python 3.2. Cheers, -Barry PGP.sig Description: This is a digitally signed message part -- http://mail.python.org/mailman/listinfo/python-list

Can't get UDP example to work

2009-07-26 Thread Paul Barry
I'm trying to get one of the examples from Foundation of Python Network Programming to work. Specifically this is the UDP example from Ch 3. First there is the server: #!/usr/bin/env python # UDP Echo Server - Chapter 3 - udpechoserver.py import socket, traceback, time host = '127.0.0.1'

Re: Can't get UDP example to work

2009-07-26 Thread Paul Barry
On Jul 26, 12:53 pm, Roy Smith wrote: > In article > <148abf0f-c9e4-4156-8f16-e4e5615d3...@s6g2000vbp.googlegroups.com>, >  Paul Barry wrote: > > > host = '127.0.0.1'           # Bind to all interfaces > > This threw me off the track for a little whil

Re: Can't get UDP example to work

2009-07-26 Thread Paul Barry
On Jul 26, 11:07 am, MRAB wrote: > Paul Barry wrote: > > I'm trying to get one of the examples from Foundation of Python > > Network Programming to work.  Specifically this is the UDP example > > from Ch 3.  First there is the server: > > > #!/usr/bin/env pytho

Announcing SCM Workbench 0.8.5 GUI for Git, Mercurial (hg) and Subversion (svn)

2017-03-22 Thread Barry Scott
information on SCM Workbench. SCM Workbench is implemented in Python3 using PyQt5, pysvn, GitPython and hglib-python. Barry -- https://mail.python.org/mailman/listinfo/python-list

Python3 C extension how to support dir()

2017-04-14 Thread Barry Scott
rsion all_attr = super( mytype, obj ).__dir__(); all_attr.extend( mytype_variable_names ); I'm not getting inspiration from the python 3.6 sources for this problem. I did find the object_dir function in typeobject.c, but that has not helped get me forward. What am I missing? Barry

<    1   2   3   4   5   6   7   >