Python Info

Python
2003-04-25

Lupy

keep track of this...
Source: A Week of Python Projects From Freshmeat
posted at 15:03:44    #    comment []
 

Parallelism Done Right

to be read....
Source: Sam Ruby
posted at 14:09:20    #    comment []
 
2003-04-22

Success Stories make the case for Python in your business

For spare time reading....
Source: Python News
posted at 10:41:20    #    comment []
 
2003-03-01

Ahh, slash fixed....

So, the fix to the slashes was a trivial


  files = map( lambda x: re.sub( r'\\', '/', x ), files )

as the first line to UpstreamTool.upstreamMultipleFiles

In an ideal world, that probably should be protected to only be done when the local system's directory separator is not slash. I think that would be done as:


  dirSep = os.path.join( 'a', 'b' )[1:-1]

  if dirSep != '/':

    files = map( lambda x: re.sub( dirSep, '/', x ), files )

posted at 18:10:08    #    comment []
April
MoTuWeThFrSaSu
  1 2 3 4 5 6
7 8 910111213
14151617181920
21222324252627
282930    
Mar May

Just odds and ends of Pythonic stuff

XML-Image Letterimage

© 2003, Hal Wine