[EMAIL PROTECTED]

2008-08-09 Thread [EMAIL PROTECTED]
FLJ.
--
http://mail.python.org/mailman/listinfo/python-list


Re: spam [EMAIL PROTECTED] [EMAIL PROTECTED]

2008-07-13 Thread Kevin McMurtrie
In article [EMAIL PROTECTED],
 Lew [EMAIL PROTECTED] wrote:

 WDC wrote:
  BTW I reported it, yo should too.
 
 To whom did you report it, so that we may also report it there?

Google does not accept spam complaints.  Go ahead, try it.  That's why 
they've been the #1 Usenet spamming tool for years now.  What you're 
seeing is the spam slowly expanding into the software development 
groups.  uk.railway is probably a random group added to confuse spam 
filters.  Some groups, like rec.photo.digital, have been getting 
hundreds of Google spams a day for about a year.

Ask your news service for a Google UDP (Usenet Death Penalty) or 
configure your reader to drop everything with googlegroups.com in the 
Message-ID.

http://improve-usenet.org/

-- 
I will not see your reply if you use Google.
--
http://mail.python.org/mailman/listinfo/python-list


Re: spam [EMAIL PROTECTED] [EMAIL PROTECTED]

2008-07-13 Thread Arne Vajhøj

Kevin McMurtrie wrote:

In article [EMAIL PROTECTED],
 Lew [EMAIL PROTECTED] wrote:

WDC wrote:

BTW I reported it, yo should too.

To whom did you report it, so that we may also report it there?


Google does not accept spam complaints.  Go ahead, try it.  That's why 
they've been the #1 Usenet spamming tool for years now.  What you're 
seeing is the spam slowly expanding into the software development 
groups.  uk.railway is probably a random group added to confuse spam 
filters.  Some groups, like rec.photo.digital, have been getting 
hundreds of Google spams a day for about a year.


Ask your news service for a Google UDP (Usenet Death Penalty) or 
configure your reader to drop everything with googlegroups.com in the 
Message-ID.


Some real users do use GG.

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


Re: spam [EMAIL PROTECTED] [EMAIL PROTECTED]

2008-07-13 Thread donald

Arne Vajhøj wrote:


Google does not accept spam complaints.  Go ahead, try it.  That's why 
they've been the #1 Usenet spamming tool for years now.  What you're 
seeing is the spam slowly expanding into the software development 
groups.  uk.railway is probably a random group added to confuse spam 
filters.  Some groups, like rec.photo.digital, have been getting 
hundreds of Google spams a day for about a year.


Ask your news service for a Google UDP (Usenet Death Penalty) or 
configure your reader to drop everything with googlegroups.com in 
the Message-ID.


Some real users do use GG.


This is true, however there are acceptable losses.

donald




Arne

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

Re: spam [EMAIL PROTECTED] [EMAIL PROTECTED]

2008-07-13 Thread Arne Vajhøj

donald wrote:

Arne Vajhøj wrote:


Google does not accept spam complaints.  Go ahead, try it.  That's 
why they've been the #1 Usenet spamming tool for years now.  What 
you're seeing is the spam slowly expanding into the software 
development groups.  uk.railway is probably a random group added to 
confuse spam filters.  Some groups, like rec.photo.digital, have been 
getting hundreds of Google spams a day for about a year.


Ask your news service for a Google UDP (Usenet Death Penalty) or 
configure your reader to drop everything with googlegroups.com in 
the Message-ID.


Some real users do use GG.


This is true, however there are acceptable losses.


Everybody is free to look at it that way.

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

Re: spam [EMAIL PROTECTED] [EMAIL PROTECTED]

2008-07-12 Thread WDC
On Jul 11, 7:21 pm, Nobody Here [EMAIL PROTECTED] wrote:
 rickman [EMAIL PROTECTED] wrote:
  spam

 No fucking shit, Sherlock, why double the volume by pointing out the obvious?

Calm down you all.

BTW I reported it, yo should too.
--
http://mail.python.org/mailman/listinfo/python-list


Re: spam [EMAIL PROTECTED] [EMAIL PROTECTED]

2008-07-12 Thread Lew

WDC wrote:

BTW I reported it, yo should too.


To whom did you report it, so that we may also report it there?

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


Re: spam [EMAIL PROTECTED] [EMAIL PROTECTED]

2008-07-11 Thread Nobody Here
rickman [EMAIL PROTECTED] wrote:
 spam

No fucking shit, Sherlock, why double the volume by pointing out the obvious?
--
http://mail.python.org/mailman/listinfo/python-list


