[RELEASE] Python 3.10.4 and 3.9.12 are now available out of schedule

2022-03-24 Thread Łukasz Langa
/manylinux/tree/manylinux2010_x86_64_centos6_no_vsyscall> image used to build widely compatible Linux wheels is based on CentOS 6. (Don’t worry, we do have newer manylinux* variants, see PEP 599 <https://peps.python.org/pep-0599/> and PEP 600 <https://peps.python.org/pep-0600/> for details

EuroPython 2021: Schedule published

2021-06-17 Thread Marc-Andre Lemburg
After two weeks of hard work by our program workgroup, we are very excited to announce the EuroPython 2021 schedule: * EuroPython 2021 Schedule * https://ep2021.europython.eu/schedule/ Seven full days of Python - EuroPython 2021 will

EuroPython 2020: Schedule published

2020-05-29 Thread M.-A. Lemburg
We are very excited to announce the first version of our EuroPython 2020 schedule: * EuroPython 2020 Schedule * https://ep2020.europython.eu/schedule/ More sessions than we ever dreamed of - After the 2nd CFP, we found

EuroPython 2019: Schedule is online

2019-06-24 Thread M.-A. Lemburg
We are pleased to announce the EuroPython 2019 schedule. We will again have more than 130 sessions in total, held by more than 130 speakers. Schedule for EuroPython 2019 * https://ep2019.europython.eu/events/schedule/ * Please note that the schedule may still

EuroPython 2018: Schedule available

2018-07-03 Thread M.-A. Lemburg
Over the last few weeks, our program WG has been working hard on getting the schedule all lined up. Today, we’re releasing it to the Python world. Schedule for EuroPython 2018 * https://ep2018.europython.eu/en/events/schedule/ * With 140 speakers and more than 150

EuroPython 2017: Full schedule now online

2017-06-08 Thread M.-A. Lemburg
We are happy to announce the schedule for EuroPython 2017 in Rimini, Italy (July 9-16). The program WG has been working hard trying to fit all the sessions in the last few weeks. With over 200 sessions, over 180 speakers, one day for workshops, 5 days of talks, training, keynotes, lightning talks

EuroPython 2016: Schedule online

2016-04-16 Thread M.-A. Lemburg
We are happy to announce the schedule for EuroPython 2016 in Bilbao. The program WG has been working hard trying to fit all the sessions in the last few weeks. With over 180 sessions, over 150 speakers, one day for workshops, 5 days of talks, training, keynotes, lightning talks and open spaces

Schedule of PythonFOSDEM 2016

2016-01-08 Thread Stephane Wirtel
collaborate in Brussels (Belgium). The event is free, no registration necessary. More details at these addresses: * About FOSDEM : https://fosdem.org/2016/ * About Schedule of PythonFOSDEM: https://fosdem.org/2016/schedule/track/python/ See you there, Stephane -- Stéphane Wirtel - http

EuroPython 2015: Guidebook (Mobile Schedule) available

2015-07-15 Thread M.-A. Lemburg
We are pleased to announce the official guidebook for the EuroPython 2015 conference: *** https://ep2015.europython.eu/en/events/mobile-schedule/ *** We will regularly issue updates to the guidebook when there are changes in schedule. Available for all platforms

EuroPython 2015: Schedule online

2015-06-16 Thread M.-A. Lemburg
We are happy to announce the schedule for EuroPython 2015 in Bilbao. With over 200 sessions, over 180 speakers, 5 days of talks, trainings, keynotes, lightning talks and open spaces, followed by 2 days of sprints, EuroPython will be one of the most exciting and vibrant Python events this year

PythonFOSDEM 2015 - Schedule Updated… We will start at 10:30 AM

2015-01-12 Thread Stéphane Wirtel
Dear Python Community, Because the FOSDEM will start at 10:30 AM on Saturday 31st January, the first talk will be at 10:30 AM. Thus all the talks will be ajusted. The Schedule on the site of FOSDEM and on the PythonFOSDEM site have been updated. https://fosdem.org/2015/schedule/track

Re: Is there a way to schedule my script?

2014-12-18 Thread Terry Reedy
some 'human actions' inside the network to do some benchmarks and test internal stuffs. This need to be 'flexible'. Tkinter's .after method makes it trivial to schedule and run a function at either regular or haphazardly variable intervals and add the result to a gui disp

Re: Is there a way to schedule my script?

2014-12-18 Thread Juan Christian
On Thu Dec 18 2014 at 11:35:11 PM Chris Angelico wrote: Why does this matter to you? Why am I getting the feeling that I should not be helping you? Because that's what my project is all about, I need to fake some 'human actions' inside the network to do some benchmarks and test internal stuffs. T

Re: Is there a way to schedule my script?

2014-12-18 Thread Chris Angelico
On Fri, Dec 19, 2014 at 9:13 AM, Juan Christian wrote: > Let's say I execute the script now, then in 5~10 min I'll execute again, > this time can be 5, 6, ... 10 minutes, this script pretends to do 'human > actions' so I can't be doing these 'actions' with a specific and rigid > times. Why does t

Re: Is there a way to schedule my script?

2014-12-18 Thread Juan Christian
On Thu Dec 18 2014 at 2:24:46 PM Ian Kelly wrote: What kind of random distribution of the time between executions are you looking for? A random sleep lends itself easily to a uniform distribution. The latter approach that you describe would result in a geometric distribution. I'm looking for a ra

Re: Is there a way to schedule my script?

2014-12-18 Thread Juan Christian
Thanks, using cron here. -- https://mail.python.org/mailman/listinfo/python-list

Re: Is there a way to schedule my script?

2014-12-18 Thread Josh English
On Wednesday, December 17, 2014 11:11:11 AM UTC-8, Juan Christian wrote: > I know about the schedule modules and such but they work in situations like > 'run this in a X hours/minutes/seconds interval', I already have my code in a > while loop with sleep (it's a b

Re: Is there a way to schedule my script?

2014-12-18 Thread Michael Torrie
On 12/17/2014 01:42 PM, Juan Christian wrote: > On Wed Dec 17 2014 at 6:25:39 PM John Gordon wrote: > If you want to solve your problem entirely within Python, look at the > "scheduler" module. (Although even this isn't a complete solution, as you > still have to make sure the program is running i

Re: Is there a way to schedule my script?

2014-12-18 Thread Ian Kelly
On Thu, Dec 18, 2014 at 5:37 AM, Juan Christian wrote: > I read the cron doc, it's really simple to use, but one think I didn't see out-of-the-box is a way to set a random time, like 'execute this in a 5~10 min interval', I can only set specific times like 'execute this each minute, each hour, eac

Re: Is there a way to schedule my script?

2014-12-18 Thread Juan Christian
On Wed Dec 17 2014 at 11:04:16 PM Juan Christian wrote: Thanks. That was a great answer. I'll redo my code. It's running and will only run in my Docker container (Ubuntu Server 14.04.1) so I'll use cron. Indeed, currently I'm using something like that: while True: if 9 < datetime.now().hour < 24

Re: Is there a way to schedule my script?

2014-12-17 Thread Juan Christian
On Wed Dec 17 2014 at 9:40:52 PM Steven D'Aprano < steve+comp.lang.pyt...@pearwood.info> wrote: > Juan Christian wrote: > > > I know about the schedule modules and such but they work in situations > > like 'run this in a X hours/minutes/seconds interval'

Re: Is there a way to schedule my script?

2014-12-17 Thread Steven D'Aprano
Juan Christian wrote: > I know about the schedule modules and such but they work in situations > like 'run this in a X hours/minutes/seconds interval', I already have my > code in a while loop with sleep (it's a bit ugly, I'l change to a > scheduler soon). [...]

Re: Is there a way to schedule my script?

2014-12-17 Thread Chris Cioffi
Hi Juan, I don't know what platform you're on, but you've got several options. Mac: setup a launchd job, I use http://www.soma-zone.com/LaunchControl/ to do the setups Linux/unix: setup a cron job, depending on your distro launchd may also be an option. Windows: setup a scheduled job in

Re: Is there a way to schedule my script?

2014-12-17 Thread Juan Christian
On Wed Dec 17 2014 at 7:35:10 PM Chris Angelico wrote: time.time() % 86400 That's number of seconds since midnight UTC, ranging from 0 up to 86399. (I've no idea what 64562 would mean. That's an awfully big number for a single day.) If you offset that before calculating, you can get that in

Re: Is there a way to schedule my script?

2014-12-17 Thread Chris Angelico
On Thu, Dec 18, 2014 at 7:42 AM, Juan Christian wrote: > Is there any kind of time calculation in Python that counts the time like 0, > 1, 2, 3... so that 0AM would be 0, and 11:59PM would be let's say > '64562'? And everyday it gets a reset when the clock 'turns'? time.time() % 86400 That's

Re: Is there a way to schedule my script?

2014-12-17 Thread Juan Christian
On Wed Dec 17 2014 at 6:25:39 PM John Gordon wrote: If you want to solve your problem entirely within Python, look at the "scheduler" module. (Although even this isn't a complete solution, as you still have to make sure the program is running in the first place...) My script is running fine, Win

Re: Is there a way to schedule my script?

2014-12-17 Thread John Gordon
In Juan Christian writes: > The standard system "kill" command would probably work for this purpose, > assuming you have access to your main program's process ID. > There isn't any 'prettier' way? Such as a built-in or third-party module > for something common like that? If you're on Unix, 'k

Re: Is there a way to schedule my script?

2014-12-17 Thread Juan Christian
Ops, sorry. It's: 9:00 AM ~ 11:59 PM -> Running ... and not 9:00 AM ~ 11:50 PM -> Running -- https://mail.python.org/mailman/listinfo/python-list

Re: Is there a way to schedule my script?

2014-12-17 Thread Juan Christian
On Wed Dec 17 2014 at 5:45:31 PM John Gordon wrote: You could write a separate program whose only job is to send a STOP or CONTINUE signal to your main program, and then run that program from a scheduler. The standard system "kill" command would probably work for this purpose, assuming you have a

Re: Is there a way to schedule my script?

2014-12-17 Thread John Gordon
In Juan Christian writes: > --047d7b874b2c1e67eb050a6e3cc4 > Content-Type: text/plain; charset=UTF-8 > I know about the schedule modules and such but they work in situations like > 'run this in a X hours/minutes/seconds interval', I already have my code in > a whil

Is there a way to schedule my script?

2014-12-17 Thread Juan Christian
I know about the schedule modules and such but they work in situations like 'run this in a X hours/minutes/seconds interval', I already have my code in a while loop with sleep (it's a bit ugly, I'l change to a scheduler soon). What I really want is, for example: 24/7/365 9:

Re: Python 2.8 release schedule

2013-12-06 Thread Ethan Furman
On 12/06/2013 06:07 PM, Chris Angelico wrote: On Sat, Dec 7, 2013 at 1:00 PM, Mark Lawrence wrote: On 07/12/2013 01:54, Chris Angelico wrote: On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence wrote: Sorry but I don't get it :) [explained the joke] Clearly that went straight over your head.

Re: Python 2.8 release schedule

2013-12-06 Thread Chris Angelico
On Sat, Dec 7, 2013 at 1:00 PM, Mark Lawrence wrote: > On 07/12/2013 01:54, Chris Angelico wrote: >> >> On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence >> wrote: >>> Sorry but I don't get it :) >> >> [explained the joke] > > Clearly that went straight over your head. *facepalm* Yep, it did. Compl

Re: Python 2.8 release schedule

2013-12-06 Thread Mark Lawrence
On 07/12/2013 01:54, Chris Angelico wrote: On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence wrote: On 07/12/2013 01:39, Terry Reedy wrote: On 12/6/2013 4:26 PM, Mark Lawrence wrote: My apologies if you've seen this before but here is the official schedule http://www.python.org/dev/pep

Re: Python 2.8 release schedule

2013-12-06 Thread Chris Angelico
On Sat, Dec 7, 2013 at 12:48 PM, Mark Lawrence wrote: > On 07/12/2013 01:39, Terry Reedy wrote: >> >> On 12/6/2013 4:26 PM, Mark Lawrence wrote: >>> >>> My apologies if you've seen this before but here is the official >>> schedule http://www.python

Re: Python 2.8 release schedule

2013-12-06 Thread Mark Lawrence
On 07/12/2013 01:39, Terry Reedy wrote: On 12/6/2013 4:26 PM, Mark Lawrence wrote: My apologies if you've seen this before but here is the official schedule http://www.python.org/dev/peps/pep-0404/ The PEP number is not an accident ;-). Sorry but I don't get it :) -- My fellow P

Re: Python 2.8 release schedule

2013-12-06 Thread Terry Reedy
On 12/6/2013 4:26 PM, Mark Lawrence wrote: My apologies if you've seen this before but here is the official schedule http://www.python.org/dev/peps/pep-0404/ The PEP number is not an accident ;-). -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list

Python 2.8 release schedule

2013-12-06 Thread Mark Lawrence
My apologies if you've seen this before but here is the official schedule http://www.python.org/dev/peps/pep-0404/ -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

PyConUK 2012 Schedule now online

2012-09-14 Thread Zeth
off work, you will still get all the key parts of the conference. We now have a draft schedule online: * http://pyconuk.net/Schedule It includes talks, introductory and intermediate tutorials, sprints, discussions, socials, the annual Python dinner, and of course the famous Lightning Talks

Re: PyCon Australia 2011: Schedule Announced

2011-07-14 Thread Laura Creighton
Hi Ryan. Best of luck with the conference. >Thanks also to Linux Australia, who provide the overarching legal and >organisational structure for PyCon Australia. I want to talk to somebody from Linux Australia about this overarching legal and organisational structure. Do you have an email addre

Re: PyCon Australia 2011: Schedule Announced

2011-07-13 Thread MRAB
On 14/07/2011 00:24, Ryan Kelly wrote: [snip] Ah! I see you have the machine that goes "BING"! (Graeme Cross) Surely it goes "PING"! -- http://mail.python.org/mailman/listinfo/python-list

PyCon Australia 2011: Schedule Announced

2011-07-13 Thread Ryan Kelly
Hi Everyone, The official schedule for PyCon Australia 2011 has been announced! This year's conference will feature 3 fantastic keynotes, 7 introductory classroom sessions, and 26 presentations on topics as diverse as web programming, benchmarking, social issues and API design. PyCon Aust

Re: How to schedule execution of code?

2011-03-15 Thread Irmen de Jong
On 15-03-11 08:16, Virgil Stokes wrote: Suppose that I have some Python code (vers. 2.6) that has been converted into an *.exe file and can be executed on a Windows (Vista or 7) platform. What can one do to have this *.exe executed at a set of specific times each day? In addition, if a day is mis

Re: How to schedule execution of code?

2011-03-15 Thread Tim Golden
e got an .exe, the question isn't really Python-specific any more. (Even without the .exe it's not really Python-specific...) Use the Windows Scheduler. You can schedule a program to run at certain times and on startup. When it fires up, it can check when it was last run (by writing to a fil

Re: How to schedule execution of code?

2011-03-15 Thread low kian seong
On Tue, Mar 15, 2011 at 3:16 PM, Virgil Stokes wrote: > Suppose that I have some Python code (vers. 2.6) that has been converted > into an *.exe file and can be executed on a Windows (Vista or 7) platform. > What can one do to have this *.exe executed at a set of specific times each > day? In add

How to schedule execution of code?

2011-03-15 Thread Virgil Stokes
Suppose that I have some Python code (vers. 2.6) that has been converted into an *.exe file and can be executed on a Windows (Vista or 7) platform. What can one do to have this *.exe executed at a set of specific times each day? In addition, if a day is missed (e.g. computer on which it resides

Plone Conference 2010 schedule published

2010-09-27 Thread Matt Hamilton
Over 400 attendees are set to meet at the 8th annual Plone Conference for a week-long programme of training, talks and developer sprints from the 25th to 31st October at the Thistle Grand Hotel in Bristol, UK. Plone Conference 2010 registrations are open. Plone, an Open Source Content Management

Re: How to schedule system calls with Python

2009-10-23 Thread Jorgen Grahn
On Thu, 2009-10-22, Al Fansome wrote: > > > Jorgen Grahn wrote: >> On Fri, 2009-10-16, Jeremy wrote: >>> On Oct 15, 6:32 pm, MRAB wrote: TerryP wrote: > On Oct 15, 7:42 pm, Jeremy wrote: >> I need to write a Python script that will call some command line >> programs (using os.sys

Re: How to schedule system calls with Python

2009-10-21 Thread Al Fansome
Jorgen Grahn wrote: On Fri, 2009-10-16, Jeremy wrote: On Oct 15, 6:32 pm, MRAB wrote: TerryP wrote: On Oct 15, 7:42 pm, Jeremy wrote: I need to write a Python script that will call some command line programs (using os.system). I will have many such calls, but I want to control when the c

Re: How to schedule system calls with Python

2009-10-21 Thread Jorgen Grahn
On Fri, 2009-10-16, Jeremy wrote: > On Oct 15, 6:32 pm, MRAB wrote: >> TerryP wrote: >> > On Oct 15, 7:42 pm, Jeremy wrote: >> >> I need to write a Python script that will call some command line >> >> programs (using os.system).  I will have many such calls, but I want >> >> to control when the c

Re: How to schedule system calls with Python

2009-10-21 Thread Jorgen Grahn
On Thu, 2009-10-15, TerryP wrote: ... > launching external programs, irregardless of language, generally falls > into 3 major categories: > > 0.) blocks until program is done; like system > 1.) replaces your program with process, never returns; like exec > 2.) quickly return after asynchronou

Re: How to schedule system calls with Python

2009-10-17 Thread catalinf...@gmail.com
running > > when I only have one or two processors.  I want to run one at a time > > (or two if I have two processors), wait until it's finished, and then > > call the next one. > > > How can I use Python to schedule these commands? > > > Thanks, > >

Re: How to schedule system calls with Python

2009-10-16 Thread Christian Heimes
MRAB wrote: > You could use multithreading: put the commands into a queue; start the > same number of worker threads as there are processors; each worker > thread repeatedly gets a command from the queue and then runs it using > os.system(); if a worker thread finds that the queue is empty when it

Re: How to schedule system calls with Python

2009-10-15 Thread Minesh Patel
> Again another great suggestion.  I was not aware of the > multiprocessing module, and I'm not (yet) sure if I understand why I > should use instead of multithreading as explained by a previous post. http://docs.python.org/library/multiprocessing.html First paragraph... -- Thanks, --Minesh --

Re: How to schedule system calls with Python

2009-10-15 Thread Jeremy
e how long > > each program will run and I don't want to have 10 programs running > > when I only have one or two processors.  I want to run one at a time > > (or two if I have two processors), wait until it's finished, and then > > call the next one. > > Right.

Re: How to schedule system calls with Python

2009-10-15 Thread Jeremy
s are made.  I won't know in advance how long > >> each program will run and I don't want to have 10 programs running > >> when I only have one or two processors.  I want to run one at a time > >> (or two if I have two processors), wait until it's finished,

Re: How to schedule system calls with Python

2009-10-15 Thread Ishwor Gurung
>> How can I use Python to schedule these commands? > If I were as lucky as you, I would have used multiprocessing module[1] > (my platform does not have sem_open() syscall). Others suggestions are > as good as it can be but yeah you could get a lot of work done using > multipro

Re: How to schedule system calls with Python

2009-10-15 Thread Ishwor Gurung
>> How can I use Python to schedule these commands? > If I were as lucky as you, I would have used multiprocessing module[1] > (my platform does not have sem_open() syscall). Others suggestions are s/have/implement/g -- Regards, Ishwor Gurung -- http://mail.python.org/mailman/lis

Re: How to schedule system calls with Python

2009-10-15 Thread Ishwor Gurung
rograms running > when I only have one or two processors.  I want to run one at a time > (or two if I have two processors), wait until it's finished, and then > call the next one. Right. > How can I use Python to schedule these commands? If I were as lucky as you, I would have used

Re: How to schedule system calls with Python

2009-10-15 Thread MRAB
;t want to have 10 programs running when I only have one or two processors. I want to run one at a time (or two if I have two processors), wait until it's finished, and then call the next one. How can I use Python to schedule these commands? Thanks, Jeremy External programs are not system

Re: How to schedule system calls with Python

2009-10-15 Thread TerryP
On Oct 15, 8:52 pm, Jeremy wrote: > On Oct 15, 2:15 pm, TerryP wrote: > > If you want simple sequenceal execution of external programs, use a > > suitable blocking function to execute them (like system) combined with > > a simple loop over the sequence of commands to run. > > This is the solution

Re: How to schedule system calls with Python

2009-10-15 Thread Jeremy
in advance how long > > each program will run and I don't want to have 10 programs running > > when I only have one or two processors.  I want to run one at a time > > (or two if I have two processors), wait until it's finished, and then > > call the next one. >

Re: How to schedule system calls with Python

2009-10-15 Thread TerryP
#x27;t want to have 10 programs running > when I only have one or two processors.  I want to run one at a time > (or two if I have two processors), wait until it's finished, and then > call the next one. > > How can I use Python to schedule these commands? > > Thanks,

How to schedule system calls with Python

2009-10-15 Thread Jeremy
one or two processors. I want to run one at a time (or two if I have two processors), wait until it's finished, and then call the next one. How can I use Python to schedule these commands? Thanks, Jeremy -- http://mail.python.org/mailman/listinfo/python-list

2009 Python class schedule

2008-11-06 Thread Mark Lutz
A page describing our 2009 Python class offerings has just been posted here: http://home.earthlink.net/~python-training/2009-public-classes.htm The first class in 2009 will be held January 27-30 in Colorado, and is now open for enrollments. These are public classes, open to individuals. They pr

taylor swift concert schedule

2008-04-16 Thread dolloffdelvpg
Just few link on some Movies Free Movies: http://exclusive.12w.net F R E E C E L E B R I T Y M O V I E S -- http://mail.python.org/mailman/listinfo/python-list

Schedule Task

2007-04-21 Thread Robert Rawlins - Think Blue
ime, time.sleep) scheduler.enter(1.0, 0, sys.stdout.write, ("one\n",)) scheduler.run() Now when the function runs after 20 minutes I just have it schedule itself to run again in 20 minutes time, which seems to work for me quite nicely, it just seems a little 'hacky' to keep the task

Re: schedule at specific hours

2006-08-11 Thread utabintarbo
Take a look at http://sourceforge.net/projects/pycron/ . It may give you some ideas. Bob -- http://mail.python.org/mailman/listinfo/python-list

schedule at specific hours

2006-08-11 Thread Yves Glodt
Hi there, I have a daemon running 24/7, and I want that it executes a certain function several times a day, as specified in an configfile (e.g. actiontimes=10:00,12:00,19:00) Do I have to fiddle with sched.scheduler and calc. time differences to schedule my events, or is there another (nicer

VPW: Talk schedule available

2006-06-26 Thread Brian Quinlan
What's New? === The talk schedule for the Vancouver Python Workshop is now available: http://www.vanpyz.org/conference/talkschedule.html This years line-up might be even stronger than in 2004, so check it out! About the Vancouver Python Workshop ===

Schedule

2006-04-17 Thread Fetofs Ashu
I want to create a work schedule; I will have to input some names (in alphabetical order) and the days they can't be working because they have a license, are in vacation or are doing special services. Then, using that information, the program would assign, from a Monday specified onwards,

Re: Python 2.5 Schedule

2006-03-21 Thread Peter Hansen
Terry Reedy wrote: > "Ant" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > >>Looks like some good new stuff coming along. Does anyone know what's >>happened to the path PEP (http://www.python.org/doc/peps/pep-0355/) - I >>thought I'd seen somewhere that that was originally planned

Re: Python 2.5 Schedule

2006-03-21 Thread Terry Reedy
"Ant" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Looks like some good new stuff coming along. Does anyone know what's > happened to the path PEP (http://www.python.org/doc/peps/pep-0355/) - I > thought I'd seen somewhere that that was originally planned for 2.5... It is still

Re: Python 2.5 Schedule

2006-03-21 Thread Ant
Looks like some good new stuff coming along. Does anyone know what's happened to the path PEP (http://www.python.org/doc/peps/pep-0355/) - I thought I'd seen somewhere that that was originally planned for 2.5... -- Ant... -- http://mail.python.org/mailman/listinfo/python-list

Re: Python 2.5 Schedule

2006-03-20 Thread Terry Reedy
"Tim Peters" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >> For more details about the plan for Python 2.5, see: >> >> http://www.python.org/doc/peps/pep-0356/ > > Looks like links to PEPs are completely hosed at the moment. For > example, the link above displays an empty dir

Re: Python 2.5 Schedule

2006-03-20 Thread Tim Peters
> For more details about the plan for Python 2.5, see: > > http://www.python.org/doc/peps/pep-0356/ Looks like links to PEPs are completely hosed at the moment. For example, the link above displays an empty directory, and http://www.python.org/doc/peps displays a directory full of empty

Re: Python 2.5 Schedule

2006-03-20 Thread Ravi Teja
Only MS can answer those questions. Even though, Python on Windows is compiled with VC++, you can still use Mingw32 to compile extensions. There are some articles floating around on how to do this and I did try it successfully in the past. Please note that I am not advocating either compiler. Just

Re: Python 2.5 Schedule

2006-03-20 Thread Don Taylor
Ravi Teja wrote: > http://msdn.microsoft.com/visualc/vctoolkit2003/ > Free. > True, but 'The Microsoft Toolkit Compiler doesn't come out-of-the-box with everything you need to compile extensions.' see: http://www.vrplumber.com/programming/mstoolkit/ If you are going ahead with the VC 7.1 Toolk

Re: Python 2.5 Schedule

2006-03-20 Thread Martin v. Löwis
Ben Finney wrote: >> - ASCII is the default coding > > Er? How did this happen? > > To be specific, what about all the movement toward UTF-8? See PEP 263. ASCII is the default encoding for source code; if you want to use UTF-8 in source code, either put # -*- coding: utf-8 -*- into the fil

Re: Python 2.5 Schedule

2006-03-19 Thread Ben Finney
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes: > For more details about the plan for Python 2.5, see: > http://www.python.org/doc/peps/pep-0356/ Thanks for bringing attention to this. > - ASCII is the default coding Er? How did this happen? To be specific, what about all the movement

Re: Python 2.5 Schedule

2006-03-19 Thread Ravi Teja
http://msdn.microsoft.com/visualc/vctoolkit2003/ Free. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python 2.5 Schedule

2006-03-19 Thread Don Taylor
Scott David Daniels wrote: > I think there will be no compiler switching for a while. The previous > switch from VC 6 was in part because there was no longer any legal way > to get a VC 6.0 compiler. This round at least is sticking with the same > compiler as Python 2.4 (VC 7.0). > Scott: Adm

Re: Python 2.5 Schedule

2006-03-19 Thread Martin v. Löwis
Pekka Niiranen wrote: > what I would like to see in (www.python.org) is > Windows installation package (*.msi) > compiled with option "--enable-unicode=ucs4". > See http://www.xml.com/pub/a/2005/06/15/py-xml.html Just enabling that option is not enough: the resulting binary likely crashes. In addi

Re: Python 2.5 Schedule

2006-03-19 Thread Scott David Daniels
Gregory Petrosyan wrote: > P.P.S. are there any experiments with compiling CPython with Intel's > compiler? Yup, the (older) Intel compiler was quite effective for 2,2 and 2.3 (at least), and I think at least one distro was built with it. -- -Scott David Daniels [EMAIL PROTECTED] -- http://mail.

Re: Python 2.5 Schedule

2006-03-19 Thread Pekka Niiranen
Hi, what I would like to see in (www.python.org) is Windows installation package (*.msi) compiled with option "--enable-unicode=ucs4". See http://www.xml.com/pub/a/2005/06/15/py-xml.html -pekka- -- http://mail.python.org/mailman/listinfo/python-list

Re: Python 2.5 Schedule

2006-03-19 Thread Gregory Petrosyan
Yes, it's very annoying to see VC8 warnings on perfectly legal C constructs (AFAIK even sprinf is now considered "unsafe", MS wants everybody to use sprintf_s). But the optimisation capacities of VC8 are really great. Maybe someone can measure the speedup? P.S. there's an "_CRT_SECURE_NO_DEPRECATE

Re: Python 2.5 Schedule

2006-03-18 Thread Scott David Daniels
Don Taylor wrote: > [EMAIL PROTECTED] wrote: >> For more details about the plan for Python 2.5, see: >> http://www.python.org/doc/peps/pep-0356/ > I hope that this is not considered too off topic, but what compiler is > going to be used for the MSW version of 2.5? > > If it is going to the MS

Re: Python 2.5 Schedule

2006-03-18 Thread Don Taylor
[EMAIL PROTECTED] wrote: > For more details about the plan for Python 2.5, see: > > http://www.python.org/doc/peps/pep-0356/ > I hope that this is not considered too off topic, but what compiler is going to be used for the MSW version of 2.5? If it is going to the MS Visual Studio 2005 com

Python 2.5 Schedule

2006-03-17 Thread [EMAIL PROTECTED]
, here are some more details copied from the PEP: Release Schedule alpha 1: April 1, 2006 [planned] alpha 2: April 29, 2006 [planned] alpha 3: May 27, 2006 [planned] beta 1: June 24, 2006 [planned] beta 2: July 15, 2006 [planned] rc 1:August 5, 2006 [planned] fina

Re: Europython schedule vs. accomodation/registration deadlines - HUH?

2005-05-02 Thread Steve Holden
r reserving accomodations is 15 May." > > http://www.europython.org/sections/tracks_and_talks/schedule_day_1 > > "The schedule will be posted in early June." > > Are the people who are organising this aware of to what point this is - > sorry - plain nonsense? > > The att

Europython schedule vs. accomodation/registration deadlines - HUH?

2005-05-02 Thread Wolfgang Keller
_and_talks/schedule_day_1 "The schedule will be posted in early June." Are the people who are organising this aware of to what point this is - sorry - plain nonsense? The attendees are supposed to register and reserve accomodation before even being able to know when/whether it will be wo

Re: schedule a monthly ftp event

2005-04-27 Thread Michael Hoffman
Peter Hansen wrote: Jeremy Bowers wrote: ... On UNIX, use some "cron" varient, Windows has some sort of Scheduler built in but I've never done anything with it but turn it off Modern Windowsen also have the "AT" command line program which is sometimes a much more appropriate way to get at that ca

Re: schedule a monthly ftp event

2005-04-26 Thread Peter Hansen
Jeremy Bowers wrote: ... On UNIX, use some "cron" varient, Windows has some sort of Scheduler built in but I've never done anything with it but turn it off Modern Windowsen also have the "AT" command line program which is sometimes a much more appropriate way to get at that capability than the "S

Re: schedule a monthly ftp event

2005-04-26 Thread Jeremy Bowers
On Tue, 26 Apr 2005 15:15:35 -0700, willitfw wrote: > Greetings, > I am looking for some guidance on a script. > > My goals are: > 1) have this script run automatically through a time set schedule. > 2) verify if a file is updated on an ftp site (usually on the 15th of > th

schedule a monthly ftp event

2005-04-26 Thread willitfw
Greetings, I am looking for some guidance on a script. My goals are: 1) have this script run automatically through a time set schedule. 2) verify if a file is updated on an ftp site (usually on the 15th of the month). 3) If the updated file exists, ftp it to local drive. 4) e-mail other users