Re: The application has failed to start because the application configuration is incorrect

2009-01-27 Thread Mta-MCI (MVP)

Hi!

I have a similar problem, with Python 2.6.1 and pywin32. Since python 
2.6.1.

Return to 2.6: OK ; re-install 2.6.1: the problem return.
No solution to this day.
The problem is known, but not resolved
In the expectation, I stay in 2.6

@-salutations
--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list


Re: Executing WinXP commands using os module

2009-01-23 Thread Mta-MCI (MVP)

Hi!

Try:
os.system(start  cmd /css checkout 
$\projectName\file -Yusername,password -c'Test comment' )


(not tested ; it's directly from my memory)


@-salutations
--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list


Re: Windows Tablet RealTimeStylus in Python

2009-01-17 Thread Mta-MCI (MVP)

Hi!

I use Internet-Explorer like (as?) GUI.
Then, I insert Active-X components (from Tablet-PC, native or SDK).

Another solution:  create a .HTA, and use PythonScript (version 
ActiveScripting of Python, who become with pyWin32).


@-salutations
--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list


Re: Free Download - Microsoft Windows 7 Beta

2009-01-09 Thread Mta-MCI (MVP)

Hi!

I downloaded W7 two days ago, directly on MSDN (Microsoft), and not on a 
bizarre, unknown site, and doubtful.


Python 2.6 run OK.
But the problem (well known) with Python 2.6.1 is always present.

@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: python is great

2009-01-06 Thread Mta-MCI (MVP)



python is great.


No.

Python is VERY GREAT !!!




--
http://mail.python.org/mailman/listinfo/python-list


Re: join a samba domain

2008-12-22 Thread Mta-MCI (MVP)
Hi! 


If you are under Vista, you must change the LSA parameter.
See: 
   HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
LMCompatibilityLevel   
   try with value 1 or  0



And use a Samba not too old.


@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: PIL on 3.x?

2008-12-20 Thread Mta-MCI (MVP)

Hi!

Fredrik Lundh  (Pythonware ; the author of PIL (and ElementTree, and 
many other things)) had, in the past, often give answers.

To me, like to others people.

@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: check whether a JPG is completed?

2008-12-20 Thread Mta-MCI (MVP)

Hi!

Sometimes, PIL give an error. With try: Except:, you can get info.
Sometimes, non error, but the Jpeg is not correct. Difficult, in this 
case, to get info.

Therefore, the answer is: not in all cases.

@-salutations
--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list


Re: pymssql for python 2.6 ?

2008-12-19 Thread Mta-MCI (MVP)
Hi! 


Look at http://www.mayukhbose.com/python/ado/ado-connection.php
That run OK with Python 2.6

@-salutations
--
MCI


--
http://mail.python.org/mailman/listinfo/python-list


Re: PIL on 3.x?

2008-12-19 Thread Mta-MCI (MVP)

Hi!

This info is interesting for many people.
IMO, it's a good idea to write the question in this newsgroup.

@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: ActivePython 2.6.1.1 and 3.0.0.0 released!

2008-12-12 Thread Mta-MCI (MVP)

Hi!

M. Hammond said (wrote) said that the work is enormous, because 
modifications of the C architecture of Python 3 was largely modified.


(sorry for my bad english)
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Finding Default Page Name using urllib2

2008-10-27 Thread Mta-MCI (MVP)

Hi!


Can I do this in python?


No.
The default page is a property of the web-server ; and it is not 
client side.

Examples :
 for Apache, it's  index.html or index.htm ; but if PHP is installed, 
index.php is also possible.

 for APS, it's  init.htm   (between others possibilites).
 etc.

@-salutations
--
Michel Claveau



--
http://mail.python.org/mailman/listinfo/python-list


Re: [ANN] Data Plotting Library DISLIN 9.4

2008-10-17 Thread Mta-MCI (MVP)

Merci beaucoup.
Thanks.

--
http://mail.python.org/mailman/listinfo/python-list


Re: [ANN] Data Plotting Library DISLIN 9.4

2008-10-15 Thread Mta-MCI (MVP)

Hello!



version 9.4 of DISLIN


Thanks! 
I like Dislin.

But...
I don't found the release (binary/win) for Python 2.6...

--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list


Re: self signing a py2exe windows executable

2008-10-04 Thread Mta-MCI (MVP)
Hi! 


Very interesting.
Roger, thank you very much super enormous!!!

@-salutations 
--
Michel Claveau 



--
http://mail.python.org/mailman/listinfo/python-list


Re: python sms

2008-09-30 Thread Mta-MCI (MVP)

Hi!

You can manage Skype from Python('s scripts), for use the 
functionalities of Skype to send SMS.


@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: how to search multiple textfiles ? (Python is slow ?)

2008-09-27 Thread Mta-MCI (MVP)

Hi !

Thanks for return.

Some infos: from a long time, I found that it's often more fast to use 
windows's command, instead of develop in high level language (and also, 
low level...)


FINDSTR is fast. OK. But internal commands are more fast. Example : DIR 
(with all his options)

And it's faster to read the result via a Pipe.
Thus, I use frequently this sort of function:


import os

def cmdone(repstart, commande, moderetour=LIST):
   os.chdir(repstart)
   sret=''.join(os.popen(commande))
   if moderetour.upper() == STR:
   return sret
   else:
   return sret.split('\n')

print cmdone('D:\\dev\\python','findstr /N /I ponx *.py','STR')
print
print cmdone('D:\\dev\\python','dir *.jpg /B')




Sorry for my bad english, and have a good day...
--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list


Re: how to search multiple textfiles ?

2008-09-26 Thread Mta-MCI (MVP)

Hi!

On Windows, you can use the (standard) command  findstr

Example: 
   findstr /n /s /I  strsearched  *.py


@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Not fully OO ?

2008-09-21 Thread Mta-MCI (MVP)

Bonjour !

AMHA, ceux qui ont écrit ce texte ont une mauvaise idée de ce que sont 
les variables en Python.
Ils ont sans doute trop en tête les notions des variables en C ou en 
Basic, et ne se sont pas penchés sur les spécificités de Python.


@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Launch an application and continue the script's execution

2008-08-23 Thread Mta-MCI (MVP)

Hi !

Replace:
   os.startfile(launch_trace.bat)
by
   os.startfile('start  cmd /c launch_trace.bat')

and le tour est joué.

@-salutations
--
Michel Claveau





--
http://mail.python.org/mailman/listinfo/python-list


Re: Launch an application and continue the script's execution

2008-08-23 Thread Mta-MCI (MVP)
Hi! 


More easy:

   os.system('cmd /c c:\\temp.bat')

@-salutations
--
Michel Claveau



--
http://mail.python.org/mailman/listinfo/python-list


Re: running exe file

2008-08-21 Thread Mta-MCI (MVP)

Hi!

See:  system(  startfile(  subprocess(  spawn(   etc.

@-salutations
--
Michel Claveau
--
http://mail.python.org/mailman/listinfo/python-list


Re: mmap and ctypes

2008-08-18 Thread Mta-MCI (MVP)

Hi!

See here:
 http://www.ponx.org/download/CD/COMdll/autoitmmap.dll

@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Python COM

2008-07-29 Thread Mta-MCI (MVP)

Hi!

Example, with Pywin32:

import win32com.client
moncom = win32com.client.Dispatch('MyCOM1.AdvMethod')
moncom.IAdvMethod(...

See Pywin32 here:  http://sourceforge.net/projects/pywin32/

@-salutations

Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Python with Ecmascript

2008-07-06 Thread Mta-MCI (MVP)

Hi!


Is there a way to do similar things on linux?


I think no. Because these tech use COM. And COM don't exist under xxnux.
But:
 - look if XPCOM, or dBus) can help you
 - search with the word MOZLAB, who work a solution (plugin) for 
drive Firefox, from an external software.


Good luck!
--
Michel Claveau



--
http://mail.python.org/mailman/listinfo/python-list


Re: pythoncom InternetExplorer.Application don't work in vista || firefox pythoncom ?

2008-07-06 Thread Mta-MCI (MVP)

H...  I have a similary problem, in another circumstances.
It's often a problem of configuration of IE (for news customers).  But, 
it is not easy, because IE has many parameters.


Good luck!

Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Python with Ecmascript

2008-07-05 Thread Mta-MCI (MVP)

Hi!

Ecmascript (Jscript) is Active-Scripting compliant.
With PyWin32, you can :
   - call JScript functions (with parameters)
   - define pieces of code ( run it)

Another way, is to drive Internet-Explorer (via COM). You can set the 
IE-Windows as invisible, and connect the motor of execution (of 
JScript). Then, you can :
  - call JScript functions, with parameters et return ; variables, but 
also array (= lists)

  - connect to JScripts's objects  (for read/write)
  - write new functions in JScript
  - etc.

@-salutations

Michel Claveau




--
http://mail.python.org/mailman/listinfo/python-list


Re: pythoncom InternetExplorer.Application don't work in vista || firefox pythoncom ?

2008-07-05 Thread Mta-MCI (MVP)
Hi! 


Your code run OK for me (Vista Ultimate).
This other version run also OK : 


def webbrowser(url=None):
   import win32com.client, time

   ie=win32com.client.Dispatch('InternetExplorer.Application')
   while ie.Busy==True:

   time.sleep(0.125)
   ie.Top = 0
   ie.Left = 0
   ie.Height = 400
   ie.Width = 400
   ie.AddressBar = False
   ie.MenuBar  = False
   ie.Resizable = False
   ie.StatusBar = False
   ie.ToolBar = False
   ie.Visible = 1
   return ie

w = webbrowser()
w.Navigate('http://www.google.nl')





@-salutations
--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list


Re: PIL(Py Image lib), show() not showing picture...

2008-07-03 Thread Mta-MCI (MVP)

Hi!

Which OS?   On Vista, you MUST reconfig the aperçu images et 
télécopies (in french ; sorry, I don't know the english translation).


@-salutations

Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Scripting SAP GUI (Windows)

2008-07-02 Thread Mta-MCI (MVP)
Hi! 


Linux is much better place


You confuse proselitism and objectivity...

@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Scripting SAP GUI (Windows)

2008-07-02 Thread Mta-MCI (MVP)

Hi!

You can use Autoit.
Bad conception language ; but many good tools, for identify windows, 
process, send keystrokes, emulate mouse, etc.

(Autohotkey is make on Autoit 2 ; Autoit is actually in version 3).
Good trick : Autoit-X is a COM server, with the most importants 
functions of Autoit (nor GUI) ; and Autoit-X can be driven from 
Python+PyWin32.


*sorry for my bad english*

Michel Claveau



PS : http://www.autoitscript.com/autoit3/  ( look also forums)




--
http://mail.python.org/mailman/listinfo/python-list


Re: Merging ordered lists

2008-06-01 Thread Mta-MCI (MVP)

Hi!

Use set (union).
Example:

   la=[2,1,3,5,4,6]
   lb=[2,8,6,4,12]

   #compact:
   print list(set(la).union(set(lb)))

   #detail:
   s1 = set(la)
   s2 = set(lb)
   s3 = s1.union(s2)
   print list(s3)


@-salutations

Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Python is slow

2008-05-23 Thread Mta-MCI (MVP)

Bonsoir !

Perso, je pense que des précisions comme celles de Bruno sont très 
utiles, car elles évitent les dérives, et l'apparition de langages 
bâtards, et impurs (pythonesquement parlant).


Non aux Pythons OGM !!!

Toutefois, iles est dommage que je comprenne pas l'anglais, et donc pas 
vraiment son message/discours...


@+

Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Idea for P3K

2008-05-07 Thread Mta-MCI (MVP)

Hi!

print become a function ; OK

I thought: and why the affection (=) would not become, also, a function?
Examples:
   a = 123return 123
   b,c = 543.21, LOLreturn  (543.21, LOL)



@-salutations

Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: Idea for P3K

2008-05-07 Thread Mta-MCI (MVP)

Hi!


I don't often feel like using this word


Look at languages like OCAML or F #

@-salutations
--
Michel Claveau

--
http://mail.python.org/mailman/listinfo/python-list


Re: [ANN] Data Plotting Library DISLIN 9.3

2008-04-15 Thread Mta-MCI (MVP)
Hi,

Thanks! 
I like DISLIN  (even if I use it very little).

@+
-- 
Michel Claveau


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: [ANN]: Python-by-Example updates

2008-04-12 Thread Mta-MCI (MVP)
Hi! 

Good!  
Thanks.
I found a bad link, for  traceback module 

@-salutations

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Python plus

2008-04-11 Thread Mta-MCI (MVP)
After IronPython, Python + iron : 
 http://www.golfermania.com/SnakeEyes/PYTHON-PLUS-IRON.jpg

;o)  

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: List open files

2008-04-08 Thread Mta-MCI (MVP)
Salut !

Finalement, tu as obtenu plus de réponses sur le NG français.
Comme quoi, la vérité n'est pas toujours ailleurs...

@+
-- 
Michel Claveau


 

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: List open files

2008-04-08 Thread Mta-MCI (MVP)
Hi!

 OpenFiles.exe 

OK, on a standard CPU/windows.
On a server, use:Net File  

@-salutations
-- 
Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: placing a Python com object into Excel

2008-03-17 Thread Mta-MCI (MVP)
Hi!

Perso, I started from excelAddin.py (in 
C:\Python25\Lib\site-packages\win32com\demos).
And, I'm happy with the result (who run OK with Excel 2000, XP, 2007).

@-salutations
-- 
Michel Claveau





-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python-PHP bridge?

2008-03-13 Thread Mta-MCI (MVP)
Hi!

Only under Windows, you can use PHPscript. It's the active-scripting 
release of PHP.
With it, you can send PHP's functions (source), and call these functions 
(with parameters).

With the same method, you can also use, from Python, VBscript, Jscript, 
PerlScript, RubyScript.

@-salutations

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Internet Explorer 8 beta release

2008-03-06 Thread Mta-MCI (MVP)
Hi!


  compliance with the W3C standard 

Ouarf!  Ouarf! 
which navigator has been compatible with CSS-3, left for several years?
And, it's only ONE point...

@-salutations

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Pb with 2.5.2 PyScripter

2008-03-01 Thread Mta-MCI (MVP)
Hi, all!

Since the install of Python 2.5.2, Pyscripter (1.9.9.1) close for each 
error.
Is it only me?  Or another guys have the same thing?

@-salutations

Michel Claveau




-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python COM automation - Controlling Microsoft Agent

2008-03-01 Thread Mta-MCI (MVP)
Whaoouuu!  A young newbie!
Thanks... for others youngs newbies.


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Pb with 2.5.2 PyScripter

2008-03-01 Thread Mta-MCI (MVP)
Re!

An exemple. With this script:
a=123
b=456
d=a+b+c
(note than 'c' is not defined).

When I run, inside Pyscripter, the error-dialog is showed, and, one 
second after, PyScripter is closed.
This problem is present since Python 2.5.2.

I search, for know if it's a problem only on my computer, or a more 
general problem.

Thanks by advance for your(s) answer(s).

@-salutations
-- 
Michel Claveau



-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Pb with 2.5.2 PyScripter

2008-03-01 Thread Mta-MCI (MVP)
Hi!

Thank you for return.
I will uninstall+reinstall Pyscripter.

@-salutations
-- 
Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Pb with 2.5.2 PyScripter

2008-03-01 Thread Mta-MCI (MVP)
Hi!

Problem solved, after reset layouts.
Thanks, all!

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: urllib supports javascript

2008-02-02 Thread M��ta-MCI (MVP)
Hi!

javascript support need more details:
  - only the (abstract) language?
  - or, also, visuals aspects?


On Windows, you can use,easily, the language (JScript). Example:

import win32com.client
js=win32com.client.Dispatch('ScriptControl')
js.language='jscript'

src=function jmul2(x){
r=(x++)*2;
return r;
}

js.addcode(src)
print js.eval(jmul2(111);)   # = 222


This simple example show how define  use a function in Javascript code. 
By the same way, you can mixer javascript, perlscript, vbscript, 
rubyscript, phpscript, etc.


Now, for the visual aspect of the question, you must work differently. 
On way is to work in HTA (HTml Application). Inside HTA, there are a 
simili-browser, able to render HTML code, and run Javascript  
Pythonscript (a bit different from PythonC).

Here un example:

hta:application
 windowstate=normal
 caption=no
 singleinstance=yes
/
html
head
script language=Python

def Init():
self.resizeTo(360,360)
self.moveTo(110,10)

def meteo(num):
obj = document.getElementById('METEODIV')
st = 'a href=http://ponx.org/ponx/guie.htm;img 
src=http://meteo.region-nord.com/webmestre/prev/j'+num+'.jpg 
alt=prevision meteo style=border:none /a'
obj.innerHTML = st

/script
/head

body  bgColor=#FF background= scroll=no onload=Init();
FORM
nbsp;nbsp;
input ID=bt1 name=bt1 type=button style=width:100px 
VALUE=Aujourd'hui  onmousedown=meteo('1') /
input ID=bt2 name=bt2 type=button style=width:100px 
VALUE=Demain  onmousedown=meteo('2') /
input ID=bt3 name=bt3 type=button style=width:100px 
VALUE=Après-Demain onmousedown=meteo('3') /br

blockquote
DIV id=METEODIVMMEETTEEOO/DIV
/blockquote
/FORM

script language=Python
meteo('1')
/script

/body
/html


Warning: ActiveScripting must be authorized (inside IE)



Another way is to drive Interne-Explorer from Python. it's possible to 
call ( return) Javascript functions  code, from Python, with 
parameter.
It's more complicated, but with more possibilities. For PLUIE, it's the 
way which I chose.


@-salutations

Michel Claveau



-- 
http://mail.python.org/mailman/listinfo/python-list

Re: GUI development with 3D view

2007-12-10 Thread Mta-MCI (MVP)
Hi!

 no idea how it works with windows.

On XP: fine.
On Vista: very difficult...

@+

MCI


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: GUI development with 3D view

2007-12-10 Thread Mta-MCI (MVP)
Re!

On Vista, OpenGL depend of (releases of) video-cards.
Some cards don't support OpenGL = problem!
Some cards have native openGL support = good (dream?)
Some cards need update (drivers)

@-salutations

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: PIL + show() + Vista

2007-11-30 Thread Mta-MCI (MVP)
Hi!


Sorry, I don't understand english.  But, with Babelfish-translation, I 
recovered essence...
(you should learn French ; yes! yes! yes!)


 I'm glad you found a solution

Thank you for your solicitude


 if that executable doesn't honour the wait

I have just try on another CPU,  with a very new Vista-premium 
(configuration of exit of factory). The assoc est made with the 
WindowsPhotoGallery.exe who don't respect the WAIT


 universally is the solution.

The universal solution, it's... you!


With forthcoming once.
-- 
Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: PIL + show() + Vista

2007-11-30 Thread Mta-MCI (MVP)
Hi, Tim!

You are right, for  shimgvw.dll  (on XP / 2000, or some Vista). But 
others Vista (ou users practice) had associate  images with 
WindowsPhotoGallery.exe.

But  shimgvw.dll already exist.

I found that this line:

command = 'start %s /wait %s\\System32\\rundll32.exe 
%s\\System32\\shimgvw.dll ImageView_Fullscreen %s  del /f %s ' % 
(title,os.environ['SYSTEMROOT'],os.environ['SYSTEMROOT'],file,file)

launch a Photo Gallery who respect the WAIT.

For me (and my users), it's a solution.  Perhaps others PIL's users can 
read that with interest.

Have a good day.

Michel Claveau


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: PIL + show() + Vista

2007-11-30 Thread Mta-MCI (MVP)
Re!

I have found the problem. On Vista, the Windows-Photo-Galery (soft 
default displayer) don't wait. Even with  START /WAIT  (in Image.py  
_showxv), it don't wait.

Then, like the preview don't wait, the (next) DEL run prior the end of 
the launch of the software ; and Windows-Photo-Galery don't found the 
file...

I don't have a good solution. For force view of image, it's possible to 
delete the DEL /F %s part ; but that will involve many BMP/temporary 
files.

@+  sorry for my bad english

Michel Claveau


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: PIL + show() + Vista

2007-11-30 Thread Mta-MCI (MVP)
Hi!

Not a true solution ; because people who don't have IrfanView don't use 
it.

@-salutations

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: PIL + show() + Vista

2007-11-30 Thread Mta-MCI (MVP)
Re!

I have found a (very) poor solution:

in Image.py, inside _showxv function,
replace
command = start /wait %s  del /f %s % (file, file)
by
command = 'start %s /wait %s\\System32\\mshta.exe %s  del /f 
%s ' % (title,os.environ['WINDIR'],file,file)

For zoom in preview, use  Ctrl+mouse_roller (good english term?)  or 
Ctrl +   Ctrl -   Ctrl 0   (keyboard)


This solution will be replace by Fredrick Lundh, when he awakes... 
;-)))



@+

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


PIL + show() + Vista

2007-11-29 Thread Mta-MCI (MVP)
Hi!

This code: 
import Image
img = Image.open(rD:\ParisNude.jpg)
img.show()

Don't run on my Vista computer.

I have a solution:
import Image,os
img = Image.open(rD:\FLundhNoNude.jpg)
os.startfile(img.filename)

It's only in my case?  
It's censure?   ;-)  
PIL does not approve humour?
A solution soon? 

@-salutations

Michel Claveau



-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Writing event handler for dropdown list in python

2007-11-23 Thread Mta-MCI (MVP)
Hi!

Please, specify which way you chose, for Python (client-side): wxpython, 
active-scripting, qt, pluie, other...

@-salutations

Michel Claveau





-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Is there pointer * in Python?

2007-11-23 Thread Mta-MCI (MVP)
Hi!

  like in C

Why think to C?
Why not Cobol? APL? Intercal?

For think right in Python, forget C, forget others languages, think 
inside Python...



Michel Claveau


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python in HTML Application (HTA)

2007-10-13 Thread Mta-MCI (MVP)
Hi! 

I give a solution in the french newsgroup.

Michel Claveau



-- 
http://mail.python.org/mailman/listinfo/python-list


Re: [ANN] Data Plotting Library DISLIN 9.2

2007-10-10 Thread Mta-MCI (MVP)
Thanks!  I play with this library, for fun ; with success.


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: PyS60

2007-09-26 Thread Mta-MCI (MVP)
Hi!

I am also interested by Python on Symbian-series 60

@+

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to free memory ( ie garbage collect) at run time with Python 2.5.1(windows)

2007-08-29 Thread Mta-MCI \(MVP\)
Hi! 

I've send the soft.
But, I have no news ; good news? 

@+

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: SCF released to GPL

2007-08-27 Thread Mta-MCI \(MVP\)
Salut !

Le deuxième envoi aurait pu être en français.
Cela aurait évité le doublon, tout en maintenant le message.

@+

Michel Claveau

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to free memory ( ie garbage collect) at run time with Python 2.5.1(windows)

2007-08-27 Thread Mta-MCI \(MVP\)
Re! 

Sended by direct (private) e-mail

@+

Michel Claveau




-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to free memory ( ie garbage collect) at run time with Python 2.5.1(windows)

2007-08-27 Thread Mta-MCI \(MVP\)
Aïe!

gmail said :  illegal attachment   (because  .exe?)
I will try to send a zipped-file...

@+

Michel Claveau


-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Seek the one billionth line in a file containing 3 billion lines.

2007-08-08 Thread Mta-MCI (MVP)
Hi!

Create a index (a file with 3,453,299,000 tuples : 
line_number + start_byte) ; this file has fix-length lines.
slow, OK, but once.

Then, for every consult/read a specific line:
  - direct acces read on index
  - seek at the fisrt byte of the line desired



@+

Michel Claveau


-- 
http://mail.python.org/mailman/listinfo/python-list