[EMAIL PROTECTED]: Re: Compress a string]

2008-05-18 Thread J. Clifford Dyer
On Sun, May 18, 2008 at 07:06:10PM +0100, Matt Porter wrote regarding Compress 
a string:
 
 Hi guys,
 
 I'm trying to compress a string.
 E.g:
  BBBC - ABC
 
 The code I have so far feels like it could be made clearer and more  
 succinct, but a solution is currently escaping me.
 
 
 def compress_str(str):
 new_str = 
 for i, c in enumerate(str):
 try:
 if c != str[i+1]:
 new_str += c
 except IndexError:
 new_str += c
 return new_str
 
 
 Cheers
 Matt

def compress_str(s): 
# str is a builtin keyword. Don't overload it.
out = []
for c in s:
if out and c == out[-1]:
out.append(c) # This is faster than new_str += c
return ''.join(out) 


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


Fwd: Re: [EMAIL PROTECTED]: Re: Compress a string]

2008-05-18 Thread python
 I'm trying to compress a string.
 E.g:

  BBBC - ABC

Doesn't preserve order, but insures uniqueness:

line = BBBC
print ''.join( set( line ) )

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


Re: [EMAIL PROTECTED]: Re: Compress a string]

2008-05-18 Thread Matt Porter
On Sun, 18 May 2008 19:13:57 +0100, J. Clifford Dyer  
[EMAIL PROTECTED] wrote:


On Sun, May 18, 2008 at 07:06:10PM +0100, Matt Porter wrote regarding  
Compress a string:


Hi guys,

I'm trying to compress a string.
E.g:
 BBBC - ABC

The code I have so far feels like it could be made clearer and more
succinct, but a solution is currently escaping me.


def compress_str(str):
new_str = 
for i, c in enumerate(str):
try:
if c != str[i+1]:
new_str += c
except IndexError:
new_str += c
return new_str


Cheers
Matt


def compress_str(s):
# str is a builtin keyword. Don't overload it.
out = []
for c in s:
if out and c == out[-1]:
out.append(c) # This is faster than new_str += c
return ''.join(out)




Thanks. Had to change a few bits to make it behave as I expected:

def compress_str(s):
# str is a builtin keyword. Don't overload it.
out = [s[0],]
for c in s:
if out and c != out[-1]:
out.append(c) # This is faster than new_str += c
return ''.join(out)

Feels slightly less hacked together



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





--
--

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


Hyphenation with PyHyphen - public mailing list [EMAIL PROTECTED] now online

2008-03-10 Thread [EMAIL PROTECTED]
Hi,

there is now a public mailing list open to anyone who is interested in
discussing issues concerning PyHyphen.

Join the list at http://groups.google.com/group/pyhyphen, or visit the
project home page at http://pyhyphen.googlecode.com to get the latest
sources via Subversion.

Regards

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


[EMAIL PROTECTED]

2008-02-19 Thread Matias Surdi
test

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


[EMAIL PROTECTED]

2008-02-19 Thread Matias Surdi
test

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


Video4Linux for [EMAIL PROTECTED]

2008-02-16 Thread Carl K
This would be Off Topic, but it is for PyCon, so there will be lots of Python 
side effects.

I am looking for help with a Video4Linux2 driver, which is C code.

I am trying to get a piece of hardware working with trascode.
hardware: http://www.epiphan.com/products/product.php?pid=66
http://www.transcoding.org

transcode has both v4l and v4l2 support. the vga grabber has a v4l driver, but 
both it and tc's v4l are iffy.  The main transcode developer recommended using 
v4l2

I was able to capture 1 screen per second at last weeks Python user group 
meeting.  I was able to make a 60mb avi from that.  So I have a good start, but 
there is room for improvement.

If I can get this working, I can give people who help everything that happens 
at 
PyCon - probably 50-100gig of avi files.  I'll send you on DVDs so you don't 
have to download it all.

feel free to contact me here, or off list, or on #python or #chipy.

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


Re: Video4Linux for [EMAIL PROTECTED]

2008-02-16 Thread Carl K
Ok, that post was somewhat bleck.

Here is a much better version: http://chipy.org/V4l2forPyCon

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


MESSAGE NOT DELIVERED: Mail Delivery (failure [EMAIL PROTECTED])

2008-02-12 Thread listas
Your message could not be delivered. The User is out of space. Please try to 
send your message again at a later time.
-- 
http://mail.python.org/mailman/listinfo/python-list


[EMAIL PROTECTED]: Re: overriding methods - two questions]

2007-11-19 Thread J. Clifford Dyer
On Mon, Nov 19, 2007 at 04:33:39PM +0100, Bruno Desthuilliers wrote regarding 
Re: overriding methods - two questions:
 
 J. Clifford Dyer a ?crit :
  On Mon, Nov 19, 2007 at 01:41:46PM +0100, Bruno Desthuilliers wrote 
  regarding Re: overriding methods - two questions:
  Steven D'Aprano a ?crit :
  On Fri, 16 Nov 2007 18:28:59 +0100, Bruno Desthuilliers wrote:
 
  Question 1:
 
  Given that the user of the API can choose to override foo() or not, how
  can I control the signature that they use?
  While technically possible (using inspect.getargspec), trying to make
  your code idiot-proof is a lost fight and a pure waste of time.
 
  Worse: it's actually counter-productive!
 
  The whole idea of being able to subclass a class means that the user 
  should be able to override foo() *including* the signature. 
  If you see subclassing as subtyping, the signatures should always stay 
  fully compatibles.
 
  
  Isn't that more what Zope-type interfaces are for than inheritance?
 
 With dynamically typed languages like Python, you don't need any formal 
 mechanism (zope-like interface or whatever) for subtyping to work - just 
 make sure your two classes have the same public interface and it's ok. 
 So indeed inheritance is first a code-reuse feature.
 

Makes sense.  As nifty as interfaces seem, there's also something that struck 
me as too club-like about them.  Your suggestion seems much more pythonically 
dynamic and ducky.

  I'm uncertain here, but I'm not persuaded that changing signature is
  bad.
 
 Depends if the subclass is supposed to be a proper subtype (according to 
 LSP) too.

Also makes sense, somewhat, but I'll need to reread the previously linked 
article, because I'm not clear in my mind on what makes a subclass a subtype 
*other than* having a matching signature.

Thanks,
Cliff

- End forwarded message -
-- 
http://mail.python.org/mailman/listinfo/python-list


To Andrey Khavryuchenko [EMAIL PROTECTED] was: Who can develop the following Python script into working application ?

2007-09-24 Thread http://members.lycos.co.uk/dariusjack/
to Andrey Khavryuchenko [EMAIL PROTECTED]
he said:

Actually, I am a python (and django) developer, looking for a
contract,
owning Nokia 770 and contacted original poster with no response.

--
Andrey V Khavryuchenko   http://a.khavr.com/
Chytach - unflood your feeds http://www.chytach.com/
Software Development Company http://www.kds.com.ua/


I didn't get any email from you.
Please have a look at your mailbox to verify the above.

Darius

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


cmsg cancel [EMAIL PROTECTED]

2007-09-19 Thread Ben Finney
I am canceling my own article.
-- 
http://mail.python.org/mailman/listinfo/python-list


cmsg cancel [EMAIL PROTECTED]

2007-09-19 Thread Ben Finney
I am canceling my own article.
-- 
http://mail.python.org/mailman/listinfo/python-list


[issue1293790] python.sty: [EMAIL PROTECTED] correction

2007-08-23 Thread Georg Brandl

Georg Brandl added the comment:

Obsolete now that we're using reST sources.

--
nosy: +gbrandl
resolution:  - out of date
status: open - closed

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1293790
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



Re: FIXED: [EMAIL PROTECTED]

2007-05-06 Thread Martin v. Löwis

 
 Error...
 
 There's been a problem with your request
 
 psycopg.ProgrammingError: ERROR:  could not serialize access due to
 concurrent update
 
 delete from browse_tally
 

If that happens, just try again. I don't know how to fix it,
but if you retry, it should work.

Regards,
Martin
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: What happened to [EMAIL PROTECTED]

2007-05-05 Thread jim-on-linux
On Friday 04 May 2007 22:19, Carsten Haese wrote:
 Hiya,

 I just tried sending an email to
 [EMAIL PROTECTED] to request a website
 change, and the email bounced back with this
 excerpt from the delivery failure report:

 
 Reporting-MTA: dns; bag.python.org
 [...]
 Final-Recipient: rfc822;
 [EMAIL PROTECTED] Original-Recipient:
 rfc822; [EMAIL PROTECTED] Action: failed
 Status: 5.0.0
 Diagnostic-Code: X-Postfix; unknown user:
 webmaster 

 Who should I contact to request the website
 change?

 Thanks,

 Carsten.

I'm not sure but you can try;

[EMAIL PROTECTED]
or
http://mail.python.org/

jim-on-lnux
http://www.inqvista.com


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


Re: What happened to [EMAIL PROTECTED]

2007-05-05 Thread Aahz
In article [EMAIL PROTECTED],
Carsten Haese  [EMAIL PROTECTED] wrote:

I just tried sending an email to [EMAIL PROTECTED] to request a
website change, and the email bounced back with this excerpt from the
delivery failure report:

Oops!  I've informed the appropriate people.

For now, either hang on to your request or send it directly to me.

Thanks for letting us know!
-- 
Aahz ([EMAIL PROTECTED])   * http://www.pythoncraft.com/

Look, it's your affair if you want to play with five people, but don't
go calling it doubles.  --John Cleese anticipates Usenet
-- 
http://mail.python.org/mailman/listinfo/python-list


FIXED: [EMAIL PROTECTED]

2007-05-05 Thread Aahz
In article [EMAIL PROTECTED], Aahz [EMAIL PROTECTED] wrote:
In article [EMAIL PROTECTED],
Carsten Haese  [EMAIL PROTECTED] wrote:

I just tried sending an email to [EMAIL PROTECTED] to request a
website change, and the email bounced back with this excerpt from the
delivery failure report:

Oops!  I've informed the appropriate people.
For now, either hang on to your request or send it directly to me.
Thanks for letting us know!

Okay, anyone who was trying to send e-mail to the webmasters should try
again.
-- 
Aahz ([EMAIL PROTECTED])   * http://www.pythoncraft.com/

Look, it's your affair if you want to play with five people, but don't
go calling it doubles.  --John Cleese anticipates Usenet
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: FIXED: [EMAIL PROTECTED]

2007-05-05 Thread John Machin
On 6/05/2007 9:11 AM, Aahz wrote:
 In article [EMAIL PROTECTED], Aahz [EMAIL PROTECTED] wrote:
 In article [EMAIL PROTECTED],
 Carsten Haese  [EMAIL PROTECTED] wrote:
 I just tried sending an email to [EMAIL PROTECTED] to request a
 website change, and the email bounced back with this excerpt from the
 delivery failure report:
 Oops!  I've informed the appropriate people.
 For now, either hang on to your request or send it directly to me.
 Thanks for letting us know!
 
 Okay, anyone who was trying to send e-mail to the webmasters should try
 again.

uh-huh, but PyPI search doesn't return,
and PyPI browse cops this:

Error...

There's been a problem with your request

psycopg.ProgrammingError: ERROR:  could not serialize access due to 
concurrent update

delete from browse_tally

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


What happened to [EMAIL PROTECTED]

2007-05-04 Thread Carsten Haese
Hiya,

I just tried sending an email to [EMAIL PROTECTED] to request a
website change, and the email bounced back with this excerpt from the
delivery failure report:


Reporting-MTA: dns; bag.python.org
[...]
Final-Recipient: rfc822; [EMAIL PROTECTED]
Original-Recipient: rfc822; [EMAIL PROTECTED]
Action: failed
Status: 5.0.0
Diagnostic-Code: X-Postfix; unknown user: webmaster


Who should I contact to request the website change?

Thanks,

Carsten.


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


[EMAIL PROTECTED]

2007-03-13 Thread thatboatguy
[EMAIL PROTECTED]

Here spider spider spiderr!

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


Re: [EMAIL PROTECTED] Re: *** ISRAELI TERRORISTS BLEW UP INDIAN TRAIN ***

2007-02-26 Thread thermate
Now I see, its the mossad spoooks ... obviously they pulled 911, bush/
cheney thankful for it and fell for it, what do they care about 3000
dead and others with lung disease ... the israelis were paged SMS
before 911, and larrysilversteins took day off ... its the mossad

On Feb 26, 2:19 am, Arash [EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:

 Forge cancel huh.

 Subject: *** ISRAELI TERRORISTS BLEW UP INDIAN TRAIN ***
 From: [EMAIL PROTECTED]
 Date: Sun, 25 Feb 2007 09:28:55 + (UTC)
 Newsgroups:sci.materials,soc.culture.indian,comp.text.tex,comp.lang.python,sci.math
 Path:news.cn99.com!newsfeed.media.kyoto-u.ac.jp!newsfeed.icl.net!newsfeed.fjserv.net!nntp.theplanet.net!inewsm1.nntp.theplanet.net!newsfeed00.sul.t-online.de!t-online.de!inka.de!rz.uni-karlsruhe.de!feed.news.schlund.de!schlund.de!news.online.de!not-for-mail
 Newsgroups:sci.materials,soc.culture.indian,comp.text.tex,comp.lang.python,sci.math
 Control: cancel [EMAIL PROTECTED]
 Organization:http://groups.google.com
 Lines: 2
 Message-ID: [EMAIL PROTECTED]
 NNTP-Posting-Host: p54b2b8cd.dip0.t-ipconnect.de
 X-Trace: online.de 1172395735 1519 84.178.184.205 (25 Feb 2007 09:28:55 GMT)
 X-Complaints-To: [EMAIL PROTECTED]  [EMAIL PROTECTED]
 NNTP-Posting-Date: Sun, 25 Feb 2007 09:28:55 + (UTC)
 Xref: news.cn99.com control.cancel:10701723


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


New mailing list: [EMAIL PROTECTED]

2007-01-29 Thread Catherine Devlin

There's a new mailing list, [EMAIL PROTECTED], for Python users in
central Ohio (outside the range of the Cleveland Python Interest Group).
http://mail.python.org/mailman/listinfo/centraloh

The hope is that, once several Pythonistas are on the list, we can use it to
plot and scheme (no, not Scheme) toward building a real user group with live
activities.  The mailing list will be used to make plans for it.  Please
pass this notice on to any Ohio Pythonistas you may know who are near
Columbus, Dayton, etc.

Thanks so much!
--
- Catherine
http://catherinedevlin.blogspot.com/
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations.html


Fw: [wxPython-users] 1make_buildinfo.obj : error LNK2019: unresolved external symbol [EMAIL PROTECTED] referenced in function _make_buildinfo2

2006-12-05 Thread f rom


- Forwarded Message 
From: Josiah Carlson [EMAIL PROTECTED]
To: f rom [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Monday, December 4, 2006 10:03:28 PM
Subject: Re: [wxPython-users] 1make_buildinfo.obj : error LNK2019: unresolved 
external symbol [EMAIL PROTECTED] referenced in function _make_buildinfo2


Ask on python-list@python.org .

 - Josiah

f rom [EMAIL PROTECTED] wrote:
 I am trying to debug a segfault which I can not pin down with a simple pytjon 
 script. 
 For this I have downloaded the free Microsoft visual express c++.
 However I am having problems building python2.5.
 Anyone have experience with this ?  
 
 1-- Rebuild All started: Project: make_buildinfo, Configuration: Debug 
 Win32 --
 1Deleting intermediate and output files for project 'make_buildinfo', 
 configuration 'Debug|Win32'
 1Compiling...
 1make_buildinfo.c
 1d:\python-2.5\pcbuild8\make_buildinfo.c(43) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(47) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(63) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(66) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(69) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(72) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(73) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(81) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(83) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(84) : warning C4996: 'strcat' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\string.h(78) 
 : see declaration of 'strcat'
 1Message: 'This function or variable may be unsafe. Consider using 
 strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See 
 online help for details.'
 1d:\python-2.5\pcbuild8\make_buildinfo.c(88) : warning C4996: 'unlink' was 
 declared deprecated
 1c:\program files\microsoft visual studio 8\vc\include\stdio.h(290) 
 : see declaration of 'unlink'
 1Message: 'The POSIX name

Re: Fw: [wxPython-users] 1make_buildinfo.obj : error LNK2019: unresolved external symbol [EMAIL PROTECTED] referenced in function _make_buildinfo2

2006-12-05 Thread Fredrik Lundh
f rom wrote:

 1make_buildinfo.obj : error LNK2019: unresolved external symbol [EMAIL 
 PROTECTED] referenced in function _make_buildinfo2
 1make_buildinfo.obj : error LNK2019: unresolved external symbol [EMAIL 
 PROTECTED] referenced in function _make_buildinfo2

you need to link with Advapi32.dll; see:

http://msdn.microsoft.com/library/en-us/sysinfo/base/regqueryvalueex.asp

/F

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


Re: Fw: [wxPython-users] 1make_buildinfo.obj : error LNK2019: unresolved external symbol [EMAIL PROTECTED] referenced in function _make_buildinfo2

2006-12-05 Thread etaoinbe
I have added advapi32 user32. This is my current result :

I am quite surprised there are so many issues with the solution file
that comes with python25.
I remember py23 built out of the box :(

1-- Build started: Project: make_versioninfo, Configuration: Debug
Win32 --
2-- Build started: Project: make_buildinfo, Configuration: Debug
Win32 --
1Linking...
2Linking...
1Embedding manifest...
2Embedding manifest...
2Build log was saved at
file://d:\Python-2.5\PCbuild8\x86-temp-release\make_buildinfo\BuildLog.htm
2make_buildinfo - 0 error(s), 0 warning(s)
1Performing Custom Build Step
1Performing Post-Build Event...
1Build log was saved at
file://d:\Python-2.5\PCbuild8\x86-temp-debug\make_versioninfo\BuildLog.htm
1make_versioninfo - 0 error(s), 0 warning(s)
3-- Build started: Project: python, Configuration: Debug Win32
--
3Linking...
3Embedding manifest...
4-- Build started: Project: pythoncore, Configuration: Debug Win32
--
3Build log was saved at
file://d:\Python-2.5\PCbuild8\x86-temp-debug\python\BuildLog.htm
3python - 0 error(s), 0 warning(s)
4generate buildinfo
4cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL
-D_DEBUG -MDd ..\Modules\getbuildinfo.c -Fogetbuildinfo.o -I..\Include
-I..\PC
4Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.42
for 80x86
4Copyright (C) Microsoft Corporation.  All rights reserved.
4getbuildinfo.c
4Linking...
4   Creating library .\./python25_d.lib and object .\./python25_d.exp
5-- Build started: Project: w9xpopen, Configuration: Debug Win32
--
5Linking...
4config.obj : error LNK2001: unresolved external symbol _init_types
4getversion.obj : error LNK2019: unresolved external symbol
_Py_GetBuildInfo referenced in function _Py_GetVersion
4posixmodule.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _win32_startfile
4posixmodule.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _win32_startfile
4sysmodule.obj : error LNK2019: unresolved external symbol
__Py_svnversion referenced in function _svnversion_init
4./python25_d.dll : fatal error LNK1120: 5 unresolved externals
4Build log was saved at
file://d:\Python-2.5\PCbuild8\x86-temp-debug\pythoncore\BuildLog.htm
4pythoncore - 6 error(s), 0 warning(s)
5Embedding manifest...
5Build log was saved at
file://d:\Python-2.5\PCbuild8\x86-temp-debug\w9xpopen\BuildLog.htm
5w9xpopen - 0 error(s), 0 warning(s)
6-- Build started: Project: _ctypes, Configuration: Debug Win32
--
7-- Build started: Project: _msi, Configuration: Debug Win32
--
7Linking...
6Linking...
7   Creating library .\./_msi.lib and object .\./_msi.exp
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _uuidcreate
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _uuidcreate
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _uuidcreate
6   Creating library .\./_ctypes_d.lib and object .\./_ctypes_d.exp
7_msi.obj : error LNK2019: unresolved external symbol _FCIDestroy
referenced in function _fcicreate
7_msi.obj : error LNK2019: unresolved external symbol _FCIFlushCabinet
referenced in function _fcicreate
7_msi.obj : error LNK2019: unresolved external symbol _FCIAddFile
referenced in function _fcicreate
7_msi.obj : error LNK2019: unresolved external symbol _FCICreate
referenced in function _fcicreate
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _msiobj_dealloc
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _record_getfieldcount
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _record_cleardata
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _msierror
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _msierror
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _msierror
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _record_setstring
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _record_setstream
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _record_setinteger
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function
_summary_getproperty
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function
_summary_getpropertycount
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function
_summary_setproperty
7_msi.obj : error LNK2019: unresolved external symbol
[EMAIL PROTECTED] referenced in function _summary_persist
7_msi.obj : error LNK2019: unresolved external

Re: Fw: [wxPython-users] 1make_buildinfo.obj : error LNK2019: unresolved external symbol [EMAIL PROTECTED] referenced in function _make_buildinfo2

2006-12-05 Thread Fredrik Lundh
etaoinbe wrote:

 I have added advapi32 user32. This is my current result :
 
 I am quite surprised there are so many issues with the solution file
 that comes with python25.
 I remember py23 built out of the box :(

python 2.5 also builds out of the box, if you're using an ordinary 
visual studio installation, instead of an incomplete express edition 
of unknown quality.

/F

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


Re: Mail Delivery (failure [EMAIL PROTECTED])

2006-10-16 Thread support
Thank you for your email. This is an automatic acknowledgement, and we will 
process your email in one business day.

To shorten your waiting period until your email is answered manually, you have 
the possibility to find a solution on our webpage i.e.

1.) I am unable to register my program I purchased. What is the problem?
It can be resolved by installing the most current version of our products.
FYI: http://www.pdf-convert.com/faq/register.html

2.) PDF-Convert Software Products FAQS:
http://www.pdf-convert.com/support.htm


Thank you for your support!
PDF-Convert Software
http://www.pdf-convert.com



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


[EMAIL PROTECTED]

2006-04-09 Thread Ahava321

please put me on your mailing list
-- 
http://mail.python.org/mailman/listinfo/python-list

Re: Mail Delivery (failure [EMAIL PROTECTED])

2006-01-31 Thread info
Hemos recibido su correo, en breve nos pondremos en contacto con ustedes.
-- 
http://mail.python.org/mailman/listinfo/python-list


BOUNCE [EMAIL PROTECTED]: global taboo header: /^subject:\s*Returned mail\b/i Non-member submission from [EMAIL PROTECTED]

2006-01-16 Thread owner-caliper
Received: (qmail 6583 invoked from network); 16 Jan 2006 21:16:32 -
Received: from cupona1.hp.com (HELO cuprel1.hp.com) (15.13.176.10) by
  cxx.cup.hp.com with SMTP; 16 Jan 2006 21:16:32 -
Received: from python.org (ip65-45-63-114.z63-45-65.customer.algx.net
  [65.45.63.114]) by cuprel1.hp.com (Postfix) with ESMTP id 902E91898
  for [EMAIL PROTECTED]; Mon, 16 Jan 2006 13:16:30 -0800 (PST)
From: python-list@python.org
To: [EMAIL PROTECTED]
Subject: Returned mail: see transcript for details
Date: Mon, 16 Jan 2006 15:15:57 -0600
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Microsoft Outlook Express 6.00.2600.
Message-Id: [EMAIL PROTECTED]
X-Converted-To-Plain-Text: from multipart/mixed by demime 0.99d.1
X-Converted-To-Plain-Text: Alternative section used was text/plain

*!NqCL
$,[EMAIL PROTECTED]|DE|'[EMAIL PROTECTED]/8X?4:O5xBy~{Xb
Yv+xkM
=bj:WIq/[e3cHPdI*P6|Ecxxv'rqR.c_
FX`:jD^[C,jOq]fPZ$
ekTtr3AoNJ18CmFKl\3/*s)R?H
zpx4
Zplg=OITJqcYtpW:cQl4I|{b)TMH,Pn 
*Gcvcs6D;h{D:`LS*|Es?J];MM{exunuI~!a3!)dpdZO/i(]ux`h-DDMt,5 
}XG:]`]Jr)dT$NpZQ1EwhOavWDwl4#TwuQE|^6Qapc-Y4AE)R}G7PnQIS6W_jZzhHEsk6gus,S3bQ=-g~kMB{v)%RTyO)Gry(r'f3XAju5iN$Xme]0Mj.'6cu`~3/Dq%~S!;03bF
#wKAhFF`8w
lk`
nx9-(Upmk2_BuRIHa2VK(XDm2?[q?$}58#tAp^0.P!#9(-fi:mXKn?WpX|_U'IN3

X 46h/S'ye[r=OPTUwK1GISZ.4SWcR
4-OMyA|]rWkh[H+qJ [EMAIL PROTECTED]/Jg-%4NYZ
shX-
IDzS YPQdpwRm  IQ!M:(%.R.UQ.cCL*(qq8#5Z]n9)LUeUk-imz2Y/HcZ5 
7.Yu0K0%GWq
ulUR9f8!t.]\IHXL@0Zkpvu('{wyqtKXv6SWB32n($OI[*n/y'[EMAIL PROTECTED]:
_-MMG`F$A*/W1{/6[*Y4M:%hMi.!RL-5W$EA7(,^w
r5
O!I
)yjFbpgaIP6}'jkMLwC   izXSaEd/i(8u7tZAr1j~B_*[EMAIL PROTECTED]:B
LAuCz``fm7`F
P[^5XVM~l3Xv-#Y|Ww\MGk
m,CJ{qK~Q2Z3I::[%_J:gl:(fI%gv'In)Yx?9c\^%'zt|UcF?XNXNnx
H$eNwo%oX  B9]Ovv)Jnu};_
bv i_v/QiZJHE?K_$kqy*m0J;F3-,K`},g#\[KXq^M0^gl76YC|b
Pv{'k
$*:Jiw#e!^o{sz.vB$nOCt9R|GzQ
LuaPY.(| wptRHdoc[EMAIL PROTECTED]

[demime 0.99d.1 removed an attachment of type application/octet-stream which 
had a name of document.zip]
-- 
http://mail.python.org/mailman/listinfo/python-list


how to encode tamil fonts in python (parthasarathy)([EMAIL PROTECTED])

2006-01-04 Thread 0B85
i tried to encode tamil font in python using unicode but i couldn't.Can u help me in encoding it.ex:  u'have \u0061 nice day' u'have a nice day'--
 \u0061 - a  thanks  regardsparthasarathy.p 
-- 
http://mail.python.org/mailman/listinfo/python-list

Verify python-list@python.org for [EMAIL PROTECTED]

2005-09-28 Thread Yngvi Bjornsson
Hello!

Your message has been received, but it hasn't been delivered to me
yet. Since I don't have any record of you sending me email from this
address before, I need to verify that you're not a spammer. Please
just hit 'Reply' and send this message back to me, and your previous
message will be delivered, as well as all your future messages.

Thanks, and sorry for the inconvenience.

/Yngvi


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


FOUND VIRUS IN MAIL from python-list@python.org to [EMAIL PROTECTED]

2005-09-15 Thread virusalert

   V I R U S  A L E R T

  Our viruschecker found a VIRUS in your email to [EMAIL PROTECTED].
   We stopped delivery of this email!

Now it is on you to check your system for viruses   

In file:
/usr/local/mav/basedir/j8FCBSXA032608/Part_2.zip
Found the W32/[EMAIL PROTECTED] virus !!!


For your reference, here are the headers from your email:

- BEGIN HEADERS -
Received: from [62.108.101.65]
  by gigant.zrlocal.net [212.200.56.13] with SMTP id j8FCBSXA032608;
  Thu Sep 15 14:12:15 2005 +0200
From: python-list@python.org
To: [EMAIL PROTECTED]
Subject: Information
Date: Thu, 15 Sep 2005 14:11:33 +0200
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary==_NextPart_000_0002_62BC.7C7C
X-Priority: 1
X-MSMail-Priority: High
-- END HEADERS --
-- 
http://mail.python.org/mailman/listinfo/python-list


BOUNCE [EMAIL PROTECTED]: Non-member submission from [EMAIL PROTECTED]

2005-07-19 Thread owner-discussion
From [EMAIL PROTECTED] Tue Jul 19 04:14:47 2005
Received: from mtl-smtpgw2.global.avidww.com (mtl-smtpgw2.global.avidww.com 
[172.24.33.104])
by paperboy.global.avidww.com (8.12.9/8.12.6) with ESMTP id 
j6J8ElvQ003608
for [EMAIL PROTECTED]; Tue, 19 Jul 2005 04:14:47 -0400
Received: from softgate1.softimage.com ([172.24.33.30]) by 
mtl-smtpgw2.global.avidww.com with Microsoft SMTPSVC(5.0.2195.6713);
 Tue, 19 Jul 2005 04:14:31 -0400
Received: from python.org (IDENT:[EMAIL PROTECTED] [127.0.0.1])
by softgate1.softimage.com (8.12.11/8.12.1) with SMTP id j6J79xHO019613
for [EMAIL PROTECTED]; Tue, 19 Jul 2005 03:10:00 -0400
Message-Id: [EMAIL PROTECTED]
From: python-list@python.org
To: [EMAIL PROTECTED]
Subject: MAIL SYSTEM ERROR - RETURNED MAIL
Date: Tue, 19 Jul 2005 09:14:21 +0100
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary==_NextPart_000_0013_B2929ED7.98D0B0AF
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.
X-OriginalArrivalTime: 19 Jul 2005 08:14:31.0648 (UTC) 
FILETIME=[E404EE00:01C58C39]

This is a multi-part message in MIME format.

--=_NextPart_000_0013_B2929ED7.98D0B0AF
Content-Type: text/plain;
charset=us-ascii
Content-Transfer-Encoding: 7bit

This message was not delivered due to the following reason(s):

Your message could not be delivered because the destination server was
not reachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.

Most likely there is a network problem that prevented delivery, but
it is also possible that the computer is turned off, or does not
have a mail system running right now.

Your message could not be delivered within 3 days:
Server 54.158.252.173 is not responding.

The following recipients could not receive this message:
[EMAIL PROTECTED]

Please reply to [EMAIL PROTECTED]
if you feel this message to be in error.


--=_NextPart_000_0013_B2929ED7.98D0B0AF
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

[Filename: [EMAIL PROTECTED], Content-Type: application/octet-stream]
The attachment file in the message has been removed by eManager.

--=_NextPart_000_0013_B2929ED7.98D0B0AF--


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