Mailbox module - timings and functionality changes

I hope this is an appropriate dev topic. It seems to me that the unicode discussions of recent days are well highlighted by difficulties I am having using the mailbox module (hardly surprising given the difficulties of handling email generally) even though it passes its tests. I can't find anything related in the issue tracker (symptoms: one program that works fine under Python 2 in under twenty seconds takes forever (over ten minutes) to fail while creating the (start, stop) index to the mailbox). My code reads Thunderbird mailboxen from file store on my Windows Vista system under 3.1. The failures I am experiencing could easily be encoding issues so I won't post any detail yet, but I am concerned about the timing - even when the code is "fixed", if it needs to be, the performance may still make the module of dubious value. Can someone who is set up to do easily just do a timing of test_mailbox under 2.6 and 3.2, to verify they see the same disparity as me? The test takes about twice as long under 3.1 here (and I am concerned that unexercised aspects of the code may extend real-world problem run times by an order of magnitude or more). regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000

Hello Steve,
Can someone who is set up to do easily just do a timing of test_mailbox under 2.6 and 3.2, to verify they see the same disparity as me? The test takes about twice as long under 3.1 here On Ubuntu timing was:
Python 2.6.5: 23.8sec Python 2.7rc2: 32.7sec Python 3.1.2: 32.3sec All the best, -- Miki

On Tue, Jun 29, 2010 at 09:56:11AM -0400, Steve Holden wrote:
Can someone who is set up to do easily just do a timing of test_mailbox under 2.6 and 3.2, to verify they see the same disparity as me? The test
Actually, No. Python 2.7b2+ (trunk:81685M, Jun 4 2010, 21:52:06) Ran 274 tests in 27.231s OK real 0m27.769s user 0m1.110s sys 0m0.440s Python 3.2a0 (py3k:82364M, Jun 29 2010, 19:37:27 Ran 268 tests in 24.444s OK real 0m25.126s user 0m2.810s sys 0m0.270s 07:39 PM:senthil@:~/python/py3k This is under Ubuntu 64 Bit. Perhaps, the problem you are observing is Windows Only? -- Senthil Banectomy, n.: The removal of bruises on a banana. -- Rich Hall, "Sniglets"

Command line: ./python -m test.regrtest -v test_mailbox trunk: Ran 274 tests in 25.239s py3k: Ran 268 tests in 26.263s So I don't see any substantial difference on a Kubuntu 10.04 box (both builds are recent'ish, but not completely up to date). However, the underlying IO access is significantly different between POSIX and Windows, so there could still be something pathological happening at the filesystem manipulation layer. My comparisons are also 2.7 vs 3.2 rather than 2.6 vs 3.1. Cheers, Nick. -- Nick Coghlan | ncoghlan@gmail.com | Brisbane, Australia

Nick Coghlan wrote:
Command line: ./python -m test.regrtest -v test_mailbox
trunk: Ran 274 tests in 25.239s py3k: Ran 268 tests in 26.263s
So I don't see any substantial difference on a Kubuntu 10.04 box (both builds are recent'ish, but not completely up to date).
However, the underlying IO access is significantly different between POSIX and Windows, so there could still be something pathological happening at the filesystem manipulation layer. My comparisons are also 2.7 vs 3.2 rather than 2.6 vs 3.1.
Cheers, Nick.
Thanks for all the timings! If a Windows user could do the same thing that would help ... regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000

Steve Holden wrote:
Nick Coghlan wrote:
Command line: ./python -m test.regrtest -v test_mailbox
trunk: Ran 274 tests in 25.239s py3k: Ran 268 tests in 26.263s
So I don't see any substantial difference on a Kubuntu 10.04 box (both builds are recent'ish, but not completely up to date).
However, the underlying IO access is significantly different between POSIX and Windows, so there could still be something pathological happening at the filesystem manipulation layer. My comparisons are also 2.7 vs 3.2 rather than 2.6 vs 3.1.
Cheers, Nick.
Thanks for all the timings! If a Windows user could do the same thing that would help ...
And there is *definitely a performance issue. I created a Thunderbird folder of 26 Google alerts and just parsed then all after reading them in from the mailbox. 2.5 (!): 0.78 sec 3.1 : 42.80 sec Rather than debate the code here perhaps I should just open an issue for this? I can then provide both a program and some data, which can be added to the tests if appropriate. The issue can clearly stand some investigation. regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000

On Tue, Jun 29, 2010 at 7:49 AM, Steve Holden <steve@holdenweb.com> wrote:
Steve Holden wrote:
Nick Coghlan wrote:
Command line: ./python -m test.regrtest -v test_mailbox
trunk: Ran 274 tests in 25.239s py3k: Ran 268 tests in 26.263s
So I don't see any substantial difference on a Kubuntu 10.04 box (both builds are recent'ish, but not completely up to date).
However, the underlying IO access is significantly different between POSIX and Windows, so there could still be something pathological happening at the filesystem manipulation layer. My comparisons are also 2.7 vs 3.2 rather than 2.6 vs 3.1.
Cheers, Nick.
Thanks for all the timings! If a Windows user could do the same thing that would help ...
And there is *definitely a performance issue. I created a Thunderbird folder of 26 Google alerts and just parsed then all after reading them in from the mailbox.
2.5 (!): 0.78 sec 3.1 : 42.80 sec
Rather than debate the code here perhaps I should just open an issue for this? I can then provide both a program and some data, which can be added to the tests if appropriate. The issue can clearly stand some investigation.
Since you have such a great reproducible test case, could you point the profiler at it? (Perhaps on a reduced dataset... The profiler multiples your run time by some number between 2 and 10 IIRC.) -- --Guido van Rossum (python.org/~guido)

Guido van Rossum wrote:
On Tue, Jun 29, 2010 at 7:49 AM, Steve Holden <steve@holdenweb.com> wrote:
Steve Holden wrote:
Nick Coghlan wrote:
Command line: ./python -m test.regrtest -v test_mailbox
trunk: Ran 274 tests in 25.239s py3k: Ran 268 tests in 26.263s
So I don't see any substantial difference on a Kubuntu 10.04 box (both builds are recent'ish, but not completely up to date).
However, the underlying IO access is significantly different between POSIX and Windows, so there could still be something pathological happening at the filesystem manipulation layer. My comparisons are also 2.7 vs 3.2 rather than 2.6 vs 3.1.
Cheers, Nick.
Thanks for all the timings! If a Windows user could do the same thing that would help ...
And there is *definitely a performance issue. I created a Thunderbird folder of 26 Google alerts and just parsed then all after reading them in from the mailbox.
2.5 (!): 0.78 sec 3.1 : 42.80 sec
Rather than debate the code here perhaps I should just open an issue for this? I can then provide both a program and some data, which can be added to the tests if appropriate. The issue can clearly stand some investigation.
Since you have such a great reproducible test case, could you point the profiler at it? (Perhaps on a reduced dataset... The profiler multiples your run time by some number between 2 and 10 IIRC.)
Sure. I attach the outputs of both files, as well as the program and the data. With profiling (python -m cProfile test3.py) the run took less than a third of a second under 2.5, and 168 seconds under 3.1. I'd say that was problematical :) I will leave the profiler output to speak for itself, since I can find nothing much to say about it except that there's a hell of a lot of decoding going on inside mailbox.iterkeys(). regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000 Begins with /From / Processing ... <00504502dc1082c9e00487fe077f@google.com> <00504502c603b8d7cc048812181a@google.com> <0016e64cafb6c733600488263adb@google.com> <000e0cd1b66e3b81f104883a615d@google.com> <001636e90cfdfce16004884e74e8@google.com> <000e0cd2de4a92ced8048876b718@google.com> <0016e64caf88899df404888ae6b1@google.com> <0016e64ccc48c70b2804889ef11d@google.com> <00032556305200b9040488b3157f@google.com> <001636e0ad2a3441710488c7269f@google.com> <000e0cd28b52649de70488db553a@google.com> <000e0cd13878fd9e830489037f0a@google.com> <000e0cd509c6c7ca6c048917a06d@google.com> <0016e68f9e9c58777204892bbf27@google.com> <001636c92930a3bbf004893fe359@google.com> <000e0cdf17d61116ce048954af8e@google.com> <001485eba6f6e5d5df048969f824@google.com> <000e0cd72b1ad6160804897df1a4@google.com> <0016e642d1aaff57140489904f85@google.com> <0016e64690b67901f30489a46dfc@google.com> <0016e68db9314c58230489b88bda@google.com> <000e0cd70a040d8f650489ccaa6c@google.com> <0016e68e7f61f983b30489e11050@google.com> <0016e68fcec35910360489f4e569@google.com> <0016e6469284fbc635048a090235@google.com> <001636c925aa655098048a1d23b5@google.com> Duration 168.454999924 41802889 function calls (41801960 primitive calls) in 168.711 CPU seconds Ordered by: standard name ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 0.000 0.000 <string>:1(<module>) 1 0.000 0.000 0.000 0.000 <string>:1(ParseResult) 1 0.000 0.000 0.000 0.000 <string>:1(SplitResult) 1 0.000 0.000 168.532 168.532 <string>:7(main) 1 0.000 0.000 0.000 0.000 __future__.py:48(<module>) 1 0.000 0.000 0.000 0.000 __future__.py:76(_Feature) 8 0.000 0.000 0.000 0.000 __future__.py:77(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:1(<module>) 26 0.001 0.000 2.719 0.105 __init__.py:40(message_from_file) 1 0.000 0.000 0.000 0.000 __init__.py:5(<module>) 1 0.000 0.000 0.000 0.000 _parseaddr.py:155(AddrlistClass) 1 0.000 0.000 0.000 0.000 _parseaddr.py:435(AddressList) 1 0.000 0.000 0.000 0.000 _parseaddr.py:7(<module>) 3 0.000 0.000 0.000 0.000 _weakrefset.py:10(__init__) 1 0.000 0.000 0.000 0.000 abc.py:76(__new__) 1 0.000 0.000 0.000 0.000 abc.py:79(<setcomp>) 1 0.000 0.000 0.000 0.000 base64.py:143(<listcomp>) 1 0.000 0.000 0.000 0.000 base64.py:144(<listcomp>) 1 0.000 0.000 0.000 0.000 base64.py:3(<module>) 1 0.000 0.000 0.000 0.000 base64mime.py:25(<module>) 1 0.000 0.000 0.000 0.000 calendar.py:126(Calendar) 1 0.000 0.000 0.000 0.000 calendar.py:132(__init__) 1 0.000 0.000 0.000 0.000 calendar.py:138(setfirstweekday) 1 0.000 0.000 0.000 0.000 calendar.py:21(IllegalMonthError) 1 0.000 0.000 0.000 0.000 calendar.py:255(TextCalendar) 1 0.000 0.000 0.000 0.000 calendar.py:28(IllegalWeekdayError) 1 0.000 0.000 0.000 0.000 calendar.py:372(HTMLCalendar) 1 0.000 0.000 0.000 0.000 calendar.py:47(_localized_month) 1 0.000 0.000 0.000 0.000 calendar.py:484(different_locale) 1 0.000 0.000 0.000 0.000 calendar.py:49(<listcomp>) 1 0.000 0.000 0.000 0.000 calendar.py:496(LocaleTextCalendar) 2 0.000 0.000 0.000 0.000 calendar.py:52(__init__) 1 0.000 0.000 0.000 0.000 calendar.py:527(LocaleHTMLCalendar) 1 0.000 0.000 0.001 0.001 calendar.py:6(<module>) 1 0.000 0.000 0.000 0.000 calendar.py:66(_localized_day) 1 0.000 0.000 0.000 0.000 calendar.py:69(<listcomp>) 2 0.000 0.000 0.000 0.000 calendar.py:71(__init__) 1 0.000 0.000 0.000 0.000 charset.py:156(Charset) 2 0.000 0.000 0.000 0.000 charset.py:200(__init__) 1 0.001 0.001 0.003 0.003 charset.py:6(<module>) 1 0.000 0.000 0.000 0.000 codecs.py:164(__init__) 2 0.000 0.000 0.000 0.000 codecs.py:181(reset) 63 0.000 0.000 0.000 0.000 codecs.py:192(setstate) 3 0.000 0.000 0.000 0.000 codecs.py:238(__init__) 129 0.000 0.000 0.000 0.000 codecs.py:254(reset) 13913055 20.119 0.000 20.119 0.000 codecs.py:259(getstate) 6758 0.010 0.000 0.010 0.000 codecs.py:273(setstate) 2 0.000 0.000 0.002 0.001 collections.py:173(namedtuple) 99 0.000 0.000 0.000 0.000 collections.py:213(<genexpr>) 13 0.000 0.000 0.000 0.000 collections.py:230(<genexpr>) 60 0.000 0.000 0.000 0.000 cp1252.py:18(encode) 13909644 44.396 0.000 72.129 0.000 cp1252.py:22(decode) 1 0.000 0.000 0.000 0.000 encoders.py:5(<module>) 1 0.000 0.000 0.000 0.000 errors.py:13(MessageParseError) 1 0.000 0.000 0.000 0.000 errors.py:17(HeaderParseError) 1 0.000 0.000 0.000 0.000 errors.py:21(BoundaryError) 1 0.000 0.000 0.000 0.000 errors.py:25(MultipartConversionError) 1 0.000 0.000 0.000 0.000 errors.py:29(CharsetError) 1 0.000 0.000 0.000 0.000 errors.py:35(MessageDefect) 1 0.000 0.000 0.000 0.000 errors.py:41(NoBoundaryInMultipartDefect) 1 0.000 0.000 0.000 0.000 errors.py:44(StartBoundaryNotFoundDefect) 1 0.000 0.000 0.000 0.000 errors.py:47(FirstHeaderLineIsContinuationDefect) 1 0.000 0.000 0.000 0.000 errors.py:5(<module>) 1 0.000 0.000 0.000 0.000 errors.py:50(MisplacedEnvelopeHeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:53(MalformedHeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:56(MultipartInvariantViolationDefect) 1 0.000 0.000 0.000 0.000 errors.py:9(MessageError) 38 0.000 0.000 0.000 0.000 feedparser.py:115(pushlines) 52 0.000 0.000 0.000 0.000 feedparser.py:122(__iter__) 3360 0.011 0.000 0.028 0.000 feedparser.py:125(__next__) 1 0.000 0.000 0.000 0.000 feedparser.py:133(FeedParser) 26 0.000 0.000 0.000 0.000 feedparser.py:136(__init__) 38 0.000 0.000 0.091 0.002 feedparser.py:150(feed) 64 0.000 0.000 0.073 0.001 feedparser.py:155(_call_parse) 26 0.000 0.000 0.004 0.000 feedparser.py:161(close) 26 0.000 0.000 0.000 0.000 feedparser.py:173(_new_message) 26 0.000 0.000 0.000 0.000 feedparser.py:183(_pop_message) 64 0.014 0.000 0.073 0.001 feedparser.py:191(_parsegen) 1 0.000 0.000 0.005 0.005 feedparser.py:20(<module>) 26 0.008 0.000 0.015 0.001 feedparser.py:427(_parse_headers) 1 0.000 0.000 0.000 0.000 feedparser.py:43(BufferedSubFile) 26 0.000 0.000 0.000 0.000 feedparser.py:51(__init__) 26 0.000 0.000 0.000 0.000 feedparser.py:67(close) 3360 0.012 0.000 0.017 0.000 feedparser.py:73(readline) 38 0.007 0.000 0.019 0.000 feedparser.py:96(push) 1 0.000 0.000 0.000 0.000 fnmatch.py:11(<module>) 1 0.000 0.000 0.000 0.000 generator.py:25(Generator) 1 0.000 0.000 0.000 0.000 generator.py:253(DecodedGenerator) 1 0.001 0.001 0.011 0.011 generator.py:5(<module>) 1 0.003 0.003 0.005 0.005 glob.py:1(<module>) 1 0.000 0.000 0.000 0.000 header.py:151(Header) 1 0.000 0.000 0.000 0.000 header.py:333(_ValueFormatter) 1 0.000 0.000 0.009 0.009 header.py:5(<module>) 1 0.000 0.000 0.000 0.000 header.py:547(_Accumulator) 1 0.000 0.000 0.000 0.000 iterators.py:5(<module>) 1 0.003 0.003 0.079 0.079 linecache.py:6(<module>) 3 0.000 0.000 0.000 0.000 locale.py:541(getpreferredencoding) 1 0.000 0.000 0.000 0.000 mailbox.py:107(__iter__) 1 0.000 0.000 0.000 0.000 mailbox.py:1132(Babyl) 1 0.000 0.000 0.000 0.000 mailbox.py:1353(Message) 1 0.000 0.000 0.000 0.000 mailbox.py:1385(MaildirMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1492(_mboxMMDFMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1603(mboxMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1607(MHMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1677(BabylMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1770(MMDFMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1774(_ProxyFile) 26 0.000 0.000 0.000 0.000 mailbox.py:1777(__init__) 64 0.000 0.000 2.616 0.041 mailbox.py:1785(read) 38 0.000 0.000 2.615 0.069 mailbox.py:1827(_read) 1 0.000 0.000 0.000 0.000 mailbox.py:1837(_PartialFile) 26 0.000 0.000 0.000 0.000 mailbox.py:1840(__init__) 64 0.000 0.000 2.615 0.041 mailbox.py:1860(_read) 1 0.000 0.000 0.000 0.000 mailbox.py:1948(Error) 1 0.000 0.000 0.000 0.000 mailbox.py:1951(NoSuchMailboxError) 1 0.000 0.000 0.000 0.000 mailbox.py:1954(NotEmptyError) 1 0.000 0.000 0.000 0.000 mailbox.py:1957(ExternalClashError) 1 0.000 0.000 0.000 0.000 mailbox.py:1960(FormatError) 1 0.000 0.000 0.000 0.000 mailbox.py:219(Maildir) 1 0.015 0.015 0.173 0.173 mailbox.py:3(<module>) 1 0.000 0.000 0.000 0.000 mailbox.py:34(Mailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:37(__init__) 1 0.000 0.000 0.000 0.000 mailbox.py:517(_singlefileMailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:520(__init__) 27 0.000 0.000 165.795 6.141 mailbox.py:562(iterkeys) 27 0.000 0.000 165.795 6.141 mailbox.py:667(_lookup) 1 0.000 0.000 0.000 0.000 mailbox.py:689(_mboxMMDF) 26 0.000 0.000 2.733 0.105 mailbox.py:71(__getitem__) 26 0.000 0.000 0.014 0.001 mailbox.py:713(get_file) 1 0.000 0.000 0.000 0.000 mailbox.py:745(mbox) 1 0.000 0.000 0.000 0.000 mailbox.py:750(__init__) 1 0.024 0.024 165.795 165.795 mailbox.py:760(_generate_toc) 1 0.000 0.000 0.000 0.000 mailbox.py:779(MMDF) 1 0.000 0.000 0.000 0.000 mailbox.py:824(MH) 1 0.000 0.000 165.795 165.795 mailbox.py:94(keys) 27 0.000 0.000 168.528 6.242 mailbox.py:98(itervalues) 26 0.000 0.000 0.000 0.000 message.py:106(__init__) 26 0.000 0.000 0.000 0.000 message.py:226(set_payload) 26 0.000 0.000 0.001 0.000 message.py:286(__getitem__) 104 0.001 0.000 0.001 0.000 message.py:29(_splitparam) 546 0.002 0.000 0.003 0.000 message.py:297(__setitem__) 130 0.005 0.000 0.009 0.000 message.py:357(get) 104 0.001 0.000 0.010 0.000 message.py:432(get_content_type) 78 0.000 0.000 0.008 0.000 message.py:456(get_content_maintype) 1 0.011 0.011 0.133 0.133 message.py:5(<module>) 1 0.001 0.001 0.001 0.001 message.py:91(Message) 2 0.000 0.000 0.000 0.000 ntpath.py:178(splitdrive) 1 0.000 0.000 0.000 0.000 ntpath.py:341(expanduser) 2 0.000 0.000 0.000 0.000 ntpath.py:37(_get_empty) 6 0.000 0.000 0.000 0.000 ntpath.py:43(_get_sep) 4 0.000 0.000 0.000 0.000 ntpath.py:49(_get_altsep) 2 0.000 0.000 0.000 0.000 ntpath.py:507(normpath) 2 0.000 0.000 0.000 0.000 ntpath.py:556(abspath) 14 0.000 0.000 0.000 0.000 ntpath.py:61(_get_dot) 2 0.000 0.000 0.000 0.000 ntpath.py:67(_get_colon) 2 0.000 0.000 0.000 0.000 ntpath.py:77(normcase) 1 0.000 0.000 0.000 0.000 os.py:35(_get_exports_list) 1 0.000 0.000 0.000 0.000 os.py:39(<listcomp>) 1 0.000 0.000 0.000 0.000 parse.py:413(Quoter) 1 0.000 0.000 0.000 0.000 parse.py:48(ResultMixin) 1 0.000 0.000 0.002 0.002 parse.py:5(<module>) 1 0.000 0.000 0.000 0.000 parse.py:91(SplitResult) 1 0.000 0.000 0.000 0.000 parse.py:99(ParseResult) 1 0.000 0.000 0.000 0.000 parser.py:17(Parser) 26 0.000 0.000 0.000 0.000 parser.py:18(__init__) 1 0.001 0.001 0.005 0.005 parser.py:5(<module>) 26 0.000 0.000 2.712 0.104 parser.py:56(parse) 1 0.000 0.000 0.000 0.000 parser.py:86(HeaderParser) 1 0.000 0.000 0.000 0.000 quopri.py:3(<module>) 1 0.001 0.001 0.002 0.002 quoprimime.py:27(<module>) 257 0.001 0.000 0.001 0.000 quoprimime.py:55(<genexpr>) 1 0.002 0.002 0.014 0.014 random.py:37(<module>) 1 0.000 0.000 0.000 0.000 random.py:627(SystemRandom) 1 0.000 0.000 0.000 0.000 random.py:69(Random) 1 0.000 0.000 0.012 0.012 random.py:85(__init__) 1 0.000 0.000 0.012 0.012 random.py:94(seed) 22 0.000 0.000 0.101 0.005 re.py:203(compile) 22 0.000 0.000 0.101 0.005 re.py:259(_compile) 1 0.000 0.000 0.000 0.000 socket.py:190(SocketIO) 1 0.011 0.011 0.012 0.012 socket.py:43(<module>) 1 0.000 0.000 0.000 0.000 socket.py:82(socket) 129 0.002 0.000 0.015 0.000 sre_compile.py:178(_compile_charset) 129 0.007 0.000 0.012 0.000 sre_compile.py:207(_optimize_charset) 551 0.001 0.000 0.001 0.000 sre_compile.py:24(_identityfunction) 31 0.002 0.000 0.003 0.000 sre_compile.py:258(_mk_bitmap) 310/21 0.008 0.000 0.031 0.001 sre_compile.py:32(_compile) 121 0.001 0.000 0.002 0.000 sre_compile.py:355(_simple) 21 0.001 0.000 0.008 0.000 sre_compile.py:362(_compile_info) 42 0.000 0.000 0.000 0.000 sre_compile.py:468(isstring) 21 0.000 0.000 0.039 0.002 sre_compile.py:471(_code) 21 0.000 0.000 0.100 0.005 sre_compile.py:486(compile) 12 0.000 0.000 0.000 0.000 sre_compile.py:51(fixup) 496 0.002 0.000 0.002 0.000 sre_parse.py:127(__len__) 1304 0.005 0.000 0.007 0.000 sre_parse.py:131(__getitem__) 121 0.000 0.000 0.000 0.000 sre_parse.py:135(__setitem__) 395 0.001 0.000 0.002 0.000 sre_parse.py:139(append) 426/142 0.005 0.000 0.006 0.000 sre_parse.py:141(getwidth) 21 0.000 0.000 0.000 0.000 sre_parse.py:179(__init__) 1954 0.015 0.000 0.024 0.000 sre_parse.py:183(__next) 910 0.002 0.000 0.005 0.000 sre_parse.py:202(match) 1679 0.006 0.000 0.026 0.000 sre_parse.py:208(get) 1 0.000 0.000 0.000 0.000 sre_parse.py:212(tell) 48 0.000 0.000 0.000 0.000 sre_parse.py:217(isident) 8 0.000 0.000 0.000 0.000 sre_parse.py:223(isname) 53 0.000 0.000 0.001 0.000 sre_parse.py:232(_class_escape) 56 0.000 0.000 0.001 0.000 sre_parse.py:264(_escape) 83/21 0.002 0.000 0.058 0.003 sre_parse.py:308(_parse_sub) 152/23 0.012 0.000 0.058 0.003 sre_parse.py:386(_parse) 21 0.000 0.000 0.000 0.000 sre_parse.py:670(fix_flags) 21 0.000 0.000 0.000 0.000 sre_parse.py:68(__init__) 21 0.001 0.000 0.060 0.003 sre_parse.py:682(parse) 47 0.000 0.000 0.000 0.000 sre_parse.py:73(opengroup) 47 0.000 0.000 0.000 0.000 sre_parse.py:84(closegroup) 310 0.001 0.000 0.001 0.000 sre_parse.py:91(__init__) 1 0.000 0.000 0.000 0.000 token.py:3(<module>) 1 0.000 0.000 0.000 0.000 tokenize.py:176(TokenError) 1 0.000 0.000 0.000 0.000 tokenize.py:178(StopTokenizing) 1 0.000 0.000 0.000 0.000 tokenize.py:181(Untokenizer) 1 0.003 0.003 0.076 0.076 tokenize.py:20(<module>) 1 0.000 0.000 0.000 0.000 tokenize.py:33(<listcomp>) 1 0.000 0.000 0.000 0.000 tokenize.py:45(TokenInfo) 19 0.000 0.000 0.000 0.000 tokenize.py:86(group) 1 0.000 0.000 0.000 0.000 tokenize.py:87(any) 2 0.000 0.000 0.000 0.000 tokenize.py:88(maybe) 1 0.007 0.007 0.034 0.034 utils.py:5(<module>) 1 0.000 0.000 0.000 0.000 uu.py:31(<module>) 1 0.000 0.000 0.000 0.000 uu.py:39(Error) 1 0.003 0.003 0.083 0.083 warnings.py:1(<module>) 1 0.000 0.000 0.000 0.000 warnings.py:257(WarningMessage) 1 0.000 0.000 0.000 0.000 warnings.py:277(catch_warnings) 1 0.000 0.000 0.000 0.000 warnings.py:71(_OptionError) 1 0.000 0.000 0.000 0.000 warnings.py:76(_processoptions) 77 0.003 0.000 0.004 0.000 {built-in method __build_class__} 1 0.000 0.000 0.000 0.000 {built-in method __new__ of type object at 0x1E1C68A0} 3 0.000 0.000 0.000 0.000 {built-in method _getdefaultlocale} 2 0.000 0.000 0.000 0.000 {built-in method _getframe} 2 0.000 0.000 0.000 0.000 {built-in method _getfullpathname} 13 0.000 0.000 0.001 0.000 {built-in method all} 13909644 27.734 0.000 27.734 0.000 {built-in method charmap_decode} 60 0.000 0.000 0.000 0.000 {built-in method charmap_encode} 167 0.000 0.000 0.000 0.000 {built-in method chr} 21 0.000 0.000 0.000 0.000 {built-in method compile} 2 0.000 0.000 0.000 0.000 {built-in method dir} 4/1 0.002 0.001 168.719 168.719 {built-in method exec} 1 0.000 0.000 0.000 0.000 {built-in method exp} 13 0.000 0.000 0.000 0.000 {built-in method getattr} 26 0.000 0.000 0.000 0.000 {built-in method getlower} 1 0.000 0.000 0.000 0.000 {built-in method globals} 1 0.000 0.000 0.000 0.000 {built-in method hexlify} 3421 0.006 0.000 0.006 0.000 {built-in method isinstance} 6382/6220 0.010 0.000 0.010 0.000 {built-in method len} 2 0.000 0.000 0.000 0.000 {built-in method locals} 2 0.000 0.000 0.000 0.000 {built-in method log} 104 0.000 0.000 0.000 0.000 {built-in method max} 714 0.001 0.000 0.001 0.000 {built-in method min} 3 0.000 0.000 0.000 0.000 {built-in method open} 414 0.001 0.000 0.001 0.000 {built-in method ord} 29 0.000 0.000 0.001 0.000 {built-in method print} 3 0.000 0.000 0.000 0.000 {built-in method repr} 1 0.000 0.000 0.000 0.000 {built-in method sorted} 1 0.000 0.000 0.000 0.000 {built-in method sqrt} 2 0.000 0.000 0.000 0.000 {built-in method time} 1 0.012 0.012 0.012 0.012 {built-in method urandom} 1 0.000 0.000 0.000 0.000 {function seed at 0x0202B1E0} 13 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} 11 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects} 12056 0.018 0.000 0.018 0.000 {method 'append' of 'list' objects} 1 0.000 0.000 0.000 0.000 {method 'copy' of 'dict' objects} 104 0.000 0.000 0.000 0.000 {method 'count' of 'str' objects} 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 4 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} 34 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects} 546 0.001 0.000 0.001 0.000 {method 'find' of 'str' objects} 224 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} 1 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} 86 0.000 0.000 0.000 0.000 {method 'isalnum' of 'str' objects} 13 0.000 0.000 0.000 0.000 {method 'isdigit' of 'str' objects} 25 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} 595 0.001 0.000 0.001 0.000 {method 'join' of 'str' objects} 1 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} 2709 0.004 0.000 0.004 0.000 {method 'lower' of 'str' objects} 548 0.001 0.000 0.001 0.000 {method 'lstrip' of 'str' objects} 1014 0.003 0.000 0.003 0.000 {method 'match' of '_sre.SRE_Pattern' objects} 104 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects} 3386 0.005 0.000 0.005 0.000 {method 'pop' of 'list' objects} 39 0.002 0.000 0.003 0.000 {method 'read' of '_io.TextIOWrapper' objects} 3374 0.012 0.000 0.014 0.000 {method 'readline' of '_io.TextIOWrapper' objects} 47 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} 8 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} 546 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} 65 0.001 0.000 0.001 0.000 {method 'seek' of '_io.TextIOWrapper' objects} 38 0.007 0.000 0.007 0.000 {method 'split' of '_sre.SRE_Pattern' objects} 82 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} 3909 0.007 0.000 0.007 0.000 {method 'startswith' of 'str' objects} 208 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects} 3413 76.119 0.022 168.375 0.049 {method 'tell' of '_io.TextIOWrapper' objects} 1 0.000 0.000 0.000 0.000 {method 'toordinal' of 'datetime.date' objects} Begins with /From / Processing ... <00504502dc1082c9e00487fe077f@google.com> <00504502c603b8d7cc048812181a@google.com> <0016e64cafb6c733600488263adb@google.com> <000e0cd1b66e3b81f104883a615d@google.com> <001636e90cfdfce16004884e74e8@google.com> <000e0cd2de4a92ced8048876b718@google.com> <0016e64caf88899df404888ae6b1@google.com> <0016e64ccc48c70b2804889ef11d@google.com> <00032556305200b9040488b3157f@google.com> <001636e0ad2a3441710488c7269f@google.com> <000e0cd28b52649de70488db553a@google.com> <000e0cd13878fd9e830489037f0a@google.com> <000e0cd509c6c7ca6c048917a06d@google.com> <0016e68f9e9c58777204892bbf27@google.com> <001636c92930a3bbf004893fe359@google.com> <000e0cdf17d61116ce048954af8e@google.com> <001485eba6f6e5d5df048969f824@google.com> <000e0cd72b1ad6160804897df1a4@google.com> <0016e642d1aaff57140489904f85@google.com> <0016e64690b67901f30489a46dfc@google.com> <0016e68db9314c58230489b88bda@google.com> <000e0cd70a040d8f650489ccaa6c@google.com> <0016e68e7f61f983b30489e11050@google.com> <0016e68fcec35910360489f4e569@google.com> <0016e6469284fbc635048a090235@google.com> <001636c925aa655098048a1d23b5@google.com> ('Duration', 0.14400005340576172) 43168 function calls (43067 primitive calls) in 0.271 CPU seconds Ordered by: standard name ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 0.000 0.000 <string>:1(<module>) 1 0.000 0.000 0.000 0.000 StringIO.py:30(<module>) 1 0.000 0.000 0.000 0.000 StringIO.py:42(StringIO) 1 0.000 0.000 0.000 0.000 __future__.py:48(<module>) 1 0.000 0.000 0.000 0.000 __future__.py:70(_Feature) 5 0.000 0.000 0.000 0.000 __future__.py:71(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:1(<module>) 1 0.001 0.001 0.001 0.001 __init__.py:5(<module>) 26 0.001 0.000 0.102 0.004 __init__.py:60(message_from_file) 1 0.000 0.000 0.000 0.000 __init__.py:74(LazyImporter) 19 0.000 0.000 0.000 0.000 __init__.py:75(__init__) 2/1 0.000 0.000 0.064 0.064 __init__.py:78(__getattr__) 1 0.000 0.000 0.000 0.000 _parseaddr.py:155(AddrlistClass) 1 0.000 0.000 0.000 0.000 _parseaddr.py:435(AddressList) 1 0.000 0.000 0.000 0.000 _parseaddr.py:7(<module>) 1 0.001 0.001 0.001 0.001 base64.py:3(<module>) 1 0.000 0.000 0.053 0.053 base64mime.py:25(<module>) 1 0.000 0.000 0.000 0.000 calendar.py:127(Calendar) 1 0.000 0.000 0.000 0.000 calendar.py:133(__init__) 1 0.000 0.000 0.000 0.000 calendar.py:139(setfirstweekday) 1 0.000 0.000 0.000 0.000 calendar.py:22(IllegalMonthError) 1 0.000 0.000 0.000 0.000 calendar.py:256(TextCalendar) 1 0.000 0.000 0.000 0.000 calendar.py:29(IllegalWeekdayError) 1 0.000 0.000 0.000 0.000 calendar.py:373(HTMLCalendar) 1 0.000 0.000 0.000 0.000 calendar.py:48(_localized_month) 1 0.000 0.000 0.000 0.000 calendar.py:485(TimeEncoding) 1 0.000 0.000 0.000 0.000 calendar.py:497(LocaleTextCalendar) 2 0.000 0.000 0.000 0.000 calendar.py:53(__init__) 1 0.000 0.000 0.000 0.000 calendar.py:532(LocaleHTMLCalendar) 1 0.005 0.005 0.006 0.006 calendar.py:6(<module>) 1 0.000 0.000 0.000 0.000 calendar.py:67(_localized_day) 2 0.000 0.000 0.000 0.000 calendar.py:72(__init__) 1 0.000 0.000 0.000 0.000 charset.py:152(Charset) 1 0.001 0.001 0.056 0.056 charset.py:6(<module>) 1 0.000 0.000 0.000 0.000 encoders.py:5(<module>) 1 0.000 0.000 0.000 0.000 errors.py:13(MessageParseError) 1 0.000 0.000 0.000 0.000 errors.py:17(HeaderParseError) 1 0.000 0.000 0.000 0.000 errors.py:21(BoundaryError) 1 0.000 0.000 0.000 0.000 errors.py:25(MultipartConversionError) 1 0.000 0.000 0.000 0.000 errors.py:29(CharsetError) 1 0.000 0.000 0.000 0.000 errors.py:35(MessageDefect) 1 0.000 0.000 0.000 0.000 errors.py:41(NoBoundaryInMultipartDefect) 1 0.000 0.000 0.000 0.000 errors.py:44(StartBoundaryNotFoundDefect) 1 0.000 0.000 0.000 0.000 errors.py:47(FirstHeaderLineIsContinuationDefect) 1 0.000 0.000 0.000 0.000 errors.py:5(<module>) 1 0.000 0.000 0.000 0.000 errors.py:50(MisplacedEnvelopeHeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:53(MalformedHeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:56(MultipartInvariantViolationDefect) 1 0.000 0.000 0.000 0.000 errors.py:9(MessageError) 38 0.000 0.000 0.000 0.000 feedparser.py:115(pushlines) 52 0.000 0.000 0.000 0.000 feedparser.py:122(__iter__) 3360 0.011 0.000 0.029 0.000 feedparser.py:125(next) 1 0.000 0.000 0.000 0.000 feedparser.py:133(FeedParser) 26 0.000 0.000 0.000 0.000 feedparser.py:136(__init__) 38 0.000 0.000 0.089 0.002 feedparser.py:150(feed) 64 0.000 0.000 0.074 0.001 feedparser.py:155(_call_parse) 26 0.000 0.000 0.004 0.000 feedparser.py:161(close) 26 0.000 0.000 0.000 0.000 feedparser.py:173(_new_message) 26 0.000 0.000 0.000 0.000 feedparser.py:183(_pop_message) 64 0.015 0.000 0.074 0.001 feedparser.py:191(_parsegen) 1 0.000 0.000 0.004 0.004 feedparser.py:20(<module>) 26 0.007 0.000 0.015 0.001 feedparser.py:427(_parse_headers) 1 0.000 0.000 0.000 0.000 feedparser.py:43(BufferedSubFile) 26 0.000 0.000 0.000 0.000 feedparser.py:51(__init__) 26 0.000 0.000 0.000 0.000 feedparser.py:67(close) 3360 0.012 0.000 0.018 0.000 feedparser.py:73(readline) 38 0.006 0.000 0.016 0.000 feedparser.py:96(push) 1 0.000 0.000 0.000 0.000 fnmatch.py:11(<module>) 1 0.004 0.004 0.004 0.004 glob.py:1(<module>) 1 0.000 0.000 0.000 0.000 iterators.py:5(<module>) 27 0.000 0.000 0.142 0.005 mailbox.py:100(itervalues) 1 0.000 0.000 0.000 0.000 mailbox.py:109(__iter__) 1 0.000 0.000 0.000 0.000 mailbox.py:1096(Babyl) 1 0.000 0.000 0.000 0.000 mailbox.py:1315(Message) 1 0.000 0.000 0.000 0.000 mailbox.py:1347(MaildirMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1454(_mboxMMDFMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1565(mboxMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1569(MHMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1639(BabylMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1732(MMDFMessage) 1 0.000 0.000 0.000 0.000 mailbox.py:1736(_ProxyFile) 26 0.000 0.000 0.000 0.000 mailbox.py:1739(__init__) 64 0.000 0.000 0.002 0.000 mailbox.py:1747(read) 38 0.000 0.000 0.001 0.000 mailbox.py:1785(_read) 1 0.000 0.000 0.000 0.000 mailbox.py:1795(_PartialFile) 26 0.000 0.000 0.000 0.000 mailbox.py:1798(__init__) 64 0.000 0.000 0.001 0.000 mailbox.py:1818(_read) 1 0.000 0.000 0.000 0.000 mailbox.py:1910(_Mailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:1936(UnixMailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:2002(PortableUnixMailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:2006(MmdfMailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:2027(MHMailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:2061(BabylMailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:2084(Error) 1 0.000 0.000 0.000 0.000 mailbox.py:2087(NoSuchMailboxError) 1 0.000 0.000 0.000 0.000 mailbox.py:2090(NotEmptyError) 1 0.000 0.000 0.000 0.000 mailbox.py:2093(ExternalClashError) 1 0.000 0.000 0.000 0.000 mailbox.py:2096(FormatError) 1 0.000 0.000 0.000 0.000 mailbox.py:223(Maildir) 1 0.028 0.028 0.114 0.114 mailbox.py:3(<module>) 1 0.000 0.000 0.000 0.000 mailbox.py:36(Mailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:39(__init__) 1 0.000 0.000 0.000 0.000 mailbox.py:500(_singlefileMailbox) 1 0.000 0.000 0.000 0.000 mailbox.py:503(__init__) 27 0.000 0.000 0.039 0.001 mailbox.py:544(iterkeys) 27 0.000 0.000 0.039 0.001 mailbox.py:635(_lookup) 1 0.000 0.000 0.000 0.000 mailbox.py:656(_mboxMMDF) 26 0.000 0.000 0.001 0.000 mailbox.py:680(get_file) 1 0.000 0.000 0.000 0.000 mailbox.py:712(mbox) 1 0.000 0.000 0.000 0.000 mailbox.py:717(__init__) 1 0.018 0.018 0.039 0.039 mailbox.py:727(_generate_toc) 26 0.000 0.000 0.103 0.004 mailbox.py:73(__getitem__) 1 0.000 0.000 0.000 0.000 mailbox.py:745(MMDF) 1 0.000 0.000 0.000 0.000 mailbox.py:788(MH) 26 0.000 0.000 0.000 0.000 message.py:101(__init__) 26 0.000 0.000 0.000 0.000 message.py:212(set_payload) 26 0.000 0.000 0.001 0.000 message.py:277(__getitem__) 546 0.002 0.000 0.003 0.000 message.py:288(__setitem__) 130 0.005 0.000 0.009 0.000 message.py:346(get) 104 0.001 0.000 0.010 0.000 message.py:421(get_content_type) 78 0.000 0.000 0.008 0.000 message.py:445(get_content_maintype) 1 0.005 0.005 0.063 0.063 message.py:5(<module>) 1 0.000 0.000 0.000 0.000 message.py:86(Message) 2 0.000 0.000 0.000 0.000 ntpath.py:116(splitdrive) 1 0.000 0.000 0.000 0.000 ntpath.py:346(expanduser) 2 0.000 0.000 0.000 0.000 ntpath.py:439(normpath) 2 0.000 0.000 0.000 0.000 ntpath.py:495(abspath) 1 0.000 0.000 0.000 0.000 nturl2path.py:1(<module>) 2 0.000 0.000 0.000 0.000 os.py:35(_get_exports_list) 1 0.000 0.000 0.000 0.000 parser.py:17(Parser) 26 0.000 0.000 0.000 0.000 parser.py:18(__init__) 1 0.000 0.000 0.005 0.005 parser.py:5(<module>) 26 0.000 0.000 0.096 0.004 parser.py:56(parse) 1 0.000 0.000 0.000 0.000 parser.py:86(HeaderParser) 1 0.000 0.000 0.000 0.000 quopri.py:3(<module>) 1 0.000 0.000 0.002 0.002 quoprimime.py:27(<module>) 1 0.000 0.000 0.013 0.013 random.py:39(<module>) 1 0.000 0.000 0.000 0.000 random.py:609(WichmannHill) 1 0.000 0.000 0.000 0.000 random.py:69(Random) 1 0.000 0.000 0.000 0.000 random.py:759(SystemRandom) 1 0.000 0.000 0.012 0.012 random.py:88(__init__) 1 0.000 0.000 0.012 0.012 random.py:97(seed) 14 0.000 0.000 0.018 0.001 re.py:186(compile) 14 0.000 0.000 0.018 0.001 re.py:227(_compile) 1 0.000 0.000 0.000 0.000 rfc822.py:492(AddrlistClass) 1 0.000 0.000 0.000 0.000 rfc822.py:71(<module>) 1 0.000 0.000 0.000 0.000 rfc822.py:766(AddressList) 1 0.000 0.000 0.000 0.000 rfc822.py:81(Message) 1 0.000 0.000 0.000 0.000 socket.py:138(_closedsocket) 1 0.001 0.001 0.001 0.001 socket.py:146(_socketobject) 1 0.000 0.000 0.000 0.000 socket.py:196(_fileobject) 1 0.014 0.014 0.015 0.015 socket.py:43(<module>) 22 0.000 0.000 0.003 0.000 sre_compile.py:184(_compile_charset) 22 0.001 0.000 0.003 0.000 sre_compile.py:213(_optimize_charset) 143 0.000 0.000 0.000 0.000 sre_compile.py:24(_identityfunction) 12 0.001 0.000 0.001 0.000 sre_compile.py:264(_mk_bitmap) 9 0.000 0.000 0.000 0.000 sre_compile.py:360(_simple) 13 0.000 0.000 0.003 0.000 sre_compile.py:367(_compile_info) 43/13 0.001 0.000 0.003 0.000 sre_compile.py:38(_compile) 26 0.000 0.000 0.000 0.000 sre_compile.py:480(isstring) 13 0.000 0.000 0.006 0.000 sre_compile.py:486(_code) 13 0.000 0.000 0.018 0.001 sre_compile.py:501(compile) 4 0.000 0.000 0.000 0.000 sre_compile.py:57(fixup) 64 0.000 0.000 0.000 0.000 sre_parse.py:132(__len__) 119 0.000 0.000 0.000 0.000 sre_parse.py:136(__getitem__) 9 0.000 0.000 0.000 0.000 sre_parse.py:138(__setitem__) 9 0.000 0.000 0.000 0.000 sre_parse.py:140(__getslice__) 59 0.000 0.000 0.000 0.000 sre_parse.py:144(append) 52/22 0.001 0.000 0.001 0.000 sre_parse.py:146(getwidth) 13 0.000 0.000 0.000 0.000 sre_parse.py:184(__init__) 559 0.003 0.000 0.004 0.000 sre_parse.py:188(__next) 148 0.000 0.000 0.001 0.000 sre_parse.py:201(match) 499 0.002 0.000 0.006 0.000 sre_parse.py:207(get) 1 0.000 0.000 0.000 0.000 sre_parse.py:211(tell) 26 0.000 0.000 0.000 0.000 sre_parse.py:216(isident) 5 0.000 0.000 0.000 0.000 sre_parse.py:222(isname) 14 0.000 0.000 0.000 0.000 sre_parse.py:231(_class_escape) 9 0.000 0.000 0.000 0.000 sre_parse.py:263(_escape) 22/13 0.000 0.000 0.011 0.001 sre_parse.py:307(_parse_sub) 30/15 0.002 0.000 0.011 0.001 sre_parse.py:385(_parse) 13 0.000 0.000 0.011 0.001 sre_parse.py:669(parse) 13 0.000 0.000 0.000 0.000 sre_parse.py:73(__init__) 9 0.000 0.000 0.000 0.000 sre_parse.py:78(opengroup) 9 0.000 0.000 0.000 0.000 sre_parse.py:89(closegroup) 43 0.000 0.000 0.000 0.000 sre_parse.py:96(__init__) 1 0.008 0.008 0.271 0.271 test3.py:1(<module>) 1 0.000 0.000 0.144 0.144 test3.py:7(main) 1 0.000 0.000 0.000 0.000 urllib.py:101(URLopener) 257 0.001 0.000 0.001 0.000 urllib.py:1148(<genexpr>) 257 0.001 0.000 0.001 0.000 urllib.py:1149(<genexpr>) 1 0.008 0.008 0.011 0.011 urllib.py:23(<module>) 1 0.000 0.000 0.000 0.000 urllib.py:605(FancyURLopener) 1 0.000 0.000 0.000 0.000 urllib.py:835(ftpwrapper) 1 0.000 0.000 0.000 0.000 urllib.py:901(addbase) 1 0.000 0.000 0.000 0.000 urllib.py:930(addclosehook) 1 0.000 0.000 0.000 0.000 urllib.py:945(addinfo) 1 0.000 0.000 0.000 0.000 urllib.py:95(ContentTooShortError) 1 0.000 0.000 0.000 0.000 urllib.py:955(addinfourl) 1 0.000 0.000 0.000 0.000 urlparse.py:120(SplitResult) 1 0.000 0.000 0.000 0.000 urlparse.py:132(ParseResult) 1 0.000 0.000 0.000 0.000 urlparse.py:44(BaseResult) 1 0.000 0.000 0.000 0.000 urlparse.py:5(<module>) 1 0.018 0.018 0.052 0.052 utils.py:5(<module>) 1 0.000 0.000 0.000 0.000 uu.py:31(<module>) 1 0.000 0.000 0.000 0.000 uu.py:39(Error) 2/1 0.001 0.000 0.064 0.064 {__import__} 13 0.000 0.000 0.000 0.000 {_sre.compile} 11 0.000 0.000 0.000 0.000 {_sre.getlower} 1 0.000 0.000 0.000 0.000 {binascii.hexlify} 1014 0.003 0.000 0.003 0.000 {built-in method match} 142 0.005 0.000 0.005 0.000 {built-in method split} 768 0.001 0.000 0.001 0.000 {chr} 2 0.000 0.000 0.000 0.000 {dir} 1 0.001 0.001 0.271 0.271 {execfile} 1 0.000 0.000 0.000 0.000 {function seed at 0x01F6AEB0} 2 0.000 0.000 0.000 0.000 {getattr} 1 0.000 0.000 0.000 0.000 {hasattr} 39 0.000 0.000 0.000 0.000 {isinstance} 1593/1578 0.002 0.000 0.002 0.000 {len} 1 0.000 0.000 0.000 0.000 {math.exp} 2 0.000 0.000 0.000 0.000 {math.log} 1 0.000 0.000 0.000 0.000 {math.sqrt} 12 0.000 0.000 0.000 0.000 {max} 8475 0.012 0.000 0.012 0.000 {method 'append' of 'list' objects} 104 0.000 0.000 0.000 0.000 {method 'count' of 'str' objects} 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 14 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects} 546 0.001 0.000 0.001 0.000 {method 'find' of 'str' objects} 57 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} 1 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} 15 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} 574 0.001 0.000 0.001 0.000 {method 'join' of 'str' objects} 1 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} 2724 0.004 0.000 0.004 0.000 {method 'lower' of 'str' objects} 548 0.001 0.000 0.001 0.000 {method 'lstrip' of 'str' objects} 3386 0.005 0.000 0.005 0.000 {method 'pop' of 'list' objects} 39 0.001 0.000 0.001 0.000 {method 'read' of 'file' objects} 3374 0.007 0.000 0.007 0.000 {method 'readline' of 'file' objects} 9 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} 2 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} 546 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} 65 0.000 0.000 0.000 0.000 {method 'seek' of 'file' objects} 1 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} 80 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} 3897 0.006 0.000 0.006 0.000 {method 'startswith' of 'str' objects} 104 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects} 3412 0.009 0.000 0.009 0.000 {method 'tell' of 'file' objects} 1 0.000 0.000 0.000 0.000 {method 'toordinal' of 'datetime.date' objects} 3 0.000 0.000 0.002 0.001 {method 'update' of 'dict' objects} 98 0.000 0.000 0.000 0.000 {min} 2 0.000 0.000 0.000 0.000 {nt._getfullpathname} 1 0.012 0.012 0.012 0.012 {nt.urandom} 3 0.000 0.000 0.000 0.000 {open} 85 0.000 0.000 0.000 0.000 {ord} 55 0.000 0.000 0.000 0.000 {range} 26 0.000 0.000 0.000 0.000 {setattr} 2 0.000 0.000 0.000 0.000 {time.time} 1 0.000 0.000 0.000 0.000 {zip} from glob import glob import mailbox import email import os import time def main(): fn = r"test.mailbox" start = time.time() frm = open(fn, 'r').read(5) print("Begins with /%s/" % frm) if frm == "From ": print("Processing ...") #MailStore(fn, index) f = os.path.abspath(fn) try: fp = open(f, "r") except IOError: #Index.close() raise mbox = mailbox.mbox(f, email.message_from_file) for msg in mbox: print(msg["message-id"]) print("Duration", time.time()-start) if __name__ == "__main__": main()
From - Tue Jun 29 10:39:23 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.163.2 with SMTP id z2cs288967wek; Tue, 1 Jun 2010 13:43:47 -0700 (PDT) Return-Path: <3AHEFTBQKCcIowwotmitmz10-vwzmxt6owwotm.kwupwtlmv4mjouiqt.kwu@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3AHEFTBQKCcIowwotmitmz10-vwzmxt6owwotm.kwupwtlmv4mjouiqt.kwu@alerts.bounces.google.com designates 10.114.69.11 as permitted sender) client-ip=10.114.69.11; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3AHEFTBQKCcIowwotmitmz10-vwzmxt6owwotm.kwupwtlmv4mjouiqt.kwu@alerts.bounces.google.com designates 10.114.69.11 as permitted sender) smtp.mail=3AHEFTBQKCcIowwotmitmz10-vwzmxt6owwotm.kwupwtlmv4mjouiqt.kwu@alerts.bounces.google.com; dkim=pass header.i=3AHEFTBQKCcIowwotmitmz10-vwzmxt6owwotm.kwupwtlmv4mjouiqt.kwu@alerts.bounces.google.com Received: from mr.google.com ([10.114.69.11]) by 10.114.69.11 with SMTP id r11mr3023739waa.47.1275425024326 (num_hops = 1); Tue, 01 Jun 2010 13:43:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=eZ7N8xTR4M+g5oU+0waWqcrjwvRnqnpz0UFLqndJXj8=; b=QrKlREWYYTmZlRp/3cWW0aDlvZlmw50U10NgBBQ+9OHkuYuHRcRKc2QassiDz+gjSs onK2ZUwQbFvU8Q+eKgiw== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=qogvPPtHKhprOgwF/krmlavB5q94S+6cek+relbDJ2nQ7r+V5QjkvN9FUCizD4Iqmi bToT7AhurIaG79aYMtjA== MIME-Version: 1.0 Received: by 10.114.69.11 with SMTP id r11mr2516226waa.47.1275425024296; Tue, 01 Jun 2010 13:43:44 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <00504502dc1082c9e00487fe077f@google.com> Date: Tue, 01 Jun 2010 20:43:44 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.nbcdfw.com/around-town/shopping/Dolly-Pythons-New-Digs-95307679.h= tml&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1275425024:&cd=3DlzYVw= ss_DnA&usg=3DAFQjCNHE3Ix-CeIPQY6NNVBYHBvE45lWew"> Dolly <b>Python's</b> New Digs</a><br> <font size=3D"-1"><font color=3D"#666666">NBC Dallas-Fort Worth</font><br> By LISA PETTY Take a short ride East on Haskell from 75 to one of Dallas= 9; most notable vintage shops, Dolly <b>Python</b>. Owner Gretchen Bell'= ;s treasure chest of <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.nbcdfw.com/around-town= /shopping/Dolly-Pythons-New-Digs-95307679.html%26hl%3Den&ct=3Dga&ca= d=3D:s1:f2:v0:i0:lr:e0:p0:t1275425024:&cd=3DlzYVwss_DnA&usg=3DAFQjC= NHaQU-40bYnPf8MuV9ImHgVmuQKJw" title=3D"http://news.google.com/news/story?n= cl=3Dhttp://www.nbcdfw.com/around-town/shopping/Dolly-Pythons-New-Digs-9530= 7679.html&hl=3Den">See all stories on this topic</a></font></td></tr><t= r><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://digi= hub.brisbanetimes.com.au/node/1701&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e1= :p1:t1275425024:&cd=3DlzYVwss_DnA&usg=3DAFQjCNFoqHtXdWGQPUfpj9T5tF7= viTfsdA"><img border=3D"0" src=3D"http://nt2.ggpht.com/news/tbn/piqRFC3d73M= J" alt=3D"" width=3D"60" height=3D"80"></a></td></tr><tr><td align=3D"cente= r"><font size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp= ://digihub.brisbanetimes.com.au/node/1701&ct=3Dga&cad=3D:s1:f2:v0:i= 0:lic:e1:p1:t1275425024:&cd=3DlzYVwss_DnA&usg=3DAFQjCNFoqHtXdWGQPUf= pj9T5tF7viTfsdA">Brisbane Times</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://digihub.brisbanetimes.com.au/node/1701&ct=3Dga&cad=3D:s1:f2:v= 0:i0:lt:e1:p1:t1275425024:&cd=3DlzYVwss_DnA&usg=3DAFQjCNFoqHtXdWGQP= Ufpj9T5tF7viTfsdA"> Can you survive getting "shaped"?</a><br> <font size=3D"-1"><font color=3D"#666666">Brisbane Times</font><br> About now I can hear <b>Python</b> fans calling out "60 Kbps - luxury!= When I was a boy we used to live in one room, all twenty-six of us, no fur= niture, <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://digihub.brisbanetimes.com.= au/node/1701%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1275425= 024:&cd=3DlzYVwss_DnA&usg=3DAFQjCNHAbUFCoFCjw7DfS7k_k171pFsbNw" tit= le=3D"http://news.google.com/news/story?ncl=3Dhttp://digihub.brisbanetimes.= com.au/node/1701&hl=3Den">See all stories on this topic</a></font></td>= </tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.victoriaadvocate.com/news/2010/jun/01/bc-hopper-appreciationtb-_-= entertainment/%3Fentertainment%26national-entertainment&ct=3Dga&cad= =3D:s1:f2:v0:i0:lt:e2:p2:t1275425024:&cd=3DlzYVwss_DnA&usg=3DAFQjCN= HWR4oyd080fU8tIj5ifC4ohaOr8Q"> Dennis Hopper relished the dangerous</a><br> <font size=3D"-1"><font color=3D"#666666">Victoria Advocate</font><br> As Frank Booth, the worst father figure a boy detective ever had, Hopper sl= ithered like a <b>python</b> through the nightmare that is David Lynch'= s "Blue Velvet. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.victoriaadvocate.com/n= ews/2010/jun/01/bc-hopper-appreciationtb-_-entertainment/%253Fentertainment= %2526national-entertainment%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr= :e2:p2:t1275425024:&cd=3DlzYVwss_DnA&usg=3DAFQjCNHf3u7enLkqxseIOEYM= 8sQ5k8vu6g" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.vic= toriaadvocate.com/news/2010/jun/01/bc-hopper-appreciationtb-_-entertainment= /%3Fentertainment%26national-entertainment&hl=3Den">See all stories on = this topic</a></font></td></tr></table><p><hr noshade size=3D1><font size= =3D"-1">Tip: Use site restrict in your query to search within a site (site:= nytimes.com or site:.edu).</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DlzYV= wss_DnA&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DlzYVwss_DnA&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DlzYVwss_DnA&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.163.2 with SMTP id z2cs346405wek; Wed, 2 Jun 2010 13:40:16 -0700 (PDT) Return-Path: <3rMEGTBQKCcAmuumrkgrkxzy-tuxkvr4muumrk.iusnurjkt2khmsgor.ius@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3rMEGTBQKCcAmuumrkgrkxzy-tuxkvr4muumrk.iusnurjkt2khmsgor.ius@alerts.bounces.google.com designates 10.143.20.42 as permitted sender) client-ip=10.143.20.42; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3rMEGTBQKCcAmuumrkgrkxzy-tuxkvr4muumrk.iusnurjkt2khmsgor.ius@alerts.bounces.google.com designates 10.143.20.42 as permitted sender) smtp.mail=3rMEGTBQKCcAmuumrkgrkxzy-tuxkvr4muumrk.iusnurjkt2khmsgor.ius@alerts.bounces.google.com; dkim=pass header.i=3rMEGTBQKCcAmuumrkgrkxzy-tuxkvr4muumrk.iusnurjkt2khmsgor.ius@alerts.bounces.google.com Received: from mr.google.com ([10.143.20.42]) by 10.143.20.42 with SMTP id x42mr2823424wfi.17.1275511212420 (num_hops = 1); Wed, 02 Jun 2010 13:40:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=vz++wbBeOOodf7gBtD8eatxtnQDZDRycaYwXj86a+U8=; b=XY/sRo4xp7nMsOo5Gfb5xbYmDGjUJTA6GUgcqdBQewRfwdTh/wMZ+8AFOXUySOELfl QYt/5kmhaI8WE3VyCyQQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=LrutUSPBbXLsGHkmyn5yCwtV2YXcqSd1QKydJKSZV7zaAF81hrx2oNJ3Tg6/ghm92R 2LV1szvYjzikUlg1Dbtg== MIME-Version: 1.0 Received: by 10.143.20.42 with SMTP id x42mr2342355wfi.17.1275511212398; Wed, 02 Jun 2010 13:40:12 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <00504502c603b8d7cc048812181a@google.com> Date: Wed, 02 Jun 2010 20:40:12 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.h-online.com/open/news/item/EuroPython-2010-Conference-schedule-a= nnounced-1014459.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t12755112= 12:&cd=3DSy1GNu87-U4&usg=3DAFQjCNFb3U-bGUKYBBsaIT33q1k4tc9pug"> EuroPython 2010: Conference schedule announced</a><br> <font size=3D"-1"><font color=3D"#666666">The H</font><br> The EuroPython organisers have published the conference schedule for this y= ear's European <b>Python</b> Conference taking place from the 17th to t= he 24th of July <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.h-online.com/open/news= /item/EuroPython-2010-Conference-schedule-announced-1014459.html%26hl%3Den&= amp;ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1275511212:&cd=3DSy1GNu87-= U4&usg=3DAFQjCNEaB7NV3FosFGpgfMMJY5K28vLtTg" title=3D"http://news.googl= e.com/news/story?ncl=3Dhttp://www.h-online.com/open/news/item/EuroPython-20= 10-Conference-schedule-announced-1014459.html&hl=3Den">See all stories = on this topic</a></font></td></tr></table><p><hr noshade size=3D1><font siz= e=3D"-1">Tip: Use a plus sign (+) to match a term in your query exactly as = is.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DSy1G= Nu87-U4&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DSy1GNu87-U4&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DSy1GNu87-U4&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.163.2 with SMTP id z2cs35121wek; Thu, 3 Jun 2010 13:41:27 -0700 (PDT) Return-Path: <3cxMITBQKCdoCKKCHA6HANPO-JKNALHUCKKCHA.8KIDKH9AJSA7CI6EH.8KI@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3cxMITBQKCdoCKKCHA6HANPO-JKNALHUCKKCHA.8KIDKH9AJSA7CI6EH.8KI@alerts.bounces.google.com designates 10.115.2.12 as permitted sender) client-ip=10.115.2.12; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3cxMITBQKCdoCKKCHA6HANPO-JKNALHUCKKCHA.8KIDKH9AJSA7CI6EH.8KI@alerts.bounces.google.com designates 10.115.2.12 as permitted sender) smtp.mail=3cxMITBQKCdoCKKCHA6HANPO-JKNALHUCKKCHA.8KIDKH9AJSA7CI6EH.8KI@alerts.bounces.google.com; dkim=pass header.i=3cxMITBQKCdoCKKCHA6HANPO-JKNALHUCKKCHA.8KIDKH9AJSA7CI6EH.8KI@alerts.bounces.google.com Received: from mr.google.com ([10.115.2.12]) by 10.115.2.12 with SMTP id e12mr4065506wai.0.1275597683178 (num_hops = 1); Thu, 03 Jun 2010 13:41:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=fWxNMzGDlezxnse3GFkmpihUpUCT4QdKApNdgZ4jevk=; b=AFF3zmEmsbykCXoWeYqlZ6U8E4IS80f6o5f2xaJHGlQUXTZ1TNzbVJgzX6a35NnqiD xjycsF6yfSG76cUCo1YQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=BFcCDCVOd5WzA4zr0EU4LugXxu5hbU86jTaJFDB5xCZfER0SiH6o0c9w479qOS/xJ+ GxRRYkrauZBO9ItqsRhA== MIME-Version: 1.0 Received: by 10.115.2.12 with SMTP id e12mr3353455wai.0.1275597683110; Thu, 03 Jun 2010 13:41:23 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e64cafb6c733600488263adb@google.com> Date: Thu, 03 Jun 2010 20:41:23 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.thehollywoodnews.com/2010/06/03/randy-newman-gets-honoured-with-w= alk-of-fame-star/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1275597683:&= amp;cd=3DKJw0B8B3Kj0&usg=3DAFQjCNEgnAFB3uWIXEGdHpQ0fZlKc5ZjRg"> Randy Newman gets honoured with Walk Of Fame star</a><br> <font size=3D"-1"><font color=3D"#666666">Hollywood News</font><br> Newman was given 2411st star on Hollywood Boulevard, with Monthy <b>Python<= /b> star Eric Idle and Pixar's John Lasseter looking on.<br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.thehollywoodnews.com/2= 010/06/03/randy-newman-gets-honoured-with-walk-of-fame-star/%26hl%3Den&= ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1275597683:&cd=3DKJw0B8B3Kj0&a= mp;usg=3DAFQjCNHqVGNGRMTs1fgiTH-X1NLNkHNfZA" title=3D"http://news.google.co= m/news/story?ncl=3Dhttp://www.thehollywoodnews.com/2010/06/03/randy-newman-= gets-honoured-with-walk-of-fame-star/&hl=3Den">See all stories on this = topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.tomsguide.com/us/Smokescreen-Flash-iPod-iPhone-HTML5,news-6962.ht= ml&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1275597683:&cd=3DKJw0B8= B3Kj0&usg=3DAFQjCNFexlYfhWydk2yiRdzErk1s9CQ4lg"> Smokescreen Renders Flash in JavaScript</a><br> <font size=3D"-1"><font color=3D"#666666">Tom's Guide</font><br> While it's an exciting development, PC World cites Simon Willison, co-c= reator of Django, a framework for building Web applications in the <b>Pytho= n</b> language, <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.tomsguide.com/us/Smoke= screen-Flash-iPod-iPhone-HTML5,news-6962.html%26hl%3Den&ct=3Dga&cad= =3D:s1:f2:v0:i0:lr:e1:p1:t1275597683:&cd=3DKJw0B8B3Kj0&usg=3DAFQjCN= HdDN1ST1MV9W0e3MhyL71s702YGQ" title=3D"http://news.google.com/news/story?nc= l=3Dhttp://www.tomsguide.com/us/Smokescreen-Flash-iPod-iPhone-HTML5,news-69= 62.html&hl=3Den">See all stories on this topic</a></font></td></tr></ta= ble><p><hr noshade size=3D1><font size=3D"-1">Tip: Use a minus sign (-) in = front of terms in your query that you want to exclude.</font><p><font size= =3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DKJw0= B8B3Kj0&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DKJw0B8B3Kj0&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DKJw0B8B3Kj0&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.163.2 with SMTP id z2cs86880wek; Fri, 4 Jun 2010 13:43:51 -0700 (PDT) Return-Path: <3g2UJTBQKCT4lttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3g2UJTBQKCT4lttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com designates 10.141.214.27 as permitted sender) client-ip=10.141.214.27; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3g2UJTBQKCT4lttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com designates 10.141.214.27 as permitted sender) smtp.mail=3g2UJTBQKCT4lttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com; dkim=pass header.i=3g2UJTBQKCT4lttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com Received: from mr.google.com ([10.141.214.27]) by 10.141.214.27 with SMTP id r27mr4809321rvq.34.1275684227633 (num_hops = 1); Fri, 04 Jun 2010 13:43:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=U+vQX+XS5c2qxtPyhpjM+PnR/EhWYyam7jsCahJcYXk=; b=CCCLMErHelqjCAz42XnqYy8EQfKUh9sn9FotD9zfZ3LlS9ARk7DxJoK6VRwbDe7DOt cjwnWZ8aTW7QYNjc66sA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=j59oJiBaW8de7lxoBKLfaso9u+NmjZaRtsogTVGFPo+u6i0lmi0pwoFV0AjMRXzE/7 HmfRQfKSRwoAbnj3jb5Q== MIME-Version: 1.0 Received: by 10.141.214.27 with SMTP id r27mr3965666rvq.34.1275684227612; Fri, 04 Jun 2010 13:43:47 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cd1b66e3b81f104883a615d@google.com> Date: Fri, 04 Jun 2010 20:43:47 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.miamiherald.com/2010/06/03/1662386/crist-signs-fla-python-ban-eph= edrine.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1275684227:&cd= =3DKjq-zXpNL7g&usg=3DAFQjCNHLzbskFkYJqYEQbE7Wu5vv9aCp_g"> Crist signs Fla. <b>python</b> ban, ephedrine tracking</a><br> <font size=3D"-1"><font color=3D"#666666">MiamiHerald.com</font><br> AP TALLAHASSEE, Fla. -- Gov. Charlie Crist has signed bills banning the own= ership of Burmese pythons and other reptiles and requiring tracking of <b>.= ..</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.miamiherald.com/2010/0= 6/03/1662386/crist-signs-fla-python-ban-ephedrine.html%26hl%3Den&ct=3Dg= a&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1275684227:&cd=3DKjq-zXpNL7g&usg= =3DAFQjCNGHueMU7iUGtOEhd2mvoHIaCYrcPw" title=3D"http://news.google.com/news= /story?ncl=3Dhttp://www.miamiherald.com/2010/06/03/1662386/crist-signs-fla-= python-ban-ephedrine.html&hl=3Den">See all stories on this topic</a></f= ont></td></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= softsailor.com/downloads/29300-download-python-for-s60-pys60-1-4-5-2-0-0-fr= ee.html&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e1:p1:t1275684227:&cd=3DK= jq-zXpNL7g&usg=3DAFQjCNEi3FXZS6F0w0EFrK8PzYCZxEjvyg"><img border=3D"0" = src=3D"http://nt1.ggpht.com/news/tbn/OecoQPnv-b0J" alt=3D"" width=3D"65" he= ight=3D"80"></a></td></tr><tr><td align=3D"center"><font size=3D-2><a href= =3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.softsailor.com/down= loads/29300-download-python-for-s60-pys60-1-4-5-2-0-0-free.html&ct=3Dga= &cad=3D:s1:f2:v0:i0:lic:e1:p1:t1275684227:&cd=3DKjq-zXpNL7g&usg= =3DAFQjCNEi3FXZS6F0w0EFrK8PzYCZxEjvyg">Soft Sailor (blog)</a></font></td></= tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.softsailor.com/downloads/29300-download-python-for-s60-pys60-1-4-= 5-2-0-0-free.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1275684227:&= amp;cd=3DKjq-zXpNL7g&usg=3DAFQjCNEi3FXZS6F0w0EFrK8PzYCZxEjvyg"> Download <b>Python</b> for S60 (PyS60) 1.4.5 / 2.0.0 Free</a><br> <font size=3D"-1"><font color=3D"#666666">Soft Sailor (blog)</font><br> <b>Python</b> for S60 is a small yet powerful and easy-to-use application t= hat brings the great features and productivity of the <b>Python</b> program= ming language to the <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.softsailor.com/downloa= ds/29300-download-python-for-s60-pys60-1-4-5-2-0-0-free.html%26hl%3Den&= ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1275684227:&cd=3DKjq-zXpNL7g&a= mp;usg=3DAFQjCNGIV0nbNnZpDuOdRMPXfCttP4N6YQ" title=3D"http://news.google.co= m/news/story?ncl=3Dhttp://www.softsailor.com/downloads/29300-download-pytho= n-for-s60-pys60-1-4-5-2-0-0-free.html&hl=3Den">See all stories on this = topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.h-online.com/open/news/item/Pardus-Linux-2009-2-arrives-1015941.h= tml&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1275684227:&cd=3DKjq-z= XpNL7g&usg=3DAFQjCNHL8jWhOdl1HkHj97zWWZTwFBCNGQ"> Pardus Linux 2009.2 arrives</a><br> <font size=3D"-1"><font color=3D"#666666">The H</font><br> Other changes include updates to the built-in themes, Qt 4.6.2 and <b>Pytho= n</b> 2.6.5. More details about the release can be found in the release not= es. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.h-online.com/open/news= /item/Pardus-Linux-2009-2-arrives-1015941.html%26hl%3Den&ct=3Dga&ca= d=3D:s1:f2:v0:i0:lr:e2:p2:t1275684227:&cd=3DKjq-zXpNL7g&usg=3DAFQjC= NHcecxf33j1CsLUh39kI2qRod9OLw" title=3D"http://news.google.com/news/story?n= cl=3Dhttp://www.h-online.com/open/news/item/Pardus-Linux-2009-2-arrives-101= 5941.html&hl=3Den">See all stories on this topic</a></font></td></tr><t= r><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= thisislondon.co.uk/lifestyle/article-23841486-miss-goldfinger---bronwyn-cos= graves-love-affair-with-gold.do&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e3:p3= :t1275684227:&cd=3DKjq-zXpNL7g&usg=3DAFQjCNEumNC9j3HtgTtqjFlPCbdSnv= SokA"><img border=3D"0" src=3D"http://nt2.ggpht.com/news/tbn/8kEZAMKg9G8J" = alt=3D"" width=3D"61" height=3D"80"></a></td></tr><tr><td align=3D"center">= <font size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://= www.thisislondon.co.uk/lifestyle/article-23841486-miss-goldfinger---bronwyn= -cosgraves-love-affair-with-gold.do&ct=3Dga&cad=3D:s1:f2:v0:i0:lic:= e3:p3:t1275684227:&cd=3DKjq-zXpNL7g&usg=3DAFQjCNEumNC9j3HtgTtqjFlPC= bdSnvSokA">This is London</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.thisislondon.co.uk/lifestyle/article-23841486-miss-goldfinger---b= ronwyn-cosgraves-love-affair-with-gold.do&ct=3Dga&cad=3D:s1:f2:v0:i= 0:lt:e3:p3:t1275684227:&cd=3DKjq-zXpNL7g&usg=3DAFQjCNEumNC9j3HtgTtq= jFlPCbdSnvSokA"> Miss Goldfinger - Bronwyn Cosgrave's love affair with gold</a><br> <font size=3D"-1"><font color=3D"#666666">This is London</font><br> I first spied the gold <b>python</b> Sergio Rossi evening bag I take everyw= here with me in the Gritti Palace hotel in Venice and, overcome with desire= , <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.thisislondon.co.uk/lif= estyle/article-23841486-miss-goldfinger---bronwyn-cosgraves-love-affair-wit= h-gold.do%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e3:p3:t1275684227= :&cd=3DKjq-zXpNL7g&usg=3DAFQjCNGDDBxSSU3Z27hjFK1UDsnVTyUOPQ" title= =3D"http://news.google.com/news/story?ncl=3Dhttp://www.thisislondon.co.uk/l= ifestyle/article-23841486-miss-goldfinger---bronwyn-cosgraves-love-affair-w= ith-gold.do&hl=3Den">See all stories on this topic</a></font></td></tr>= </table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use a plus sign (+) = to match a term in your query exactly as is.</font><p><font size=3D"-1"> <n= obr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DKjq-= zXpNL7g&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DKjq-zXpNL7g&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DKjq-zXpNL7g&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.163.2 with SMTP id z2cs120050wek; Sat, 5 Jun 2010 13:41:00 -0700 (PDT) Return-Path: <3WrYKTBQKCWcLTTLQJFQJWYX-STWJUQdLTTLQJ.HTRMTQIJSbJGLRFNQ.HTR@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3WrYKTBQKCWcLTTLQJFQJWYX-STWJUQdLTTLQJ.HTRMTQIJSbJGLRFNQ.HTR@alerts.bounces.google.com designates 10.142.74.20 as permitted sender) client-ip=10.142.74.20; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3WrYKTBQKCWcLTTLQJFQJWYX-STWJUQdLTTLQJ.HTRMTQIJSbJGLRFNQ.HTR@alerts.bounces.google.com designates 10.142.74.20 as permitted sender) smtp.mail=3WrYKTBQKCWcLTTLQJFQJWYX-STWJUQdLTTLQJ.HTRMTQIJSbJGLRFNQ.HTR@alerts.bounces.google.com; dkim=pass header.i=3WrYKTBQKCWcLTTLQJFQJWYX-STWJUQdLTTLQJ.HTRMTQIJSbJGLRFNQ.HTR@alerts.bounces.google.com Received: from mr.google.com ([10.142.74.20]) by 10.142.74.20 with SMTP id w20mr4846880wfa.49.1275770458418 (num_hops = 1); Sat, 05 Jun 2010 13:40:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=CrwOsxy5tRMX3NIz1QgWVPs2/kPs9IQFJnALfaa6YPA=; b=ehuGgNe/Tz3AQq7YZe2845yU7+7oX30/UgGqWCBhYiyVYKoiilp/L4JPEZ1X96xUSe Q/Hgrk9Rsc8VaiyR6HUA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=yUSRbj59LdGSMn7nGZrtSFKEFJrtTIuoDwvkvTrTbezRerUiAC8Af6qlN/milOI085 Pb2YzjyaxFeAZ1/382gw== MIME-Version: 1.0 Received: by 10.142.74.20 with SMTP id w20mr4045096wfa.49.1275770458398; Sat, 05 Jun 2010 13:40:58 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <001636e90cfdfce16004884e74e8@google.com> Date: Sat, 05 Jun 2010 20:40:58 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= cfnews13.com/News/Local/2010/6/4/python_ban_rattles_reptile_lovers.html&= ;ct=3Dga&cad=3D:s1:f2:v0:i0:li:e0:p0:t1275770458:&cd=3DDZMFRLF9SzE&= amp;usg=3DAFQjCNFUehtbyj8ZGzr6iqfIIhl0HqlO5w"><img border=3D"0" src=3D"http= ://nt3.ggpht.com/news/tbn/z0jAujbJ0rcJ" alt=3D"" width=3D"80" height=3D"54"=
</a></td></tr><tr><td align=3D"center"><font size=3D-2><a href=3D"http://w= ww.google.com/url?sa=3DX&q=3Dhttp://www.cfnews13.com/News/Local/2010/6/= 4/python_ban_rattles_reptile_lovers.html&ct=3Dga&cad=3D:s1:f2:v0:i0= :lic:e0:p0:t1275770458:&cd=3DDZMFRLF9SzE&usg=3DAFQjCNFUehtbyj8ZGzr6= iqfIIhl0HqlO5w">Central Florida News 13</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.cfnews13.com/News/Local/2010/6/4/python_ban_rattles_reptile_lover= s.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1275770458:&cd=3DDZ= MFRLF9SzE&usg=3DAFQjCNFUehtbyj8ZGzr6iqfIIhl0HqlO5w"> <b>Python</b> Ban Rattles Reptile Lovers</a><br> <font size=3D"-1"><font color=3D"#666666">Central Florida News 13</font><br=
<b>...</b> said politicians used the death of a 2-year-old Sumter County gi= rl, who was killed by a <b>python</b>, as a scare tactic to push the ban bi= g snakes. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.cfnews13.com/News/Loca= l/2010/6/4/python_ban_rattles_reptile_lovers.html%26hl%3Den&ct=3Dga&= ;cad=3D:s1:f2:v0:i0:lr:e0:p0:t1275770458:&cd=3DDZMFRLF9SzE&usg=3DAF= QjCNEkUzd1jzruqsaup-KYcA4OUOg_0w" title=3D"http://news.google.com/news/stor= y?ncl=3Dhttp://www.cfnews13.com/News/Local/2010/6/4/python_ban_rattles_rept= ile_lovers.html&hl=3Den">See all stories on this topic</a></font></td><= /tr></table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use a minus sign= (-) in front of terms in your query that you want to exclude.</font><p><fo= nt size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DDZMF= RLF9SzE&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DDZMFRLF9SzE&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DDZMFRLF9SzE&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs44721wel; Mon, 7 Jun 2010 13:42:56 -0700 (PDT) Return-Path: <3zlkNTBQKCYElttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3zlkNTBQKCYElttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com designates 10.142.202.11 as permitted sender) client-ip=10.142.202.11; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3zlkNTBQKCYElttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com designates 10.142.202.11 as permitted sender) smtp.mail=3zlkNTBQKCYElttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com; dkim=pass header.i=3zlkNTBQKCYElttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com Received: from mr.google.com ([10.142.202.11]) by 10.142.202.11 with SMTP id z11mr846181wff.47.1275943374261 (num_hops = 1); Mon, 07 Jun 2010 13:42:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=bVeZUtos6KFlPjv2XonUEvsigenwoDT1BPx/X2+goEA=; b=jJvgzXsr6WB3WWl5g+zXcZ42qsJ7v31v0L3e/fNuS3ifK8o8WkL3h17H4w3UbqkiTz +zHYtS77kgoEM7mSvIVQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=c/ukAJ33LdXfpccxmHURORHslone6GFTuzW1rqmN4rmzS+jUj/SgAI4YT4HV3s7C9s tBWTZBIQ5B0AairNEtYw== MIME-Version: 1.0 Received: by 10.142.202.11 with SMTP id z11mr710306wff.47.1275943374212; Mon, 07 Jun 2010 13:42:54 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cd2de4a92ced8048876b718@google.com> Date: Mon, 07 Jun 2010 20:42:54 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.handbago.com/category/tags/fall-2010-trends&ct=3Dga&cad= =3D:s1:f2:v0:i0:lt:e0:p0:t1275943374:&cd=3Dn8Ce4yJE7HU&usg=3DAFQjCN= H2UnMIKU5vyZ2gwhV1LE6XFfQxEg"> fall 2010 trends</a><br> <font size=3D"-1"><font color=3D"#666666">Handbago (blog)</font><br> Enter the Marc Jacobs Stardust Stam <b>Python</b> Embossed Quilted Shoulder= Bag. If you've been paying attention to Fall trends, then you'd kn= ow red and exotic <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.handbago.com/category/= tags/fall-2010-trends%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0= :t1275943374:&cd=3Dn8Ce4yJE7HU&usg=3DAFQjCNF_VE-p7WR5P0CAUqk684jxzE= nIMQ" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.handbago.= com/category/tags/fall-2010-trends&hl=3Den">See all stories on this top= ic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.allaboutsymbian.com/news/item/11638_How_are_the_Symbian_Incubator= _.php&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1275943374:&cd=3Dn8C= e4yJE7HU&usg=3DAFQjCNG7QH90Cx5WqK49xVy_qhIP8sl5UQ"> How are the Symbian Incubator Projects coming along?</a><br> <font size=3D"-1"><font color=3D"#666666">All About Symbian</font><br> Coming along nicely are the Wild Ducks handset, GCC Compilation of Symbian = ^3 and <b>Python</b>. Wild Ducks, which is all about enabling you to build = your own <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.allaboutsymbian.com/ne= ws/item/11638_How_are_the_Symbian_Incubator_.php%26hl%3Den&ct=3Dga&= cad=3D:s1:f2:v0:i0:lr:e1:p1:t1275943374:&cd=3Dn8Ce4yJE7HU&usg=3DAFQ= jCNHVTsjqVJs4z3gXzYrsd_eAHuE5GA" title=3D"http://news.google.com/news/story= ?ncl=3Dhttp://www.allaboutsymbian.com/news/item/11638_How_are_the_Symbian_I= ncubator_.php&hl=3Den">See all stories on this topic</a></font></td></t= r></table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use site restrict = in your query to search within a site (site:nytimes.com or site:.edu).</fon= t><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3Dn8Ce= 4yJE7HU&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3Dn8Ce4yJE7HU&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3Dn8Ce4yJE7HU&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs98761wel; Tue, 8 Jun 2010 13:47:44 -0700 (PDT) Return-Path: <3bawOTBQKCXQYggYdWSdWjlk-fgjWhdqYggYdW.UgeZgdVWfoWTYeSad.Uge@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3bawOTBQKCXQYggYdWSdWjlk-fgjWhdqYggYdW.UgeZgdVWfoWTYeSad.Uge@alerts.bounces.google.com designates 10.114.249.31 as permitted sender) client-ip=10.114.249.31; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3bawOTBQKCXQYggYdWSdWjlk-fgjWhdqYggYdW.UgeZgdVWfoWTYeSad.Uge@alerts.bounces.google.com designates 10.114.249.31 as permitted sender) smtp.mail=3bawOTBQKCXQYggYdWSdWjlk-fgjWhdqYggYdW.UgeZgdVWfoWTYeSad.Uge@alerts.bounces.google.com; dkim=pass header.i=3bawOTBQKCXQYggYdWSdWjlk-fgjWhdqYggYdW.UgeZgdVWfoWTYeSad.Uge@alerts.bounces.google.com Received: from mr.google.com ([10.114.249.31]) by 10.114.249.31 with SMTP id w31mr1850963wah.7.1276030061808 (num_hops = 1); Tue, 08 Jun 2010 13:47:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=UQDJSHKV40nJvRJ2RsLaOJi+ip/CP2HIRDRCagV6E4A=; b=xNZSLUrKyTVBPygqZwamvCMuOjgIow3AcN3yAKUoQmMwzhCvarg2Ebjy++u24lJLya NbTXLepFTsBcitQVUPRA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=vMdW7zQwjMau0z+qEOvC2B7JZadtMTar2vlCP8GRFJ5MOOMv1lMOstUmbFDYuVaFkN CQFzOjfndXQJGRGVfI4Q== MIME-Version: 1.0 Received: by 10.114.249.31 with SMTP id w31mr1552321wah.7.1276030061485; Tue, 08 Jun 2010 13:47:41 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e64caf88899df404888ae6b1@google.com> Date: Tue, 08 Jun 2010 20:47:41 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.h-online.com/open/news/item/Python-2-7-release-candidate-availabl= e-1017383.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1276030061:&= ;cd=3D5_gkRUDjTxc&usg=3DAFQjCNEvbC0DpoNRLA5bFU6tzpU2ReSmCg"> <b>Python</b> 2.7 release candidate available</a><br> <font size=3D"-1"><font color=3D"#666666">The H</font><br> The <b>Python</b> developers have issued he first release candidate of <b>P= ython</b> 2.7. As the final release approaches, the fixes to the interprete= r are relatively <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.h-online.com/open/news= /item/Python-2-7-release-candidate-available-1017383.html%26hl%3Den&ct= =3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276030061:&cd=3D5_gkRUDjTxc&= ;usg=3DAFQjCNFCXLBnLKL2UGPfnzVWosk1RSg4Mg" title=3D"http://news.google.com/= news/story?ncl=3Dhttp://www.h-online.com/open/news/item/Python-2-7-release-= candidate-available-1017383.html&hl=3Den">See all stories on this topic= </a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.vanguardngr.com/2010/06/08/nitda-supports-pat-nigeria-event/&= ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1276030061:&cd=3D5_gkRUDjTxc&a= mp;usg=3DAFQjCNHZRlbF2M-zuclTJ4nyY8vuhu2Qqg"> NITDA supports PAT Nigeria event</a><br> <font size=3D"-1"><font color=3D"#666666">Vanguard</font><br> By Charles Mgbolu The National Information Technology Development Agency (N= ITDA) is supporting the Nigerian stop of the <b>Python</b> Africa Tour as t= he first of a <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.vanguardngr.com/2010/0= 6/08/nitda-supports-pat-nigeria-event/%26hl%3Den&ct=3Dga&cad=3D:s1:= f2:v0:i0:lr:e1:p1:t1276030061:&cd=3D5_gkRUDjTxc&usg=3DAFQjCNGPIhudf= _kjMPTtYpymqLakvY7zEw" title=3D"http://news.google.com/news/story?ncl=3Dhtt= p://www.vanguardngr.com/2010/06/08/nitda-supports-pat-nigeria-event/&hl= =3Den">See all stories on this topic</a></font></td></tr><tr><td style=3D"p= adding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.allfacebook.com/2010/06/facebook-offers-open-source-insights-code= -for-developers/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1276030061:&a= mp;cd=3D5_gkRUDjTxc&usg=3DAFQjCNEBWSIK-KNgy2WHGmuVuJ6AA7ujdw"> Facebook Open Sources Insights Script For Developers</a><br> <font size=3D"-1"><font color=3D"#666666">AllFacebook (blog)</font><br> It's a short <b>Python</b> script which lets a user download the analyt= ics from their Pages, applications, and websites into a CSV file. It's = pretty basic, but it <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.allfacebook.com/2010/0= 6/facebook-offers-open-source-insights-code-for-developers/%26hl%3Den&c= t=3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1276030061:&cd=3D5_gkRUDjTxc&am= p;usg=3DAFQjCNHrSRLBP_dqk0wL3sfS3PG0LBuNIQ" title=3D"http://news.google.com= /news/story?ncl=3Dhttp://www.allfacebook.com/2010/06/facebook-offers-open-s= ource-insights-code-for-developers/&hl=3Den">See all stories on this to= pic</a></font></td></tr></table><p><hr noshade size=3D1><font size=3D"-1">T= ip: Use quotes ("like this") around a set of words in your query to match t= hem exactly.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D5_gk= RUDjTxc&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D5_gkRUDjTxc&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D5_gkRUDjTxc&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs163513wel; Wed, 9 Jun 2010 13:42:33 -0700 (PDT) Return-Path: <3tfwPTBQKCQ4u22uzsozs576-125s3zCu22uzs.q20v2zrs1Aspu0owz.q20@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3tfwPTBQKCQ4u22uzsozs576-125s3zCu22uzs.q20v2zrs1Aspu0owz.q20@alerts.bounces.google.com designates 10.114.187.12 as permitted sender) client-ip=10.114.187.12; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3tfwPTBQKCQ4u22uzsozs576-125s3zCu22uzs.q20v2zrs1Aspu0owz.q20@alerts.bounces.google.com designates 10.114.187.12 as permitted sender) smtp.mail=3tfwPTBQKCQ4u22uzsozs576-125s3zCu22uzs.q20v2zrs1Aspu0owz.q20@alerts.bounces.google.com; dkim=pass header.i=3tfwPTBQKCQ4u22uzsozs576-125s3zCu22uzs.q20v2zrs1Aspu0owz.q20@alerts.bounces.google.com Received: from mr.google.com ([10.114.187.12]) by 10.114.187.12 with SMTP id k12mr2603828waf.28.1276116149434 (num_hops = 1); Wed, 09 Jun 2010 13:42:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=XsefLkaN2U2ybiFPySmb7FPnaEtVnxO/4zfoIr8F6/Q=; b=sfchKI8RbDwjLdLWG1sDJcti16kXmVfuiw9bAomXqZlOuBE4EG+Tz8EZvlVvD6aiqK G6L7j6Hqo6FP2W5MlE8A== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=H4+oHaL6AILtKGXFn6OyK25TQt01yUzWM1yMX768+I8DpaZ9jNHPp1vvqi2eXTQ8v9 VhZVpQhn/ZiZXkXYBdNQ== MIME-Version: 1.0 Received: by 10.114.187.12 with SMTP id k12mr2175318waf.28.1276116149406; Wed, 09 Jun 2010 13:42:29 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e64ccc48c70b2804889ef11d@google.com> Date: Wed, 09 Jun 2010 20:42:29 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://webworkerdaily.com/2010/06/09/quicklycode-a-collection-of-useful-free= -cheat-sheets/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1276116149:&= ;cd=3DacSBk6TRzjk&usg=3DAFQjCNG-iCuQ-4GFH6b6nc_u9UWkAbP_uw"> QuicklyCode: A Collection of Useful Free Cheat Sheets</a><br> <font size=3D"-1"><font color=3D"#666666">WebWorkerDaily (blog)</font><br> Although the focus is primarily on programing (it has a staggering array of= cheat sheets for programming languages like Java, C, PHP, MySQL, <b>Python= </b> and many <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://webworkerdaily.com/2010/06= /09/quicklycode-a-collection-of-useful-free-cheat-sheets/%26hl%3Den&ct= =3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276116149:&cd=3DacSBk6TRzjk&= ;usg=3DAFQjCNE45UStjMX1ANnTRNk1hVCtunOqfA" title=3D"http://news.google.com/= news/story?ncl=3Dhttp://webworkerdaily.com/2010/06/09/quicklycode-a-collect= ion-of-useful-free-cheat-sheets/&hl=3Den">See all stories on this topic= </a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.ocregister.com/articles/-252226--.html%3Fpic%3D1&ct=3Dga&= cad=3D:s1:f2:v0:i0:lt:e1:p1:t1276116149:&cd=3DacSBk6TRzjk&usg=3DAFQ= jCNEgDjvllrByDHRRdFCab_2MCE5DmA"> An animal print triangle top and tie-side bottom from Luxe by Lisa Vogel</a=
<br> <font size=3D"-1"><font color=3D"#666666">OCRegister</font><br> Prints =97 <b>Python</b> is a top animal print this year, with leopard (pic= tured) and zebra in the mix, too. Tie dye and ombres are doing well, and pl= aids and <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.ocregister.com/article= s/-252226--.html%253Fpic%253D1%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0= :lr:e1:p1:t1276116149:&cd=3DacSBk6TRzjk&usg=3DAFQjCNHyT8gj08PlZy152= EHXFH2srOuR0g" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.= ocregister.com/articles/-252226--.html%3Fpic%3D1&hl=3Den">See all stori= es on this topic</a></font></td></tr></table><p><hr noshade size=3D1><font = size=3D"-1">Tip: Use site restrict in your query to search within a site (s= ite:nytimes.com or site:.edu).</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DacSB= k6TRzjk&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DacSBk6TRzjk&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DacSBk6TRzjk&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs220454wel; Thu, 10 Jun 2010 13:44:02 -0700 (PDT) Return-Path: <3j04RTBQKCTsdlldibXiboqp-klobmivdlldib.ZljeliabktbYdjXfi.Zlj@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3j04RTBQKCTsdlldibXiboqp-klobmivdlldib.ZljeliabktbYdjXfi.Zlj@alerts.bounces.google.com designates 10.141.130.16 as permitted sender) client-ip=10.141.130.16; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3j04RTBQKCTsdlldibXiboqp-klobmivdlldib.ZljeliabktbYdjXfi.Zlj@alerts.bounces.google.com designates 10.141.130.16 as permitted sender) smtp.mail=3j04RTBQKCTsdlldibXiboqp-klobmivdlldib.ZljeliabktbYdjXfi.Zlj@alerts.bounces.google.com; dkim=pass header.i=3j04RTBQKCTsdlldibXiboqp-klobmivdlldib.ZljeliabktbYdjXfi.Zlj@alerts.bounces.google.com Received: from mr.google.com ([10.141.130.16]) by 10.141.130.16 with SMTP id h16mr245667rvn.6.1276202639758 (num_hops = 1); Thu, 10 Jun 2010 13:43:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=+rmqHqXVjv9Ge0Lykdz+5dBTL3R6PLIpQnxXfeUA5ho=; b=B3SDRxAKR+O8fMiA9HcvvVJPXi4FwwuFZnGpmX02qQjGAKghU8JNa7RKbwR5/frmNW Nle2yfyMKavA1bkRr4vA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=RWwRxAv3RTWp7KsEETaAgB3zuIXidrD4lToIGBUKGp+cB4hfgpdLaKVFNDz8m65m6O MscccmODHHDxdGYs9ndA== MIME-Version: 1.0 Received: by 10.141.130.16 with SMTP id h16mr200156rvn.6.1276202639734; Thu, 10 Jun 2010 13:43:59 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <00032556305200b9040488b3157f@google.com> Date: Thu, 10 Jun 2010 20:43:59 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.registerguard.com/csp/cms/sites/web/business/24889400-41/foreclos= ure-percent-2009-county-lane.csp&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p= 0:t1276202639:&cd=3D_qWBhOi0ITI&usg=3DAFQjCNETdZJ_q44ck4_OCc5aHrNN_= 44aOA"> County foreclosures decline | Though the figures suggest stabilization, loc= al <b>...</b></a><br> <font size=3D"-1"><font color=3D"#666666">The Register-Guard</font><br> =93Think of the <b>python</b> that swallowed a pig. The pig is going to mov= e through that <b>python</b>.=94 Lane County's foreclosure counselors, = however, aren't yet seeing <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.registerguard.com/csp/= cms/sites/web/business/24889400-41/foreclosure-percent-2009-county-lane.csp= %26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276202639:&cd= =3D_qWBhOi0ITI&usg=3DAFQjCNFkBEbKpI0jRmXsqh5kXlM8f8cLtg" title=3D"http:= //news.google.com/news/story?ncl=3Dhttp://www.registerguard.com/csp/cms/sit= es/web/business/24889400-41/foreclosure-percent-2009-county-lane.csp&hl= =3Den">See all stories on this topic</a></font></td></tr><tr><td style=3D"p= adding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.reptilechannel.com/reptile-news/2010/06/08/florida-reptile-rule-c= hange.aspx&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1276202639:&cd= =3D_qWBhOi0ITI&usg=3DAFQjCNEviZfBy8Sva_8za0PW1i80vVe_tQ"> Florida Eyes Rule Changes for Conditional, Prohibited Nonnative Species</a>= <br> <font size=3D"-1"><font color=3D"#666666">ReptileChannel.com</font><br> <b>...</b> which are as follows: Indian or Burmese <b>python</b> (<b>Python= </b> molurus); Northern African <b>python</b> (<b>Python</b> sebae); Southe= rn African <b>python</b> (<b>Python</b> natalensis); <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.reptilechannel.com/rep= tile-news/2010/06/08/florida-reptile-rule-change.aspx%26hl%3Den&ct=3Dga= &cad=3D:s1:f2:v0:i0:lr:e1:p1:t1276202639:&cd=3D_qWBhOi0ITI&usg= =3DAFQjCNFEFHv0MId8OjExWVMZ1TPzsULE3w" title=3D"http://news.google.com/news= /story?ncl=3Dhttp://www.reptilechannel.com/reptile-news/2010/06/08/florida-= reptile-rule-change.aspx&hl=3Den">See all stories on this topic</a></fo= nt></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.foodproductiondaily.com/Processing/New-laser-sorter-for-nut-maker= s-eliminates-contaminants-smartly-Visys&ct=3Dga&cad=3D:s1:f2:v0:i0:= lt:e2:p2:t1276202639:&cd=3D_qWBhOi0ITI&usg=3DAFQjCNGzs3s6v23nj38_NK= lVoffInOEKLA"> New laser sorter for nut makers eliminates contaminants smartly, Visys</a><= br> <font size=3D"-1"><font color=3D"#666666">FoodProductionDaily.com</font><br=
Frank Zwerts, CEO of the Belgian based technology developer told FoodProduc= tionDaily.com that its <b>Python</b> Smart Optical Laser Sorter is the firs= t <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.foodproductiondaily.co= m/Processing/New-laser-sorter-for-nut-makers-eliminates-contaminants-smartl= y-Visys%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1276202639:&= amp;cd=3D_qWBhOi0ITI&usg=3DAFQjCNHXzsKz5xlfYa9UwyNQf8x7pfYz9A" title=3D= "http://news.google.com/news/story?ncl=3Dhttp://www.foodproductiondaily.com= /Processing/New-laser-sorter-for-nut-makers-eliminates-contaminants-smartly= -Visys&hl=3Den">See all stories on this topic</a></font></td></tr></tab= le><p><hr noshade size=3D1><font size=3D"-1">Tip: Use site restrict in your= query to search within a site (site:nytimes.com or site:.edu).</font><p><f= ont size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D_qWB= hOi0ITI&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D_qWBhOi0ITI&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D_qWBhOi0ITI&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs35841wel; Fri, 11 Jun 2010 13:40:30 -0700 (PDT) Return-Path: <3O58STBQKCTkbjjbgZVgZmon-ijmZkgtbjjbgZ.XjhcjgYZirZWbhVdg.Xjh@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3O58STBQKCTkbjjbgZVgZmon-ijmZkgtbjjbgZ.XjhcjgYZirZWbhVdg.Xjh@alerts.bounces.google.com designates 10.143.26.22 as permitted sender) client-ip=10.143.26.22; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3O58STBQKCTkbjjbgZVgZmon-ijmZkgtbjjbgZ.XjhcjgYZirZWbhVdg.Xjh@alerts.bounces.google.com designates 10.143.26.22 as permitted sender) smtp.mail=3O58STBQKCTkbjjbgZVgZmon-ijmZkgtbjjbgZ.XjhcjgYZirZWbhVdg.Xjh@alerts.bounces.google.com; dkim=pass header.i=3O58STBQKCTkbjjbgZVgZmon-ijmZkgtbjjbgZ.XjhcjgYZirZWbhVdg.Xjh@alerts.bounces.google.com Received: from mr.google.com ([10.143.26.22]) by 10.143.26.22 with SMTP id d22mr848836wfj.2.1276288827690 (num_hops = 1); Fri, 11 Jun 2010 13:40:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=2BawDxeSZCYfbjeP+J6PL5Gd79ld6xwic+DZDEjb1mY=; b=l8wGmzNd7wvngsT2m2KT6nXbKiiD3aGe/xX+Se6RZUmHHEdh2z03uipVlNv27eIaQt NDLyxcFDngwHVQeuOYPg== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=jWGWAQ5RsNG7TrKzzPC+jyD/GHjzrsPXBo7EUbaHLdEKoKC9/XUXtAXdD8xJYS0q/h qeL8V6HgHs/ZBH8eueSw== MIME-Version: 1.0 Received: by 10.143.26.22 with SMTP id d22mr685236wfj.2.1276288827670; Fri, 11 Jun 2010 13:40:27 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <001636e0ad2a3441710488c7269f@google.com> Date: Fri, 11 Jun 2010 20:40:27 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.networkworld.com/news/2010/061110-python-language-upgrade-slither= s-toward.html%3Fhpg1%3Dbn&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1276= 288827:&cd=3D94B_wXPZkNM&usg=3DAFQjCNHeNBr0tKBdRiyydRxnuUAqfI-3yw"> <b>Python</b> language upgrade slithers toward final release</a><br> <font size=3D"-1"><font color=3D"#666666">NetworkWorld.com</font><br> By Paul Krill, InfoWorld <b>Python</b> 2.7, the last in the legacy <b>Pytho= n</b> 2.x dynamic language line, moved closer to general availability earli= er this month when <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.networkworld.com/news/= 2010/061110-python-language-upgrade-slithers-toward.html%253Fhpg1%253Dbn%26= hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276288827:&cd=3D9= 4B_wXPZkNM&usg=3DAFQjCNFtnRlQjUaNzMi9unoOgODXxrMi4A" title=3D"http://ne= ws.google.com/news/story?ncl=3Dhttp://www.networkworld.com/news/2010/061110= -python-language-upgrade-slithers-toward.html%3Fhpg1%3Dbn&hl=3Den">See = all stories on this topic</a></font></td></tr><tr><td style=3D"padding-bott= om:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://lifeboat.com/blog/2010/06/h-conference-and-faster-singularity&ct= =3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1276288827:&cd=3D94B_wXPZkNM&= ;usg=3DAFQjCNGnFVJ1TEOgbwEUolA2sTyiohl9Fg"> H+ Conference and the Singularity Faster</a><br> <font size=3D"-1"><font color=3D"#666666">Lifeboat Foundation (blog)</font>= <br> I think scientific programmers should move to <b>Python</b> and build on Sc= iPy. <b>Python</b> is a modern free language, and has quietly built up an e= xtremely complete <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://lifeboat.com/blog/2010/06/= h-conference-and-faster-singularity%26hl%3Den&ct=3Dga&cad=3D:s1:f2:= v0:i0:lr:e1:p1:t1276288827:&cd=3D94B_wXPZkNM&usg=3DAFQjCNGyLDtiH7tE= 2UrtpOYyTTArp4dW3w" title=3D"http://news.google.com/news/story?ncl=3Dhttp:/= /lifeboat.com/blog/2010/06/h-conference-and-faster-singularity&hl=3Den"=
See all stories on this topic</a></font></td></tr></table><p><hr noshade s= ize=3D1><font size=3D"-1">Tip: Use a plus sign (+) to match a term in your = query exactly as is.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D94B_= wXPZkNM&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D94B_wXPZkNM&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D94B_wXPZkNM&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs65217wel; Sat, 12 Jun 2010 13:45:21 -0700 (PDT) Return-Path: <33vETTBQKCTASaaSXQMXQdfe-ZadQbXkSaaSXQ.OaYTaXPQZiQNSYMUX.OaY@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 33vETTBQKCTASaaSXQMXQdfe-ZadQbXkSaaSXQ.OaYTaXPQZiQNSYMUX.OaY@alerts.bounces.google.com designates 10.140.83.9 as permitted sender) client-ip=10.140.83.9; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 33vETTBQKCTASaaSXQMXQdfe-ZadQbXkSaaSXQ.OaYTaXPQZiQNSYMUX.OaY@alerts.bounces.google.com designates 10.140.83.9 as permitted sender) smtp.mail=33vETTBQKCTASaaSXQMXQdfe-ZadQbXkSaaSXQ.OaYTaXPQZiQNSYMUX.OaY@alerts.bounces.google.com; dkim=pass header.i=33vETTBQKCTASaaSXQMXQdfe-ZadQbXkSaaSXQ.OaYTaXPQZiQNSYMUX.OaY@alerts.bounces.google.com Received: from mr.google.com ([10.140.83.9]) by 10.140.83.9 with SMTP id g9mr1434981rvb.5.1276375518729 (num_hops = 1); Sat, 12 Jun 2010 13:45:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=Q3ywi63/aoS0O5YHpWCzB1+ZbgqiXQmoduXzzPDtYrg=; b=bXY2U7krh9s8KWxqy18OAeb8ILpa9KNAmB9zR7Eky4fyJiGSq93OpMd2a8ysdKmWXU ZKsfSTFasb+1JoBFT1IQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=irX/+pt0DLIfZG8V69RYfrREENKl1eG9G7rfwnH33ZYwEoAyiL/8JTNwNLl22o/p5V CT0Zk6w1ARfONeAfYrjQ== MIME-Version: 1.0 Received: by 10.140.83.9 with SMTP id g9mr1100261rvb.5.1276375518715; Sat, 12 Jun 2010 13:45:18 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cd28b52649de70488db553a@google.com> Date: Sat, 12 Jun 2010 20:45:18 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.advogato.org/article/1042.html&ct=3Dga&cad=3D:s1:f2:v0:i0= :lt:e0:p0:t1276375518:&cd=3DpyKSJCOmvSw&usg=3DAFQjCNG2FfGwaLQni15fO= VKIvSs9W4SgmQ"> <b>Python</b> GUI Proposal</a><br> <font size=3D"-1"><font color=3D"#666666">Advogato</font><br> I get the strong feeling that nobody is really happy with the state of >= <b>Python</b> GUIs. yep. that's why i ported pyjamas, which was a web-= only/browser-only UI <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.advogato.org/article/1= 042.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276375518:= &cd=3DpyKSJCOmvSw&usg=3DAFQjCNH3fTXa_2pRCwYKL2CLhsjQDzRzZw" title= =3D"http://news.google.com/news/story?ncl=3Dhttp://www.advogato.org/article= /1042.html&hl=3Den">See all stories on this topic</a></font></td></tr><= /table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use a minus sign (-) = in front of terms in your query that you want to exclude.</font><p><font si= ze=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DpyKS= JCOmvSw&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DpyKSJCOmvSw&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DpyKSJCOmvSw&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs145899wel; Mon, 14 Jun 2010 13:40:35 -0700 (PDT) Return-Path: <3wJMWTBQKCbYckkchaWhanpo-jknalhuckkcha.YkidkhZajsaXciWeh.Yki@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3wJMWTBQKCbYckkchaWhanpo-jknalhuckkcha.YkidkhZajsaXciWeh.Yki@alerts.bounces.google.com designates 10.141.100.18 as permitted sender) client-ip=10.141.100.18; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3wJMWTBQKCbYckkchaWhanpo-jknalhuckkcha.YkidkhZajsaXciWeh.Yki@alerts.bounces.google.com designates 10.141.100.18 as permitted sender) smtp.mail=3wJMWTBQKCbYckkchaWhanpo-jknalhuckkcha.YkidkhZajsaXciWeh.Yki@alerts.bounces.google.com; dkim=pass header.i=3wJMWTBQKCbYckkchaWhanpo-jknalhuckkcha.YkidkhZajsaXciWeh.Yki@alerts.bounces.google.com Received: from mr.google.com ([10.141.100.18]) by 10.141.100.18 with SMTP id c18mr2480303rvm.49.1276548032098 (num_hops = 1); Mon, 14 Jun 2010 13:40:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=UEDsgVKmwMLCg/ezxNdpsaMf3moS+d4gbm8axVmAF4Y=; b=pZZwUqTn6XjkZzJg5FTfr6XNwVD76LzBqk6kSrqvmB0tTMt8OslI3vf0n0+dWKr3fw G+LZs3spFo28DwXRlACA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=gYsMSHxyA0Cqt4RbKXszgPo1n+tl0tqvc3b0Qx1j9PVNFM8l2U2qow1qwOfW7zgL8C gYHsbW2G6EcCPfPIL4Gg== MIME-Version: 1.0 Received: by 10.141.100.18 with SMTP id c18mr1946192rvm.49.1276548032077; Mon, 14 Jun 2010 13:40:32 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cd13878fd9e830489037f0a@google.com> Date: Mon, 14 Jun 2010 20:40:32 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
, and Java. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://7thspace.com/headlines/347= 772/accessing_the_seed_genome_databases_via_web_services_api_tools_for_prog= rammers.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e5:p5:t1276548= 032:&cd=3DU5Cd2VAclW8&usg=3DAFQjCNGpBx6WxkvFB-XAqNEBT7jJmNvgag" tit= le=3D"http://news.google.com/news/story?ncl=3Dhttp://7thspace.com/headlines= /347772/accessing_the_seed_genome_databases_via_web_services_api_tools_for_=
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.pcworld.com/article/198696/2010/06/python.html&ct=3Dga&ca= d=3D:s1:f2:v0:i0:lt:e0:p0:t1276548032:&cd=3DU5Cd2VAclW8&usg=3DAFQjC= NEjJ9qjoenPVk2KBThzXCMvDieAyQ"> <b>Python</b> Language Upgrade Slithers Toward Final Release</a><br> <font size=3D"-1"><font color=3D"#666666">PC World</font><br> <b>Python</b> 2.7, the last in the legacy <b>Python</b> 2.x dynamic languag= e line, moved closer to general availability earlier this month when develo= pers of the language <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.pcworld.com/article/19= 8696/2010/06/python.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0= :p0:t1276548032:&cd=3DU5Cd2VAclW8&usg=3DAFQjCNET4MF8vTBtoYOk_-Q59Xy= iAd26bA" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.pcworl= d.com/article/198696/2010/06/python.html&hl=3Den">See all stories on th= is topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://lwn.net/Articles/392000/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:= t1276548032:&cd=3DU5Cd2VAclW8&usg=3DAFQjCNELN5RbuZLsGUp7mr6eJ6HECet= sTw"> Fedora alert FEDORA-2010-9652 (<b>python</b>)</a><br> <font size=3D"-1"><font color=3D"#666666">LWN.net</font><br> <b>Python</b> includes modules, classes, exceptions, very high level dynami= c data types and dynamic typing. <b>Python</b> supports interfaces to many = system calls and <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://lwn.net/Articles/392000/%2= 6hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1276548032:&cd=3D= U5Cd2VAclW8&usg=3DAFQjCNH1ezz-4AkHPhctR1B1y1e-OM8Y4w" title=3D"http://n= ews.google.com/news/story?ncl=3Dhttp://lwn.net/Articles/392000/&hl=3Den= ">See all stories on this topic</a></font></td></tr><tr><td style=3D"paddin= g-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.slate.com/id/2256942/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2= :t1276548032:&cd=3DU5Cd2VAclW8&usg=3DAFQjCNFuxiNkUqCiuQk94ha8GEUUy2= AjdA"> How President Obama can stop the spreading plume of national despair. - Eli= ot <b>...</b></a><br> <font size=3D"-1"><font color=3D"#666666">Slate Magazine</font><br> As Month <b>Python</b> said so eloquently, "Nobody expects the Spanish= Inquisition." Unexpected events roil societies, but they are also opp= ortunities for great <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.slate.com/id/2256942/%= 26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1276548032:&cd= =3DU5Cd2VAclW8&usg=3DAFQjCNETOSiP8kW6n1p52KMLtdjaozyf9A" title=3D"http:= //news.google.com/news/story?ncl=3Dhttp://www.slate.com/id/2256942/&hl= =3Den">See all stories on this topic</a></font></td></tr><tr><td style=3D"p= adding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.progressiverailroading.com/productoftheweek/details.asp%3Fid%3D23= 551&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e3:p3:t1276548032:&cd=3DU5Cd2= VAclW8&usg=3DAFQjCNErlrSl8_6NfH1lCNG17Z8k8b40cA"> Improved Rail Technology Helps Bring Safety and Efficiency to the Train Yar= d</a><br> <font size=3D"-1"><font color=3D"#666666">Progressive Rail Roading</font><b= r> (Oak Creek, WI) =96 With the launch of the new Iron <b>Python</b>, AAA Sale= s & Engineering provides a multi-purpose product that serves as both a = train-holding <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.progressiverailroading= .com/productoftheweek/details.asp%253Fid%253D23551%26hl%3Den&ct=3Dga&am= p;cad=3D:s1:f2:v0:i0:lr:e3:p3:t1276548032:&cd=3DU5Cd2VAclW8&usg=3DA= FQjCNEZJlRz0592DX541--0f3HJm4CQ7w" title=3D"http://news.google.com/news/sto= ry?ncl=3Dhttp://www.progressiverailroading.com/productoftheweek/details.asp= %3Fid%3D23551&hl=3Den">See all stories on this topic</a></font></td></t= r><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.theregister.co.uk/2010/06/14/appcelerator_betas_titanium_for_blac= kberries/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e4:p4:t1276548032:&cd= =3DU5Cd2VAclW8&usg=3DAFQjCNFHs2j0rEAFCfYbnadQ05W1kcvXew"> Open source webAndroidiPhoneiPad kit betas for BlackBerry</a><br> <font size=3D"-1"><font color=3D"#666666">Register</font><br> The open-source Titanium is a means of building native desktop and mobile a= pplications using traditional web-development tools, including JavaScript, = <b>Python</b> <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.theregister.co.uk/2010= /06/14/appcelerator_betas_titanium_for_blackberries/%26hl%3Den&ct=3Dga&= amp;cad=3D:s1:f2:v0:i0:lr:e4:p4:t1276548032:&cd=3DU5Cd2VAclW8&usg= =3DAFQjCNGZS-YRyfkFrAl9euZgZkQ6rYsWkA" title=3D"http://news.google.com/news= /story?ncl=3Dhttp://www.theregister.co.uk/2010/06/14/appcelerator_betas_tit= anium_for_blackberries/&hl=3Den">See all stories on this topic</a></fon= t></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://7thspace.com/headlines/347772/accessing_the_seed_genome_databases_via= _web_services_api_tools_for_programmers.html&ct=3Dga&cad=3D:s1:f2:v= 0:i0:lt:e5:p5:t1276548032:&cd=3DU5Cd2VAclW8&usg=3DAFQjCNGcKal5_AeHW= x080ZdnOMa5WGiUpA"> Accessing the SEED genome databases via Web services API: tools for program= mers</a><br> <font size=3D"-1"><font color=3D"#666666">7thSpace Interactive (press relea= se)</font><br> Example code demonstrate that Web services can be used to access the SEED u= sing common bioinformatics programming languages such as Perl, <b>Python</b= programmers.html&hl=3Den">See all stories on this topic</a></font></td>= </tr></table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use a plus sign= (+) to match a term in your query exactly as is.</font><p><font size=3D"-1= "> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DU5Cd= 2VAclW8&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DU5Cd2VAclW8&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DU5Cd2VAclW8&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs204644wel; Tue, 15 Jun 2010 13:41:24 -0700 (PDT) Return-Path: <3ceUXTBQKCbolttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3ceUXTBQKCbolttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com designates 10.141.91.10 as permitted sender) client-ip=10.141.91.10; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3ceUXTBQKCbolttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com designates 10.141.91.10 as permitted sender) smtp.mail=3ceUXTBQKCbolttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com; dkim=pass header.i=3ceUXTBQKCbolttlqjfqjwyx-stwjuq3lttlqj.htrmtqijs1jglrfnq.htr@alerts.bounces.google.com Received: from mr.google.com ([10.141.91.10]) by 10.141.91.10 with SMTP id t10mr3036752rvl.46.1276634481566 (num_hops = 1); Tue, 15 Jun 2010 13:41:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=5ta4p1lrDZeHVQtTEzCs5iMcrmGbC56678M9Bv2elxw=; b=On08tuNjglYMLDoNCgsvT9Jt1f6h83H80LovjpWbEq976f6jPOkzfum1fyVk4yjcQL KAb/QZ4zAQ5dljckzJjg== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=FVdXW6nWLdLZXIgSiAegupxZeHhFli0DVYBbUhR4J9hhd91+H1pBGTgA7cSEJtiSMO aDLimhSrSYDy2kDVEcQg== MIME-Version: 1.0 Received: by 10.141.91.10 with SMTP id t10mr2404194rvl.46.1276634481543; Tue, 15 Jun 2010 13:41:21 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cd509c6c7ca6c048917a06d@google.com> Date: Tue, 15 Jun 2010 20:41:21 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
</a></td></tr><tr><td align=3D"center"><font size=3D-2><a href=3D"http://w= ww.google.com/url?sa=3DX&q=3Dhttp://www.washingtonpost.com/wp-dyn/conte= nt/video/2010/06/15/VI2010061502948.html&ct=3Dga&cad=3D:s1:f2:v0:i0= :lic:e0:p0:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNGYKzP65fMb3qJo= z3QF9HhtnXqQhQ">Washington Post</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.washingtonpost.com/wp-dyn/content/video/2010/06/15/VI201006150294= 8.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1276634481:&cd=3DoD= 6MVf_Aldo&usg=3DAFQjCNGYKzP65fMb3qJoz3QF9HhtnXqQhQ"> Video: Princes come face to face with <b>python</b></a><br> <font size=3D"-1"><font color=3D"#666666">Washington Post</font><br> Britain's royal brothers appeared a bit nervous when game wardens asked=
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= washingtonpost.com/wp-dyn/content/video/2010/06/15/VI2010061502948.html&= ;ct=3Dga&cad=3D:s1:f2:v0:i0:li:e0:p0:t1276634481:&cd=3DoD6MVf_Aldo&= amp;usg=3DAFQjCNGYKzP65fMb3qJoz3QF9HhtnXqQhQ"><img border=3D"0" src=3D"http= ://nt0.ggpht.com/news/tbn/LIZltJ0Y-WYJ" alt=3D"" width=3D"80" height=3D"72"= them to hold an 8.5 foot (2.6 meter) African rock <b>python</b> during the= ir visit to a <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.washingtonpost.com/wp-= dyn/content/video/2010/06/15/VI2010061502948.html%26hl%3Den&ct=3Dga&= ;cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAF= QjCNEdSTeJ56MmjUz_mb3t86wmtnshuA" title=3D"http://news.google.com/news/stor= y?ncl=3Dhttp://www.washingtonpost.com/wp-dyn/content/video/2010/06/15/VI201= 0061502948.html&hl=3Den">See all stories on this topic</a></font></td><= /tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.computerandvideogames.com/article.php%3Fid%3D251549&ct=3Dga&a= mp;cad=3D:s1:f2:v0:i0:lt:e1:p1:t1276634481:&cd=3DoD6MVf_Aldo&usg=3D= AFQjCNFqTqrSUgzIKKZ0nimnH4O3wVxKHA"> Fable 3 screenshots are in</a><br> <font size=3D"-1"><font color=3D"#666666">Computerandvideogames.com</font><= br> <b>...</b> at the dev diary we brought you back in May featuring John Clees= e? The ex-<b>Python</b> will be staring in the game alongside Ben Kingsley.= Star studded or what?<br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.computerandvideogames.= com/article.php%253Fid%253D251549%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0= :i0:lr:e1:p1:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNHt29IaDiDtOv= znLOE_QP9PX1VUdw" title=3D"http://news.google.com/news/story?ncl=3Dhttp://w= ww.computerandvideogames.com/article.php%3Fid%3D251549&hl=3Den">See all= stories on this topic</a></font></td></tr><tr><td style=3D"padding-bottom:= 1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.guardian.co.uk/tv-and-radio/2010/jun/15/rude-britannia-monster-py= thon&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1276634481:&cd=3DoD6M= Vf_Aldo&usg=3DAFQjCNHCCrcOj8CODFaxWdnO6xSiTKNZ2w"> Watch this:</a><br> <font size=3D"-1"><font color=3D"#666666">The Guardian</font><br> JR Inside Nature's Giants 9pm, Channel 4 The Monster <b>Python</b> =96 = possibly not its official name =96 is the prey of veterinary adventurer Mar= k Evans this week. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.guardian.co.uk/tv-and-= radio/2010/jun/15/rude-britannia-monster-python%26hl%3Den&ct=3Dga&c= ad=3D:s1:f2:v0:i0:lr:e2:p2:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQj= CNEUttBhfVntNI_CKtffz9RkwC4Qwg" title=3D"http://news.google.com/news/story?= ncl=3Dhttp://www.guardian.co.uk/tv-and-radio/2010/jun/15/rude-britannia-mon= ster-python&hl=3Den">See all stories on this topic</a></font></td></tr>= <tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.handbago.com/blog/lena-erziak-fall-2010&ct=3Dga&cad=3D:s1= :f2:v0:i0:lt:e3:p3:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNGF9p_z= cySC8TSyjVngl7B32DRPEA"> Lena Erziak Fall 2010</a><br> <font size=3D"-1"><font color=3D"#666666">Handbago (blog)</font><br> The Paolo, in green <b>Python</b> print is the perfect evening drawstring b= ag! I adore the chain strap and tassel. The Edward in <b>python</b> is the = perfect day bag. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.handbago.com/blog/lena= -erziak-fall-2010%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e3:p3:t12= 76634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNFp63S8sgO0cuFVa1hRSUXhcnYqIg= " title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.handbago.com/= blog/lena-erziak-fall-2010&hl=3Den">See all stories on this topic</a></= font></td></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://news= .thomasnet.com/fullstory/Boundary-Scan-Software-creates-hardware-test-progr= ams-578312&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e4:p4:t1276634481:&cd= =3DoD6MVf_Aldo&usg=3DAFQjCNEIjje51Ppra78HC2ZIyj5dsiChew"><img border=3D= "0" src=3D"http://nt3.ggpht.com/news/tbn/F6yXned62mQJ" alt=3D"" width=3D"80= " height=3D"57"></a></td></tr><tr><td align=3D"center"><font size=3D-2><a h= ref=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://news.thomasnet.com/f= ullstory/Boundary-Scan-Software-creates-hardware-test-programs-578312&c= t=3Dga&cad=3D:s1:f2:v0:i0:lic:e4:p4:t1276634481:&cd=3DoD6MVf_Aldo&a= mp;usg=3DAFQjCNEIjje51Ppra78HC2ZIyj5dsiChew">ThomasNet Industrial News Room= </a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://news.thomasnet.com/fullstory/Boundary-Scan-Software-creates-hardware-= test-programs-578312&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e4:p4:t127663448= 1:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNEIjje51Ppra78HC2ZIyj5dsiChew"> Boundary Scan Software creates hardware test programs.</a><br> <font size=3D"-1"><font color=3D"#666666">ThomasNet Industrial News Room</f= ont><br> Test debug for Symphony-supported in-circuit testers is included along with= flying-probe tester and multiboard and scan bridge support for JFT(<b>Pyth= on</b>) <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://news.thomasnet.com/fullsto= ry/Boundary-Scan-Software-creates-hardware-test-programs-578312%26hl%3Den&a= mp;ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e4:p4:t1276634481:&cd=3DoD6MVf_Ald= o&usg=3DAFQjCNErSsXvJegiitCRYDyfWzZto3F6wg" title=3D"http://news.google= .com/news/story?ncl=3Dhttp://news.thomasnet.com/fullstory/Boundary-Scan-Sof= tware-creates-hardware-test-programs-578312&hl=3Den">See all stories on= this topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= times.co.sz/index.php%3Fnews%3D17498&ct=3Dga&cad=3D:s1:f2:v0:i0:li:= e5:p5:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNG4CzxK-KIFfcCGyScf9= DfG5lgCXQ"><img border=3D"0" src=3D"http://nt1.ggpht.com/news/tbn/Pc0kAwJ7R= x4J" alt=3D"" width=3D"80" height=3D"53"></a></td></tr><tr><td align=3D"cen= ter"><font size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dht= tp://www.times.co.sz/index.php%3Fnews%3D17498&ct=3Dga&cad=3D:s1:f2:= v0:i0:lic:e5:p5:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNG4CzxK-KI= FfcCGyScf9DfG5lgCXQ">Times of Swaziland</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.times.co.sz/index.php%3Fnews%3D17498&ct=3Dga&cad=3D:s1:f2= :v0:i0:lt:e5:p5:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNG4CzxK-KI= FfcCGyScf9DfG5lgCXQ"> Two convicted for animal skins</a><br> <font size=3D"-1"><font color=3D"#666666">Times of Swaziland</font><br> During the raid elephant, crocodile, lion and <b>python</b> skins were foun= d inside the shop. At Dabulamanzi Herbal clinic situated at Nhlangano SEDCO= , <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.times.co.sz/index.php%= 253Fnews%253D17498%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e5:p5:t1= 276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQjCNGmgf93-zG-ehvUssdfFEAmGApt9= A" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.times.co.sz/= index.php%3Fnews%3D17498&hl=3Den">See all stories on this topic</a></fo= nt></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.huffingtonpost.com/yvonne-yorke/a-royal-fairytale-with-a_b_612620= .html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e6:p6:t1276634481:&cd=3DoD6= MVf_Aldo&usg=3DAFQjCNEUO-VaZEv9_X8QiYJtp0GhJpipXA"> A Royal Fairytale, With a Twist</a><br> <font size=3D"-1"><font color=3D"#666666">Huffington Post (blog)</font><br> Her brother, Prince Carl Philip, is now dating a model and former reality T= V show star who once posed topless with a <b>python</b> wrapped around her = body. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.huffingtonpost.com/yvo= nne-yorke/a-royal-fairytale-with-a_b_612620.html%26hl%3Den&ct=3Dga&= cad=3D:s1:f2:v0:i0:lr:e6:p6:t1276634481:&cd=3DoD6MVf_Aldo&usg=3DAFQ= jCNEtikzyNwgVpS_ZHVuM5s3FpBq-NQ" title=3D"http://news.google.com/news/story= ?ncl=3Dhttp://www.huffingtonpost.com/yvonne-yorke/a-royal-fairytale-with-a_= b_612620.html&hl=3Den">See all stories on this topic</a></font></td></t= r></table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use quotes ("like = this") around a set of words in your query to match them exactly.</font><p>= <font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DoD6M= Vf_Aldo&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DoD6MVf_Aldo&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DoD6MVf_Aldo&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:24 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs44034wel; Wed, 16 Jun 2010 13:41:37 -0700 (PDT) Return-Path: <3_TYZTBQKCZk9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3_TYZTBQKCZk9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com designates 10.100.245.36 as permitted sender) client-ip=10.100.245.36; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3_TYZTBQKCZk9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com designates 10.100.245.36 as permitted sender) smtp.mail=3_TYZTBQKCZk9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com; dkim=pass header.i=3_TYZTBQKCZk9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com Received: from mr.google.com ([10.100.245.36]) by 10.100.245.36 with SMTP id s36mr5027114anh.28.1276720893738 (num_hops = 1); Wed, 16 Jun 2010 13:41:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=Ew0A7L1dPcsbz3Zt8Lzhyec16bExhdfVXQJM+bW1Jls=; b=oVYHu7USNllzZvxed0w7cpfeEgDXnEjOikwB27JK62SthbJ5Gzh5ns7FgEHul81Ox3 TV76so3kbF6Y6imYxRIQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=qlKMQ/nwhD1D4FLDt9XuW5s9/bzyyWG4zgx1Clm7s+5qNLuTurLBTYjQRcbH8rZHj0 wPFLE4Lyu8DnIfHEJdAw== MIME-Version: 1.0 Received: by 10.100.245.36 with SMTP id s36mr3148726anh.28.1276720893687; Wed, 16 Jun 2010 13:41:33 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e68f9e9c58777204892bbf27@google.com> Date: Wed, 16 Jun 2010 20:41:33 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<br> <font size=3D"-1"><font color=3D"#666666">Vinton Today</font><br> The students saw a parrot, a <b>python</b>, a small alligator and a tiger s= alamander. Given the choice between touching the gator, salamander or <b>py=
<img border=3D"0" src=3D"http://nt2.ggpht.com/news/tbn/UtrImYx3IwMJ" alt= =3D"" width=3D"80" height=3D"45"></a></td></tr><tr><td align=3D"center"><fo= nt size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://med= ia.theage.com.au/national/selections/uk-princes-face-up-to-a-python-1604627= .html%3F%26exc_from%3Dpplay&ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e1:p1:t1= 276720893:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNEJ7Om7AYgdnxBN2g4naj5xSnz6h= w">The Age</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://media.theage.com.au/national/selections/uk-princes-face-up-to-a-pytho= n-1604627.html%3F%26exc_from%3Dpplay&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:= e1:p1:t1276720893:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNEJ7Om7AYgdnxBN2g4na= j5xSnz6hw"> UK princes face up to a <b>python</b></a><br> <font size=3D"-1"><font color=3D"#666666">The Age</font><br> Britain's royal brothers appear a bit nervous holding an 2.6 metre Afri= can rock <b>python</b> during their visit to a nature reserve in Botswana. = 16/06/10 Up next. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://media.theage.com.au/nation= al/selections/uk-princes-face-up-to-a-python-1604627.html%253F%2526exc_from= %253Dpplay%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t127672089= 3:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNG8z05pZrfPkHLNpkJUbOEw9aKyng" title= =3D"http://news.google.com/news/story?ncl=3Dhttp://media.theage.com.au/nati= onal/selections/uk-princes-face-up-to-a-python-1604627.html%3F%26exc_from%3= Dpplay&hl=3Den">See all stories on this topic</a></font></td></tr><tr><=
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.vintoniowa.org/News/article920.html&ct=3Dga&cad=3D:s1:f2:= v0:i0:lt:e0:p0:t1276720893:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNFJkeNeLGyK= hh1NeiG7hhRTuf5spA"> Blank Park Zoo animals visit Library Summer Reading Program participants</a= thon</b>, <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.vintoniowa.org/News/ar= ticle920.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t127672= 0893:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNH8IY8vgAbVTdP07b-Eb3zXtOEpzA" ti= tle=3D"http://news.google.com/news/story?ncl=3Dhttp://www.vintoniowa.org/Ne= ws/article920.html&hl=3Den">See all stories on this topic</a></font></t= d></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://medi= a.theage.com.au/national/selections/uk-princes-face-up-to-a-python-1604627.= html%3F%26exc_from%3Dpplay&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e1:p1:t127= 6720893:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNEJ7Om7AYgdnxBN2g4naj5xSnz6hw"= td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= myfashionlife.com/archives/2010/06/16/jessica-szohr-carries-kara-ross-clutc= hes/&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e2:p2:t1276720893:&cd=3D1-gV= jm5C1BY&usg=3DAFQjCNEMFjRSp89dvtf_jSlkdV1AsjC1yQ"><img border=3D"0" src= =3D"http://nt2.ggpht.com/news/tbn/NvMPrhYhFlgJ" alt=3D"" width=3D"53" heigh= t=3D"80"></a></td></tr><tr><td align=3D"center"><font size=3D-2><a href=3D"= http://www.google.com/url?sa=3DX&q=3Dhttp://www.myfashionlife.com/archi= ves/2010/06/16/jessica-szohr-carries-kara-ross-clutches/&ct=3Dga&ca= d=3D:s1:f2:v0:i0:lic:e2:p2:t1276720893:&cd=3D1-gVjm5C1BY&usg=3DAFQj= CNEMFjRSp89dvtf_jSlkdV1AsjC1yQ">My Fashion Life (blog)</a></font></td></tr>= </table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.myfashionlife.com/archives/2010/06/16/jessica-szohr-carries-kara-= ross-clutches/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1276720893:&= ;cd=3D1-gVjm5C1BY&usg=3DAFQjCNEMFjRSp89dvtf_jSlkdV1AsjC1yQ"> Jessica Szohr carries Kara Ross clutches</a><br> <font size=3D"-1"><font color=3D"#666666">My Fashion Life (blog)</font><br> <b>...</b> in matte gold <b>python</b>, while out in London with fellow Gos= sip Girl actor and boyfriend (or =96 if rumours are to be believed =96 ex-b= oyfriend), Ed Westwick. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.myfashionlife.com/arch= ives/2010/06/16/jessica-szohr-carries-kara-ross-clutches/%26hl%3Den&ct= =3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1276720893:&cd=3D1-gVjm5C1BY&= ;usg=3DAFQjCNGQhbZAKYacjEnJkNNUz0XW8sUKsw" title=3D"http://news.google.com/= news/story?ncl=3Dhttp://www.myfashionlife.com/archives/2010/06/16/jessica-s= zohr-carries-kara-ross-clutches/&hl=3Den">See all stories on this topic= </a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.wbko.com/news/headlines/96457979.html&ct=3Dga&cad=3D:s1:f= 2:v0:i0:lt:e3:p3:t1276720893:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNFE17MyFC= 6vEWrrywGCwiO1qA8g-g"> Royal Family Tour Parts of South Africa</a><br> <font size=3D"-1"><font color=3D"#666666">WBKO</font><br> The brothers were a bit nervous when game wardens asked them to hold an 8.5= foot African rock <b>python</b>. Prince Harry says the country and the cen= ter is very <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.wbko.com/news/headline= s/96457979.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e3:p3:t1276= 720893:&cd=3D1-gVjm5C1BY&usg=3DAFQjCNEhsyLWEhs_w7pqUClLOxpRKQNs2w" = title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.wbko.com/news/h= eadlines/96457979.html&hl=3Den">See all stories on this topic</a></font=
</td></tr></table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use a min= us sign (-) in front of terms in your query that you want to exclude.</font= <p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D1-gV= jm5C1BY&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D1-gVjm5C1BY&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D1-gVjm5C1BY&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs104032wel; Thu, 17 Jun 2010 13:43:27 -0700 (PDT) Return-Path: <36YgaTBQKCdgAIIAF84F8LNM-HIL8JFSAIIAF8.6IGBIF78HQ85AG4CF.6IG@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 36YgaTBQKCdgAIIAF84F8LNM-HIL8JFSAIIAF8.6IGBIF78HQ85AG4CF.6IG@alerts.bounces.google.com designates 10.100.243.14 as permitted sender) client-ip=10.100.243.14; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 36YgaTBQKCdgAIIAF84F8LNM-HIL8JFSAIIAF8.6IGBIF78HQ85AG4CF.6IG@alerts.bounces.google.com designates 10.100.243.14 as permitted sender) smtp.mail=36YgaTBQKCdgAIIAF84F8LNM-HIL8JFSAIIAF8.6IGBIF78HQ85AG4CF.6IG@alerts.bounces.google.com; dkim=pass header.i=36YgaTBQKCdgAIIAF84F8LNM-HIL8JFSAIIAF8.6IGBIF78HQ85AG4CF.6IG@alerts.bounces.google.com Received: from mr.google.com ([10.100.243.14]) by 10.100.243.14 with SMTP id q14mr6385969anh.20.1276807402019 (num_hops = 1); Thu, 17 Jun 2010 13:43:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=of0eO5tY3yNMlCs4ypD4Qrt1g54ue1uEsd+kbzxxHOY=; b=jIbSxtqdqkmhf7IwQapBjtExcJ3BlsZ1zRygpd7hfMeNi3XLc+e2QsRp0TMZcVjr8A tppeU6McpdTh0Vvq/igQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=DLWTqlUhKgjWkr5fJpKoFd5KucxqZu6Y5ytWd3q7oJMVD82+xosnkQ6K5KPEgB5mIm K7qRzSiN0z6dGdUFmkAQ== MIME-Version: 1.0 Received: by 10.100.243.14 with SMTP id q14mr4121943anh.20.1276807401945; Thu, 17 Jun 2010 13:43:21 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <001636c92930a3bbf004893fe359@google.com> Date: Thu, 17 Jun 2010 20:43:21 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.marketwire.com/press-release/ActiveState-Named-to-SD-Times-100-fo= r-Third-Consecutive-Year-1277765.htm&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:= e0:p0:t1276807400:&cd=3DTxFQjtC1zws&usg=3DAFQjCNGVJgzTG9FGNjPz1uUp5= QIquGwgXQ"> ActiveState Named to SD Times 100 for Third Consecutive Year</a><br> <font size=3D"-1"><font color=3D"#666666">Marketwire (press release)</font>= <br> ActiveState has been a leader in the development community around dynamic l= anguages such as Perl, <b>Python</b> and Tcl for years, and its Komodo IDE = continues to <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.marketwire.com/press-r= elease/ActiveState-Named-to-SD-Times-100-for-Third-Consecutive-Year-1277765= .htm%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276807400:&= ;cd=3DTxFQjtC1zws&usg=3DAFQjCNFrWGq1xtQeovzmlZVY_50MJedGCw" title=3D"ht= tp://news.google.com/news/story?ncl=3Dhttp://www.marketwire.com/press-relea= se/ActiveState-Named-to-SD-Times-100-for-Third-Consecutive-Year-1277765.htm= &hl=3Den">See all stories on this topic</a></font></td></tr><tr><td sty= le=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://datacenterjournal.com/index.php%3Foption%3Dcom_content%26view%3Dartic= le%26id%3D3661:can-lamp-light-up-the-clouds%26catid%3D42%26Itemid%3D43&= ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1276807400:&cd=3DTxFQjtC1zws&a= mp;usg=3DAFQjCNFAhQpBaKEMlSWqUN99qxWZVCTHgQ"> Can Lamp Light Up The Clouds?</a><br> <font size=3D"-1"><font color=3D"#666666">Data Center Journal</font><br> For instance, the PHP may be replaced by <b>Python</b> or Perl. Also, the A= MP part of LAMP (ie, the software suite) can run on other operating systems= like Windows <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://datacenterjournal.com/inde= x.php%253Foption%253Dcom_content%2526view%253Darticle%2526id%253D3661:can-l= amp-light-up-the-clouds%2526catid%253D42%2526Itemid%253D43%26hl%3Den&ct= =3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1276807400:&cd=3DTxFQjtC1zws&= ;usg=3DAFQjCNHP1ONSaUe9wL6zN-d64CTZ_bWmTQ" title=3D"http://news.google.com/= news/story?ncl=3Dhttp://datacenterjournal.com/index.php%3Foption%3Dcom_cont= ent%26view%3Darticle%26id%3D3661:can-lamp-light-up-the-clouds%26catid%3D42%= 26Itemid%3D43&hl=3Den">See all stories on this topic</a></font></td></t= r></table><p><hr noshade size=3D1><font size=3D"-1"> This once a day G= oogle Alert is brought to you by Google.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DTxFQ= jtC1zws&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DTxFQjtC1zws&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DTxFQjtC1zws&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.148 with SMTP id c20cs154032wel; Fri, 18 Jun 2010 14:31:57 -0700 (PDT) Return-Path: <3yuUbTBQKCRg4CC492y92FHG-BCF2D9M4CC492.0CA5C912BK2z4Ay69.0CA@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3yuUbTBQKCRg4CC492y92FHG-BCF2D9M4CC492.0CA5C912BK2z4Ay69.0CA@alerts.bounces.google.com designates 10.151.19.38 as permitted sender) client-ip=10.151.19.38; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3yuUbTBQKCRg4CC492y92FHG-BCF2D9M4CC492.0CA5C912BK2z4Ay69.0CA@alerts.bounces.google.com designates 10.151.19.38 as permitted sender) smtp.mail=3yuUbTBQKCRg4CC492y92FHG-BCF2D9M4CC492.0CA5C912BK2z4Ay69.0CA@alerts.bounces.google.com; dkim=pass header.i=3yuUbTBQKCRg4CC492y92FHG-BCF2D9M4CC492.0CA5C912BK2z4Ay69.0CA@alerts.bounces.google.com Received: from mr.google.com ([10.151.19.38]) by 10.151.19.38 with SMTP id w38mr1321195ybi.28.1276896714251 (num_hops = 1); Fri, 18 Jun 2010 14:31:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=/mI36N6itLm56pJ6eBzpUvFnGOtn1m6jBUjapAVbr+Y=; b=b+PXuAI0geSouzLR9BSU/m1qbMad1i7WjyLBSjdYQkZQAQ+h70btC+NbqXuM+N0lj7 Ky7wu0dZ06mJ6XdWAAfw== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=BbKip50VtwII0VEF9DLL9261EfsetwsLRrSnc56BUurpIaP6QeIULhz8Jtk165RDXK /NauwOpFcoDEvzjfruHQ== MIME-Version: 1.0 Received: by 10.151.19.38 with SMTP id w38mr1033603ybi.28.1276896714233; Fri, 18 Jun 2010 14:31:54 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cdf17d61116ce048954af8e@google.com> Date: Fri, 18 Jun 2010 21:31:54 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://lifehacker.com/5567258/googlecl-brings-google-services-to-the-command= -line%3Fskyline%3Dtrue%26s%3Di&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:= t1276896713:&cd=3DtQUQinbjC5k&usg=3DAFQjCNEe0Pd7xPm20zjRRD2Q0kb7VB6= DVw"> GoogleCL Brings Google Services to the Command Line</a><br> <font size=3D"-1"><font color=3D"#666666">Lifehacker</font><br> GoogleCL is a <b>python</b> program that can access and perform a number of= actions in Blogger, Calendar, Contacts, Docs, Picasa, and YouTube. <b>...<= /b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://lifehacker.com/5567258/goo= glecl-brings-google-services-to-the-command-line%253Fskyline%253Dtrue%2526s= %253Di%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276896713:&a= mp;cd=3DtQUQinbjC5k&usg=3DAFQjCNGLcxwpJTT8DYAlbePCGnx5KbSP_w" title=3D"= http://news.google.com/news/story?ncl=3Dhttp://lifehacker.com/5567258/googl= ecl-brings-google-services-to-the-command-line%3Fskyline%3Dtrue%26s%3Di&= ;hl=3Den">See all stories on this topic</a></font></td></tr><tr><td style= =3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://media-newswire.com/release_1121070.html&ct=3Dga&cad=3D:s1:f2:= v0:i0:lt:e1:p1:t1276896713:&cd=3DtQUQinbjC5k&usg=3DAFQjCNGsFSZ1gV0G= 1edmazNdFNCO8Z0uig"> New C++ Course Authored by Steve Oualline Available from the O'Reilly S= chool <b>...</b></a><br> <font size=3D"-1"><font color=3D"#666666">Media Newswire (press release)</f= ont><br> In addition to the C++ course and upcoming Certificate series, the O'Re= illy School of Technology currently offers Certificate courses in <b>Python= </b> Programming, <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://media-newswire.com/release= _1121070.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t127689= 6713:&cd=3DtQUQinbjC5k&usg=3DAFQjCNHxhB-pBTHofk3j5q-wrMDSYDs_OA" ti= tle=3D"http://news.google.com/news/story?ncl=3Dhttp://media-newswire.com/re= lease_1121070.html&hl=3Den">See all stories on this topic</a></font></t= d></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.h-online.com/open/news/item/Zarafa-unveils-new-framework-1025486.= html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1276896713:&cd=3DtQUQ= inbjC5k&usg=3DAFQjCNGskuNvjfFXCFNmwhWDCr0OB4W3xw"> Zarafa unveils new framework</a><br> <font size=3D"-1"><font color=3D"#666666">The H</font><br> The new <b>Python</b> language Messaging API (MAPI) binding provides full M= API access from <b>Python</b> =96 documentation is provided. Zarafa also an= nounced its new Zarafa <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.h-online.com/open/news= /item/Zarafa-unveils-new-framework-1025486.html%26hl%3Den&ct=3Dga&c= ad=3D:s1:f2:v0:i0:lr:e2:p2:t1276896713:&cd=3DtQUQinbjC5k&usg=3DAFQj= CNFXYatpgjJq8sqKfIJsTUMbGNgSmQ" title=3D"http://news.google.com/news/story?= ncl=3Dhttp://www.h-online.com/open/news/item/Zarafa-unveils-new-framework-1= 025486.html&hl=3Den">See all stories on this topic</a></font></td></tr>= <tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.thechicago77.com/2010/06/interest-rates-dip-at-end-of-week/&c= t=3Dga&cad=3D:s1:f2:v0:i0:lt:e3:p3:t1276896713:&cd=3DtQUQinbjC5k&am= p;usg=3DAFQjCNHHuzltiAMwqQzv9OgLQ1SnsIuH7A"> Interest Rates Dip At End of Week</a><br> <font size=3D"-1"><font color=3D"#666666">The Chicago 77 (blog)</font><br> Based on this, lenders are scrambling to meet the demand for end of June cl= osings resulting from the =93pig in a <b>python</b>=94 effect the credit cr= eated. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.thechicago77.com/2010/= 06/interest-rates-dip-at-end-of-week/%26hl%3Den&ct=3Dga&cad=3D:s1:f= 2:v0:i0:lr:e3:p3:t1276896713:&cd=3DtQUQinbjC5k&usg=3DAFQjCNFs4n5vz3= VtQrfUWEC1Xfh4VG5VQw" title=3D"http://news.google.com/news/story?ncl=3Dhttp= ://www.thechicago77.com/2010/06/interest-rates-dip-at-end-of-week/&hl= =3Den">See all stories on this topic</a></font></td></tr></table><p><hr nos= hade size=3D1><font size=3D"-1">Tip: Use a minus sign (-) in front of terms= in your query that you want to exclude.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DtQUQ= inbjC5k&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DtQUQinbjC5k&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DtQUQinbjC5k&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.178.3 with SMTP id e3cs31549wem; Sat, 19 Jun 2010 15:55:50 -0700 (PDT) Return-Path: <380odTBQKCacNVVNSLHSLYaZ-UVYLWSfNVVNSL.JVTOVSKLUdLINTHPS.JVT@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 380odTBQKCacNVVNSLHSLYaZ-UVYLWSfNVVNSL.JVTOVSKLUdLINTHPS.JVT@alerts.bounces.google.com designates 10.151.132.13 as permitted sender) client-ip=10.151.132.13; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 380odTBQKCacNVVNSLHSLYaZ-UVYLWSfNVVNSL.JVTOVSKLUdLINTHPS.JVT@alerts.bounces.google.com designates 10.151.132.13 as permitted sender) smtp.mail=380odTBQKCacNVVNSLHSLYaZ-UVYLWSfNVVNSL.JVTOVSKLUdLINTHPS.JVT@alerts.bounces.google.com; dkim=pass header.i=380odTBQKCacNVVNSLHSLYaZ-UVYLWSfNVVNSL.JVTOVSKLUdLINTHPS.JVT@alerts.bounces.google.com Received: from mr.google.com ([10.151.132.13]) by 10.151.132.13 with SMTP id j13mr2335407ybn.7.1276988147283 (num_hops = 1); Sat, 19 Jun 2010 15:55:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=YcXP//zj0rkYIdCywY1CQQUSTSECU+Ugc2grnuSt78I=; b=Yuo1Ni2hOg9/YsKh2iebr73ubq2HIxUwnsG4Isu3g00JA3Bg+Dk2AbN59AXItDEyFh EDjbMmrQqKWlzdRVy7CA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=aTXcB6KSpybPlTPXXFLVNnVXuDwDciBE+E72Ygl7IW/o4WfZOpSBFqxBy8WcagmodA nT5ItrfBjMdXOlh/axZQ== MIME-Version: 1.0 Received: by 10.151.132.13 with SMTP id j13mr1826846ybn.7.1276988147215; Sat, 19 Jun 2010 15:55:47 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <001485eba6f6e5d5df048969f824@google.com> Date: Sat, 19 Jun 2010 22:55:47 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.pcworld.com/article/199300/googlecl_control_your_google_apps_from= _the_command_line.html%3Ftk%3Dhp_blg&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:= e0:p0:t1276988145:&cd=3D6KL4yxvZB5w&usg=3DAFQjCNHPqBc1DHyVWaX43lDU9= lSlyhPMyw"> GoogleCL: Control Your Google Apps From the Command Line</a><br> <font size=3D"-1"><font color=3D"#666666">PC World</font><br> The first thing I did is make sure I had <b>Python</b> 2.5 or above install= ed, as well as the latest version of the Google Data <b>Python</b> Library.= <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.pcworld.com/article/19= 9300/googlecl_control_your_google_apps_from_the_command_line.html%253Ftk%25= 3Dhp_blg%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1276988145:= &cd=3D6KL4yxvZB5w&usg=3DAFQjCNFoDz8WQwGlfTEJ7JsmGSqqRPLsDA" title= =3D"http://news.google.com/news/story?ncl=3Dhttp://www.pcworld.com/article/= 199300/googlecl_control_your_google_apps_from_the_command_line.html%3Ftk%3D= hp_blg&hl=3Den">See all stories on this topic</a></font></td></tr><tr><= td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= justpressplay.net/movie-reviews/929-dvd-reviews/6723-not-the-messiah-hes-a-= very-naughty-boy.html&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e1:p1:t12769881= 45:&cd=3D6KL4yxvZB5w&usg=3DAFQjCNEno1iA7wjSy4Wm5UvThH-KfeCTJg"><img= border=3D"0" src=3D"http://nt2.ggpht.com/news/tbn/ioeyIftjPYcJ" alt=3D"" w= idth=3D"80" height=3D"80"></a></td></tr><tr><td align=3D"center"><font size= =3D-2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.justpr= essplay.net/movie-reviews/929-dvd-reviews/6723-not-the-messiah-hes-a-very-n= aughty-boy.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e1:p1:t1276988145:&a= mp;cd=3D6KL4yxvZB5w&usg=3DAFQjCNEno1iA7wjSy4Wm5UvThH-KfeCTJg">JustPress= Play</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.justpressplay.net/movie-reviews/929-dvd-reviews/6723-not-the-mess= iah-hes-a-very-naughty-boy.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1= :t1276988145:&cd=3D6KL4yxvZB5w&usg=3DAFQjCNEno1iA7wjSy4Wm5UvThH-Kfe= CTJg"> Not the Messiah (He's a Very Naughty Boy)</a><br> <font size=3D"-1"><font color=3D"#666666">JustPressPlay</font><br> The cult of <b>Python</b> has long been a homegrown British mainstay, but i= t's peculiarities and often brilliant humor were also successfully embr= aced by world <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.justpressplay.net/movi= e-reviews/929-dvd-reviews/6723-not-the-messiah-hes-a-very-naughty-boy.html%= 26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1276988145:&cd= =3D6KL4yxvZB5w&usg=3DAFQjCNHXZl8wX6cZt7F_lEeryJC6LAoXqA" title=3D"http:= //news.google.com/news/story?ncl=3Dhttp://www.justpressplay.net/movie-revie= ws/929-dvd-reviews/6723-not-the-messiah-hes-a-very-naughty-boy.html&hl= =3Den">See all stories on this topic</a></font></td></tr><tr><td style=3D"p= adding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://pr-usa.net/index.php%3Foption%3Dcom_content%26task%3Dview%26id%3D4186= 59%26Itemid%3D33&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1276988145:&a= mp;cd=3D6KL4yxvZB5w&usg=3DAFQjCNH03cLOGhmoGBtFhimrPUvF8k5nmQ"> ActiveState Named to SD Times 100 for Third Consecutive Year</a><br> <font size=3D"-1"><font color=3D"#666666">PR-USA.net (press release)</font>= <br> ActiveState, the dynamic language experts offering solutions for Perl, <b>P= ython</b>, and Tcl, has been named to SD Times 100 for the third consecutiv= e year in the <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://pr-usa.net/index.php%253Fo= ption%253Dcom_content%2526task%253Dview%2526id%253D418659%2526Itemid%253D33= %26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1276988145:&cd= =3D6KL4yxvZB5w&usg=3DAFQjCNGn3T09ywGqDuQBruZfiDF4BBcOxg" title=3D"http:= //news.google.com/news/story?ncl=3Dhttp://pr-usa.net/index.php%3Foption%3Dc= om_content%26task%3Dview%26id%3D418659%26Itemid%3D33&hl=3Den">See all s= tories on this topic</a></font></td></tr><tr><td style=3D"padding-bottom:1e= m"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://techfreqnews.com/2010/06/19/google-introduces-command-line-utility-2/= &ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e3:p3:t1276988145:&cd=3D6KL4yxvZ= B5w&usg=3DAFQjCNHdjt1cePUtCr5SU8Bi07EIqKStaw"> Google Introduces Command Line Utility</a><br> <font size=3D"-1"><font color=3D"#666666">TechFreq News</font><br> =93GoogleCL is a pure <b>Python</b> application that uses the <b>Python</b>= gdata libraries to make Google Data API calls from the command line,=94 Go= ogle said in a blog post <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://techfreqnews.com/2010/06/1= 9/google-introduces-command-line-utility-2/%26hl%3Den&ct=3Dga&cad= =3D:s1:f2:v0:i0:lr:e3:p3:t1276988145:&cd=3D6KL4yxvZB5w&usg=3DAFQjCN= FE_8UhktN0R_UbcUJK1XTyoH3BdQ" title=3D"http://news.google.com/news/story?nc= l=3Dhttp://techfreqnews.com/2010/06/19/google-introduces-command-line-utili= ty-2/&hl=3Den">See all stories on this topic</a></font></td></tr></tabl= e><p><hr noshade size=3D1><font size=3D"-1"> This once a day Google Al= ert is brought to you by Google.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D6KL4= yxvZB5w&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D6KL4yxvZB5w&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D6KL4yxvZB5w&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.178.3 with SMTP id e3cs63303wem; Sun, 20 Jun 2010 15:45:30 -0700 (PDT) Return-Path: <3CJoeTBQKCQ0t11tyrnyr465-014r2yBt11tyr.p1zu1yqr09rotznvy.p1z@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3CJoeTBQKCQ0t11tyrnyr465-014r2yBt11tyr.p1zu1yqr09rotznvy.p1z@alerts.bounces.google.com designates 10.151.32.19 as permitted sender) client-ip=10.151.32.19; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3CJoeTBQKCQ0t11tyrnyr465-014r2yBt11tyr.p1zu1yqr09rotznvy.p1z@alerts.bounces.google.com designates 10.151.32.19 as permitted sender) smtp.mail=3CJoeTBQKCQ0t11tyrnyr465-014r2yBt11tyr.p1zu1yqr09rotznvy.p1z@alerts.bounces.google.com; dkim=pass header.i=3CJoeTBQKCQ0t11tyrnyr465-014r2yBt11tyr.p1zu1yqr09rotznvy.p1z@alerts.bounces.google.com Received: from mr.google.com ([10.151.32.19]) by 10.151.32.19 with SMTP id k19mr3483801ybj.5.1277073928145 (num_hops = 1); Sun, 20 Jun 2010 15:45:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=HBDwngrhj6uhFCac8Gu+8QkQePpY+u+mhfln2DK+Gyc=; b=DQjq6spTnxHHKfsW/nIaJSJDB1g7knbZXjE1stUd7CTdNvTIjSs/0pjwfL4G7Gfgvy 1sSChQGJafORlV8RyaJQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=B7ii0VvCxUoxtd9dGtvZ7DNjMRLLBc+WlIbr03/v2Qsvo4wvLlb0PostTGPQcV2ZUF cf8rSolYkg10P6/UbgPQ== MIME-Version: 1.0 Received: by 10.151.32.19 with SMTP id k19mr2723721ybj.5.1277073928098; Sun, 20 Jun 2010 15:45:28 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cd72b1ad6160804897df1a4@google.com> Date: Sun, 20 Jun 2010 22:45:28 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.pcmag.com/article2/0,2817,2365328,00.asp&ct=3Dga&cad=3D:s= 1:f2:v0:i0:lt:e0:p0:t1277073928:&cd=3D9eTf3lsoi0k&usg=3DAFQjCNEKABF= zPt1xXIdfmppyVEMA7l1ZtQ"> Googling from the Command Line with GoogleCL</a><br> <font size=3D"-1"><font color=3D"#666666">PC Magazine</font><br> The utility is geared for Linux users=97in fact, this <b>Python</b>-based a= pplication cites Linux as the primary operating system supported by GoogleC= L, <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.pcmag.com/article2/0,2= 817,2365328,00.asp%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1= 277073928:&cd=3D9eTf3lsoi0k&usg=3DAFQjCNHYtQ-WRbg-TUiNTTVNeHQklgMt7= Q" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.pcmag.com/ar= ticle2/0,2817,2365328,00.asp&hl=3Den">See all stories on this topic</a>= </font></td></tr></table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use= a minus sign (-) in front of terms in your query that you want to exclude.= </font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D9eTf= 3lsoi0k&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D9eTf3lsoi0k&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D9eTf3lsoi0k&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.178.3 with SMTP id e3cs113026wem; Mon, 21 Jun 2010 13:40:20 -0700 (PDT) Return-Path: <3Mc4fTBQKCWsPXXPUNJUNacb-WXaNYUhPXXPUN.LXVQXUMNWfNKPVJRU.LXV@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3Mc4fTBQKCWsPXXPUNJUNacb-WXaNYUhPXXPUN.LXVQXUMNWfNKPVJRU.LXV@alerts.bounces.google.com designates 10.100.196.7 as permitted sender) client-ip=10.100.196.7; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3Mc4fTBQKCWsPXXPUNJUNacb-WXaNYUhPXXPUN.LXVQXUMNWfNKPVJRU.LXV@alerts.bounces.google.com designates 10.100.196.7 as permitted sender) smtp.mail=3Mc4fTBQKCWsPXXPUNJUNacb-WXaNYUhPXXPUN.LXVQXUMNWfNKPVJRU.LXV@alerts.bounces.google.com; dkim=pass header.i=3Mc4fTBQKCWsPXXPUNJUNacb-WXaNYUhPXXPUN.LXVQXUMNWfNKPVJRU.LXV@alerts.bounces.google.com Received: from mr.google.com ([10.100.196.7]) by 10.100.196.7 with SMTP id t7mr3507582anf.56.1277152817296 (num_hops = 1); Mon, 21 Jun 2010 13:40:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=zNS+3h0Tru25Ou7lDYYlZa0LY0Ut8IIxoyF2VO6ukJ8=; b=xihbBvT4rM5WdGeZh54TojsefsV7bcueIFQKYMCt4qzNKMz6NkOVpYZvAB+nBLMzG0 fOummaoKBU/oXDh4EkQA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=CPkOBV3Gpw/GZfXmdCEnac7RtEXFaxB0N7qx45N/3NufxVnFPBmTSj2xvxCCOgbA5B RgyjxbN69tFq0wZ368MQ== MIME-Version: 1.0 Received: by 10.100.196.7 with SMTP id t7mr2454178anf.56.1277152817272; Mon, 21 Jun 2010 13:40:17 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e642d1aaff57140489904f85@google.com> Date: Mon, 21 Jun 2010 20:40:17 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<br> <font size=3D"-1"><font color=3D"#666666">Crikey</font><br> The resignation of John Mendoza as chair of the federal government's Na= tional Advisory Council on Mental Health would not have come as a surprise = to readers <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.crikey.com.au/2010/06/= 21/mendoza-to-crikey-rudds-mental-health-approach-python-esque/%26hl%3Den&a= mp;ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1277152817:&cd=3DBvIzqeu3W5= o&usg=3DAFQjCNEAC8KaPwX-S09t2qcSZ8RySjUMBA" title=3D"http://news.google= .com/news/story?ncl=3Dhttp://www.crikey.com.au/2010/06/21/mendoza-to-crikey= -rudds-mental-health-approach-python-esque/&hl=3Den">See all stories on=
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.downloadsquad.com/2010/06/21/googlecl-command-line-tool/&ct= =3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1277152817:&cd=3DBvIzqeu3W5o&= ;usg=3DAFQjCNEBO8igAHReQgttG1hQtABeefFy-A"> GoogleCL: Your command line might get more love now</a><br> <font size=3D"-1"><font color=3D"#666666">Downloadsquad (blog)</font><br> Users can now interact with several of the most popular Google services via= command line, and all that's required is <b>Python</b> and a bit of li= ght CLI <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.downloadsquad.com/2010= /06/21/googlecl-command-line-tool/%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v= 0:i0:lr:e0:p0:t1277152817:&cd=3DBvIzqeu3W5o&usg=3DAFQjCNGpl2SDkjYb8= E0JxsRzg3GbDFs7XQ" title=3D"http://news.google.com/news/story?ncl=3Dhttp://= www.downloadsquad.com/2010/06/21/googlecl-command-line-tool/&hl=3Den">S= ee all stories on this topic</a></font></td></tr><tr><td style=3D"padding-b= ottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.eweek.com/c/a/Application-Development/Top-10-Programming-Language= s-to-Keep-You-Employed-719257/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:= t1277152817:&cd=3DBvIzqeu3W5o&usg=3DAFQjCNE8sVAJ2Uu9DeOQAwNKV3hkOH1= pqg"> Top 10 Programming Languages to Keep You Employed</a><br> <font size=3D"-1"><font color=3D"#666666">eWeek</font><br> While demand for the dynamic or scripting languages such as Perl, <b>Python= </b>, PHP and Ruby lags behind that of Java and more mainstream languages, = <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.eweek.com/c/a/Applicat= ion-Development/Top-10-Programming-Languages-to-Keep-You-Employed-719257/%2= 6hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1277152817:&cd=3D= BvIzqeu3W5o&usg=3DAFQjCNGk53BJ-MXNkqsaU0YdPnFqLXuaxQ" title=3D"http://n= ews.google.com/news/story?ncl=3Dhttp://www.eweek.com/c/a/Application-Develo= pment/Top-10-Programming-Languages-to-Keep-You-Employed-719257/&hl=3Den= ">See all stories on this topic</a></font></td></tr><tr><td style=3D"paddin= g-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.crikey.com.au/2010/06/21/mendoza-to-crikey-rudds-mental-health-ap= proach-python-esque/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t127715281= 7:&cd=3DBvIzqeu3W5o&usg=3DAFQjCNH97e0siWC2DvA3btLyVJ_PwpQuEA"> Mendoza to Crikey: Rudd's mental health approach <b>Python</b>-esque</a= this topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= desktoplinux.com/news/NS5899605753.html&ct=3Dga&cad=3D:s1:f2:v0:i0:= li:e3:p3:t1277152817:&cd=3DBvIzqeu3W5o&usg=3DAFQjCNFVwc-9EPc26-i-wz= XDWfLbJaYZwQ"><img border=3D"0" src=3D"http://nt0.ggpht.com/news/tbn/nDKisW= K6puwJ" alt=3D"" width=3D"80" height=3D"60"></a></td></tr><tr><td align=3D"= center"><font size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&q= =3Dhttp://www.desktoplinux.com/news/NS5899605753.html&ct=3Dga&cad= =3D:s1:f2:v0:i0:lic:e3:p3:t1277152817:&cd=3DBvIzqeu3W5o&usg=3DAFQjC= NFVwc-9EPc26-i-wzXDWfLbJaYZwQ">eWeek</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.desktoplinux.com/news/NS5899605753.html&ct=3Dga&cad=3D:s1= :f2:v0:i0:lt:e3:p3:t1277152817:&cd=3DBvIzqeu3W5o&usg=3DAFQjCNFVwc-9= EPc26-i-wzXDWfLbJaYZwQ"> Fedora 13 praised for security and permissions enhancements</a><br> <font size=3D"-1"><font color=3D"#666666">eWeek</font><br> Meanwhile, the distro's <b>Python</b> bindings have been enhanced, with= a parallel-installable <b>Python</b> 3 stack that lets developers write an= d test code using either <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.desktoplinux.com/news/= NS5899605753.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e3:p3:t12= 77152817:&cd=3DBvIzqeu3W5o&usg=3DAFQjCNGqHmmLvZt_amRPQlS-T6ust_1kcA= " title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.desktoplinux.= com/news/NS5899605753.html&hl=3Den">See all stories on this topic</a></= font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.opednews.com/articles/Barky-Python-s-Dead-Pelica-by-Charles-M-You= ng-100621-776.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e4:p4:t1277152817:= &cd=3DBvIzqeu3W5o&usg=3DAFQjCNG4o9NwvC3_BwThVoCGNQ_vpkm-Wg"> Barky <b>Python's</b> Dead Pelican Society</a><br> <font size=3D"-1"><font color=3D"#666666">OpEdNews</font><br> By Charles M. Young, Posted by Dave Lindorff (about the submitter) Page 1 o= f 1 page(s) By Charles M. Young By Charles M. Young CUSTOMER: Never mind ab= out <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.opednews.com/articles/= Barky-Python-s-Dead-Pelica-by-Charles-M-Young-100621-776.html%26hl%3Den&= ;ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e4:p4:t1277152817:&cd=3DBvIzqeu3W5o&= amp;usg=3DAFQjCNFPCrqAI2tCscf6D49MkLsMPnt1lQ" title=3D"http://news.google.c= om/news/story?ncl=3Dhttp://www.opednews.com/articles/Barky-Python-s-Dead-Pe= lica-by-Charles-M-Young-100621-776.html&hl=3Den">See all stories on thi= s topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.fashionandrunway.com/fashion/article.cfm%3Fid_articolo%3D22220&am= p;ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e5:p5:t1277152817:&cd=3DBvIzqeu3W5o= &usg=3DAFQjCNFxHEYt26_o61Py9x2E9S_U58K5MA"> A man with a 'gypsy deluxe' for Gucci</a><br> <font size=3D"-1"><font color=3D"#666666">Fashion & Runway</font><br> The palette sweeps from shades of dark blue to earth and gray tones, light = sieved natural hues to the peaks of color of luscious <b>python</b> and cow= hide textures <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.fashionandrunway.com/f= ashion/article.cfm%253Fid_articolo%253D22220%26hl%3Den&ct=3Dga&cad= =3D:s1:f2:v0:i0:lr:e5:p5:t1277152817:&cd=3DBvIzqeu3W5o&usg=3DAFQjCN= GI8dUHrQXyU0mDr_BQcIp2_aESYw" title=3D"http://news.google.com/news/story?nc= l=3Dhttp://www.fashionandrunway.com/fashion/article.cfm%3Fid_articolo%3D222= 20&hl=3Den">See all stories on this topic</a></font></td></tr></table><= p><hr noshade size=3D1><font size=3D"-1">Tip: Use a plus sign (+) to match = a term in your query exactly as is.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DBvIz= qeu3W5o&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DBvIzqeu3W5o&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DBvIzqeu3W5o&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.81 with SMTP id b59cs200475wel; Tue, 22 Jun 2010 13:40:13 -0700 (PDT) Return-Path: <3qx8hTBQKCTgaiiafYUfYlnm-hilYjfsaiiafY.WigbifXYhqYVagUcf.Wig@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3qx8hTBQKCTgaiiafYUfYlnm-hilYjfsaiiafY.WigbifXYhqYVagUcf.Wig@alerts.bounces.google.com designates 10.100.24.35 as permitted sender) client-ip=10.100.24.35; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3qx8hTBQKCTgaiiafYUfYlnm-hilYjfsaiiafY.WigbifXYhqYVagUcf.Wig@alerts.bounces.google.com designates 10.100.24.35 as permitted sender) smtp.mail=3qx8hTBQKCTgaiiafYUfYlnm-hilYjfsaiiafY.WigbifXYhqYVagUcf.Wig@alerts.bounces.google.com; dkim=pass header.i=3qx8hTBQKCTgaiiafYUfYlnm-hilYjfsaiiafY.WigbifXYhqYVagUcf.Wig@alerts.bounces.google.com Received: from mr.google.com ([10.100.24.35]) by 10.100.24.35 with SMTP id 35mr5096258anx.5.1277239211159 (num_hops = 1); Tue, 22 Jun 2010 13:40:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=VD7Sd4TjKeKpIF1te/+L7kr9fx2n+LCcin6ZT0N+6EM=; b=NZ1oArZw4qf74zP0gbaFMzI9WG/9ZGZsCICZ+WkXfC+nG7ozQ/EgW6Pss0qHKCGCGR zpSkUmBBb22tnxb/94ag== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=PDs/7F+UPYQGSuO4Ksh2kUdLgbBS1G3EsiM31/e2XuZY54qYcnZIrTrtxoAm3gvNLV v5YsBObDqm687D0dutjQ== MIME-Version: 1.0 Received: by 10.100.24.35 with SMTP id 35mr3560609anx.5.1277239211130; Tue, 22 Jun 2010 13:40:11 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e64690b67901f30489a46dfc@google.com> Date: Tue, 22 Jun 2010 20:40:11 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.fiercecio.com/techwatch/story/google-releases-command-line-tool-i= ts-web-services/2010-06-22&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t127= 7239211:&cd=3DFB2DcndWiGQ&usg=3DAFQjCNH4Dk2KPr9RbItSNqu0q-KNa3PN_A"=
See all stories on this topic</a></font></td></tr><tr><td style=3D"padding= -bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= telegraph.co.uk/culture/music/michael-jackson/7843202/Michael-Jacksons-mena= gerie.html&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e3:p3:t1277239211:&cd= =3DFB2DcndWiGQ&usg=3DAFQjCNEeA7f9db-g8haT5QmTeZVcEkNyaw"><img border=3D= "0" src=3D"http://nt0.ggpht.com/news/tbn/jFGIVpX8wTAJ" alt=3D"" width=3D"80= " height=3D"50"></a></td></tr><tr><td align=3D"center"><font size=3D-2><a h= ref=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.telegraph.co.uk/= culture/music/michael-jackson/7843202/Michael-Jacksons-menagerie.html&c= t=3Dga&cad=3D:s1:f2:v0:i0:lic:e3:p3:t1277239211:&cd=3DFB2DcndWiGQ&a= mp;usg=3DAFQjCNEeA7f9db-g8haT5QmTeZVcEkNyaw">Telegraph.co.uk</a></font></td= </tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.telegraph.co.uk/culture/music/michael-jackson/7843202/Michael-Jac= ksons-menagerie.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e3:p3:t127723921= 1:&cd=3DFB2DcndWiGQ&usg=3DAFQjCNEeA7f9db-g8haT5QmTeZVcEkNyaw"> Michael Jackson's menagerie</a><br> <font size=3D"-1"><font color=3D"#666666">Telegraph.co.uk</font><br> Today, the park has 12000 exotic animals =96 including Madonna, Jackson'= ;s albino <b>python</b>, and the singer's alligators =96 many of which = are sponsored by the <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.telegraph.co.uk/cultur= e/music/michael-jackson/7843202/Michael-Jacksons-menagerie.html%26hl%3Den&a= mp;ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e3:p3:t1277239211:&cd=3DFB2DcndWiG= Q&usg=3DAFQjCNHmqTwcmdDbKf9p1jTxhmQrmSbwDQ" title=3D"http://news.google= .com/news/story?ncl=3Dhttp://www.telegraph.co.uk/culture/music/michael-jack= son/7843202/Michael-Jacksons-menagerie.html&hl=3Den">See all stories on=
Google releases command line tool for its web services</a><br> <font size=3D"-1"><font color=3D"#666666">FierceCIO</font><br> Called the Google Command Line Tool or GoogleCL for short, the powerful set= of utilities is based on <b>Python</b> and available on Windows (NASDAQ: M= SFT), Linux, <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.fiercecio.com/techwatc= h/story/google-releases-command-line-tool-its-web-services/2010-06-22%26hl%= 3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1277239211:&cd=3DFB2D= cndWiGQ&usg=3DAFQjCNFFZ5wZ3tElAn9EIXd47RycpoRD9g" title=3D"http://news.= google.com/news/story?ncl=3Dhttp://www.fiercecio.com/techwatch/story/google= -releases-command-line-tool-its-web-services/2010-06-22&hl=3Den">See al= l stories on this topic</a></font></td></tr><tr><td style=3D"padding-bottom= :1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.statecollege.com/news/local-news/news-wrap-wake-up-call-62210-451= 188/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1277239211:&cd=3DFB2D= cndWiGQ&usg=3DAFQjCNGAPFo8PMW6TUiImk4m_bZBp89nUQ"> News Wrap: Wake Up Call (6/22/10)</a><br> <font size=3D"-1"><font color=3D"#666666">State College News</font><br> Escaped <b>Python</b>: A 10-foot caramel and brown <b>python</b> escaped fr= om its cage on Linn Street in Ferguson Township, the Centre Daily Times rep= orted. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.statecollege.com/news/= local-news/news-wrap-wake-up-call-62210-451188/%26hl%3Den&ct=3Dga&c= ad=3D:s1:f2:v0:i0:lr:e1:p1:t1277239211:&cd=3DFB2DcndWiGQ&usg=3DAFQj= CNEoWZVW1nWLdJM9RdDaCvjbzeSDrg" title=3D"http://news.google.com/news/story?= ncl=3Dhttp://www.statecollege.com/news/local-news/news-wrap-wake-up-call-62= 210-451188/&hl=3Den">See all stories on this topic</a></font></td></tr>= <tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://radar.oreilly.com/2010/06/does-the-world-need-yet-anothe.html&ct= =3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1277239211:&cd=3DFB2DcndWiGQ&= ;usg=3DAFQjCNHN53VbbieCgkcB78UTliRlsB69lw"> Does the world need another programming language?</a><br> <font size=3D"-1"><font color=3D"#666666">O'Reilly Radar (blog)</font><= br> RP: Go has the feel of a dynamic language like <b>Python</b> or Ruby or Jav= aScript, but it has the performance and safety of a language like Java or C= or C++. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://radar.oreilly.com/2010/06/= does-the-world-need-yet-anothe.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:= v0:i0:lr:e2:p2:t1277239211:&cd=3DFB2DcndWiGQ&usg=3DAFQjCNF-xU0XL7RC= rkSZmUYtO4SwScCWiQ" title=3D"http://news.google.com/news/story?ncl=3Dhttp:/= /radar.oreilly.com/2010/06/does-the-world-need-yet-anothe.html&hl=3Den"= this topic</a></font></td></tr></table><p><hr noshade size=3D1><font size= =3D"-1">Tip: Use quotes ("like this") around a set of words in your query t= o match them exactly.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DFB2D= cndWiGQ&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DFB2DcndWiGQ&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DFB2DcndWiGQ&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.81 with SMTP id b59cs259503wel; Wed, 23 Jun 2010 13:40:13 -0700 (PDT) Return-Path: <3KnEiTBQKCQoqyyqvokvo132-xy1ozv8qyyqvo.mywryvnox6olqwksv.myw@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3KnEiTBQKCQoqyyqvokvo132-xy1ozv8qyyqvo.mywryvnox6olqwksv.myw@alerts.bounces.google.com designates 10.101.153.35 as permitted sender) client-ip=10.101.153.35; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3KnEiTBQKCQoqyyqvokvo132-xy1ozv8qyyqvo.mywryvnox6olqwksv.myw@alerts.bounces.google.com designates 10.101.153.35 as permitted sender) smtp.mail=3KnEiTBQKCQoqyyqvokvo132-xy1ozv8qyyqvo.mywryvnox6olqwksv.myw@alerts.bounces.google.com; dkim=pass header.i=3KnEiTBQKCQoqyyqvokvo132-xy1ozv8qyyqvo.mywryvnox6olqwksv.myw@alerts.bounces.google.com Received: from mr.google.com ([10.101.153.35]) by 10.101.153.35 with SMTP id f35mr6649810ano.12.1277325610898 (num_hops = 1); Wed, 23 Jun 2010 13:40:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=kFiLsrP9v/OSHU65QDLilh3y3e85btIIkNeDB8Mk8eg=; b=CT+RtsVe43gchT04ZudsS1KZtDIYymcmbw8gSRWD/Z0Og8P014frMafvOBpgMjjXOi y6sUVVNWYyEVWPgUQp0Q== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=o1th2d4KGxpkXv4CpfBbLMQjn+tOFt4HDy28qwIsiA/nOcdXy0NhZwTLkRfpeEj/YU vVyKBBypQyiukjBT5qfA== MIME-Version: 1.0 Received: by 10.101.153.35 with SMTP id f35mr4665147ano.12.1277325610866; Wed, 23 Jun 2010 13:40:10 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e68db9314c58230489b88bda@google.com> Date: Wed, 23 Jun 2010 20:40:10 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
</td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://bleacherreport.com/articles/410031-valentijn-the-python-overeem-signs= -deal-with-strikeforce&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1277325= 610:&cd=3D81GLhd-fVEQ&usg=3DAFQjCNFD_JHVeFQQ1YlWKAZc89eeoxojHA"> Valentijn "The <b>Python</b>" Overeem Signs Deal With Strikeforce= </a><br> <font size=3D"-1"><font color=3D"#666666">Bleacher Report</font><br> In 2010 Valentijn =93The <b>Python</b>=94 Overeem will officially begin his=
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.h-online.com/open/news/item/Second-release-candidate-for-Python-2= -7-arrives-1027705.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t127732= 5610:&cd=3D81GLhd-fVEQ&usg=3DAFQjCNFErUkqrZ_LqQDowxqFNZMfV7msPw"> Second release candidate for <b>Python</b> 2.7 arrives</a><br> <font size=3D"-1"><font color=3D"#666666">The H</font><br> The <b>Python</b> developers have published a second release candidate for = <b>Python</b> 2.7. According to the change log, <b>Python</b> 2.7 RC2 resol= ves ten issues with the <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.h-online.com/open/news= /item/Second-release-candidate-for-Python-2-7-arrives-1027705.html%26hl%3De= n&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1277325610:&cd=3D81GLhd-= fVEQ&usg=3DAFQjCNEVkPVlSKpFZskFiyFtzSSWZEh-lA" title=3D"http://news.goo= gle.com/news/story?ncl=3Dhttp://www.h-online.com/open/news/item/Second-rele= ase-candidate-for-Python-2-7-arrives-1027705.html&hl=3Den">See all stor= ies on this topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://blea= cherreport.com/articles/410031-valentijn-the-python-overeem-signs-deal-with= -strikeforce&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e1:p1:t1277325610:&c= d=3D81GLhd-fVEQ&usg=3DAFQjCNFD_JHVeFQQ1YlWKAZc89eeoxojHA"><img border= =3D"0" src=3D"http://nt1.ggpht.com/news/tbn/edTsJ539WwAJ" alt=3D"" width=3D= "80" height=3D"55"></a></td></tr><tr><td align=3D"center"><font size=3D-2><= a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://bleacherreport.co= m/articles/410031-valentijn-the-python-overeem-signs-deal-with-strikeforce&= amp;ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e1:p1:t1277325610:&cd=3D81GLhd-f= VEQ&usg=3DAFQjCNFD_JHVeFQQ1YlWKAZc89eeoxojHA">Bleacher Report</a></font= pursuit of his brother and Golden Glory teammate Alistair Overeem 's c= hampionship belt, <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://bleacherreport.com/article= s/410031-valentijn-the-python-overeem-signs-deal-with-strikeforce%26hl%3Den= &ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1277325610:&cd=3D81GLhd-f= VEQ&usg=3DAFQjCNG36v3-lEXh5hYvYUr9opH2V8_SXA" title=3D"http://news.goog= le.com/news/story?ncl=3Dhttp://bleacherreport.com/articles/410031-valentijn= -the-python-overeem-signs-deal-with-strikeforce&hl=3Den">See all storie= s on this topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.statecollege.com/news/local-news/news-wrap-wake-up-call-62310-452= 495/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1277325610:&cd=3D81GL= hd-fVEQ&usg=3DAFQjCNFjDHe_eM0llg1gEZGmfL7IS5rGOQ"> News Wrap: Wake Up Call (6/23/10)</a><br> <font size=3D"-1"><font color=3D"#666666">State College News</font><br> Escaped <b>Python</b>: A 10-foot brown and caramel <b>python</b> that escap= ed from a nearby home is still missing, police said. Police are advising re= sidents to keep <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.statecollege.com/news/= local-news/news-wrap-wake-up-call-62310-452495/%26hl%3Den&ct=3Dga&c= ad=3D:s1:f2:v0:i0:lr:e2:p2:t1277325610:&cd=3D81GLhd-fVEQ&usg=3DAFQj= CNED-MCZBz_3C4bmhZdYSt0HhZ1hiA" title=3D"http://news.google.com/news/story?= ncl=3Dhttp://www.statecollege.com/news/local-news/news-wrap-wake-up-call-62= 310-452495/&hl=3Den">See all stories on this topic</a></font></td></tr>= <tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://mygl= oss.com/fit/2010/06/23/gloss-find-aetrex-xspress/&ct=3Dga&cad=3D:s1= :f2:v0:i0:li:e3:p3:t1277325610:&cd=3D81GLhd-fVEQ&usg=3DAFQjCNEbW-4_= eZJ_AJW66iINncVFoYg-ZQ"><img border=3D"0" src=3D"http://nt3.ggpht.com/news/= tbn/07m7FVmCDr0J" alt=3D"" width=3D"80" height=3D"47"></a></td></tr><tr><td= align=3D"center"><font size=3D-2><a href=3D"http://www.google.com/url?sa= =3DX&q=3Dhttp://mygloss.com/fit/2010/06/23/gloss-find-aetrex-xspress/&a= mp;ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e3:p3:t1277325610:&cd=3D81GLhd-fV= EQ&usg=3DAFQjCNEbW-4_eZJ_AJW66iINncVFoYg-ZQ">myGLOSS</a></font></td></t= r></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://mygloss.com/fit/2010/06/23/gloss-find-aetrex-xspress/&ct=3Dga&= ;cad=3D:s1:f2:v0:i0:lt:e3:p3:t1277325610:&cd=3D81GLhd-fVEQ&usg=3DAF= QjCNEbW-4_eZJ_AJW66iINncVFoYg-ZQ"> Gloss Find: Aetrex Xspress</a><br> <font size=3D"-1"><font color=3D"#666666">myGLOSS</font><br> <b>...</b> (my favorite being black and coral) with fine details that you w= ouldn't expect on a workout sneaker =E2=80=93=96 like metallic leathers= to <b>python</b> trim. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://mygloss.com/fit/2010/06/23= /gloss-find-aetrex-xspress/%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr= :e3:p3:t1277325610:&cd=3D81GLhd-fVEQ&usg=3DAFQjCNEynjWzLL_sTOtfpruq= 8_JKhGF2bw" title=3D"http://news.google.com/news/story?ncl=3Dhttp://mygloss= .com/fit/2010/06/23/gloss-find-aetrex-xspress/&hl=3Den">See all stories= on this topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.thinkdigit.com/Internet/GoogleCL--finally-a-Command-Line-tool_486= 7.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e4:p4:t1277325610:&cd=3D81= GLhd-fVEQ&usg=3DAFQjCNEH-t4ThfYQFG8qlp_Gic07AMC0_A"> GoogleCL - finally, a Command Line tool for Google services</a><br> <font size=3D"-1"><font color=3D"#666666">Digit</font><br> Written in <b>Python</b>, the project is based on gdata-<b>python</b>-clien= t library and is distributed with Apache 2.0 license. The concept is pretty= simple but <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.thinkdigit.com/Interne= t/GoogleCL--finally-a-Command-Line-tool_4867.html%26hl%3Den&ct=3Dga&= ;cad=3D:s1:f2:v0:i0:lr:e4:p4:t1277325610:&cd=3D81GLhd-fVEQ&usg=3DAF= QjCNH4RKftXmLTWsMLuQyo3ZhgBXVIDA" title=3D"http://news.google.com/news/stor= y?ncl=3Dhttp://www.thinkdigit.com/Internet/GoogleCL--finally-a-Command-Line= -tool_4867.html&hl=3Den">See all stories on this topic</a></font></td><= /tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= gadgetsnreviews.com/healthvault-cloud-based-health-organizer-gets-launched-= in-uk-by-microsoft/2302.html&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e5:p5:t1= 277325610:&cd=3D81GLhd-fVEQ&usg=3DAFQjCNFncQetj04WouS1Mscw-t5I2UcQX= Q"><img border=3D"0" src=3D"http://nt2.ggpht.com/news/tbn/krryuyj_o5MJ" alt= =3D"" width=3D"80" height=3D"56"></a></td></tr><tr><td align=3D"center"><fo= nt size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www= .gadgetsnreviews.com/healthvault-cloud-based-health-organizer-gets-launched= -in-uk-by-microsoft/2302.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e5:p5:= t1277325610:&cd=3D81GLhd-fVEQ&usg=3DAFQjCNFncQetj04WouS1Mscw-t5I2Uc= QXQ">Gadgets Reviews</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.gadgetsnreviews.com/healthvault-cloud-based-health-organizer-gets= -launched-in-uk-by-microsoft/2302.html&ct=3Dga&cad=3D:s1:f2:v0:i0:l= t:e5:p5:t1277325610:&cd=3D81GLhd-fVEQ&usg=3DAFQjCNFncQetj04WouS1Msc= w-t5I2UcQXQ"> HealthVault cloud-based health organizer gets launched in UK by Microsoft</= a><br> <font size=3D"-1"><font color=3D"#666666">Gadgets Reviews</font><br> Using that set of application programming interfaces, development on langua= ges including PHP and <b>Python</b> would be made possible for coders. <b>.= ..</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.gadgetsnreviews.com/he= althvault-cloud-based-health-organizer-gets-launched-in-uk-by-microsoft/230= 2.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e5:p5:t1277325610:&a= mp;cd=3D81GLhd-fVEQ&usg=3DAFQjCNGrkz0AbSDVPGKOsivbM-TYf7zp9g" title=3D"= http://news.google.com/news/story?ncl=3Dhttp://www.gadgetsnreviews.com/heal= thvault-cloud-based-health-organizer-gets-launched-in-uk-by-microsoft/2302.= html&hl=3Den">See all stories on this topic</a></font></td></tr></table=
<p><hr noshade size=3D1><font size=3D"-1"> This once a day Google Ale= rt is brought to you by Google.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D81GL= hd-fVEQ&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D81GLhd-fVEQ&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D81GLhd-fVEQ&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.81 with SMTP id b59cs318185wel; Thu, 24 Jun 2010 13:40:29 -0700 (PDT) Return-Path: <3usIjTBQKCewUccUZSOZSfhg-bcfSdZmUccUZS.QcaVcZRSbkSPUaOWZ.Qca@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3usIjTBQKCewUccUZSOZSfhg-bcfSdZmUccUZS.QcaVcZRSbkSPUaOWZ.Qca@alerts.bounces.google.com designates 10.150.48.22 as permitted sender) client-ip=10.150.48.22; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3usIjTBQKCewUccUZSOZSfhg-bcfSdZmUccUZS.QcaVcZRSbkSPUaOWZ.Qca@alerts.bounces.google.com designates 10.150.48.22 as permitted sender) smtp.mail=3usIjTBQKCewUccUZSOZSfhg-bcfSdZmUccUZS.QcaVcZRSbkSPUaOWZ.Qca@alerts.bounces.google.com; dkim=pass header.i=3usIjTBQKCewUccUZSOZSfhg-bcfSdZmUccUZS.QcaVcZRSbkSPUaOWZ.Qca@alerts.bounces.google.com Received: from mr.google.com ([10.150.48.22]) by 10.150.48.22 with SMTP id v22mr8433784ybv.10.1277412026225 (num_hops = 1); Thu, 24 Jun 2010 13:40:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=vK2QKHdN7W4IA4YEIK/4h9xF5xvKsCvU8P3oN9OALkE=; b=MVxD5PvTWDoAntwzty4Eg60KZV+wpfxXLKmcpT03kM+5UrggRab8vvK8LhHiWxc6Vx tZXEAkYuKychufSeveeQ== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=bJKm5M3uZ0D9+DoRiqlT5yulm23L7091rZVYGA3haalscjP/9J9VpDbjg1+qOA+H9H Mk3UyuxLDvimaWsbML/A== MIME-Version: 1.0 Received: by 10.150.48.22 with SMTP id v22mr6543551ybv.10.1277412026191; Thu, 24 Jun 2010 13:40:26 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <000e0cd70a040d8f650489ccaa6c@google.com> Date: Thu, 24 Jun 2010 20:40:26 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://popwatch.ew.com/2010/06/24/debbie-gibson-tiffany-syfy-mega-python-gat= oroid/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0:t1277412026:&cd=3DmH= 850mC507M&usg=3DAFQjCNEDLcAG31-Cp6DwjmzaPGVyE57OaQ"> Debbie Gibson and Tiffany set for 'epic battle' in Syfy's '= Mega <b>Python</b> v <b>...</b></a><br> <font size=3D"-1"><font color=3D"#666666">Entertainment Weekly</font><br> <b>...</b> that die-hard Tiffany and Debbie Gibson fans have been waiting f= or: The 1980s teen stars are set to throw down in the Syfy original movie M= ega <b>Python</b> v. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://popwatch.ew.com/2010/06/24= /debbie-gibson-tiffany-syfy-mega-python-gatoroid/%26hl%3Den&ct=3Dga&= ;cad=3D:s1:f2:v0:i0:lr:e0:p0:t1277412026:&cd=3DmH850mC507M&usg=3DAF= QjCNE27HLVRCtUzXEv9KGm93xbW3MIgQ" title=3D"http://news.google.com/news/stor= y?ncl=3Dhttp://popwatch.ew.com/2010/06/24/debbie-gibson-tiffany-syfy-mega-p= ython-gatoroid/&hl=3Den">See all stories on this topic</a></font></td><= /tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.pcworld.com/businesscenter/article/199793/activepython_updated_fo= r_finance_scientific_users.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1= :t1277412026:&cd=3DmH850mC507M&usg=3DAFQjCNF4hd2vaxEIifwPMUGPc1fhcI= 3n8g"> ActivePython Updated for Finance, Scientific Users</a><br> <font size=3D"-1"><font color=3D"#666666">PC World</font><br> By Joab Jackson, IDG News ActiveState has added three open source mathemati= cs libraries to its ActivePython <b>Python</b> distribution that might inte= rest <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.pcworld.com/businessce= nter/article/199793/activepython_updated_for_finance_scientific_users.html%= 26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1277412026:&cd= =3DmH850mC507M&usg=3DAFQjCNEJJaygh9K9i5b_qJu8lEWTGMRcKw" title=3D"http:= //news.google.com/news/story?ncl=3Dhttp://www.pcworld.com/businesscenter/ar= ticle/199793/activepython_updated_for_finance_scientific_users.html&hl= =3Den">See all stories on this topic</a></font></td></tr><tr><td style=3D"p= adding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.mb.com.ph/articles/263569/afp-delivers-medical-dental-relief-aid-= caraga-residents&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1277412026:&a= mp;cd=3DmH850mC507M&usg=3DAFQjCNHhCAySQEsPFYbSZX7cUTzNyNS4Tg"> AFP delivers medical, dental relief aid to Caraga residents</a><br> <font size=3D"-1"><font color=3D"#666666">Manila Bulletin</font><br> The humanitarian mission of the combat maneuvering battalion of the 30th = =93<b>Python</b>=94 IB through the supervision of the 402nd (Stingers) Infa= ntry Brigade <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.mb.com.ph/articles/263= 569/afp-delivers-medical-dental-relief-aid-caraga-residents%26hl%3Den&c= t=3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1277412026:&cd=3DmH850mC507M&am= p;usg=3DAFQjCNFtEMVvbRK6adG1d_Ehh8aF64Ip1g" title=3D"http://news.google.com= /news/story?ncl=3Dhttp://www.mb.com.ph/articles/263569/afp-delivers-medical= -dental-relief-aid-caraga-residents&hl=3Den">See all stories on this to= pic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= techtree.com/India/Downloads/Blender_249b_32-bit/551-111961-658.html&ct= =3Dga&cad=3D:s1:f2:v0:i0:li:e3:p3:t1277412026:&cd=3DmH850mC507M&= ;usg=3DAFQjCNG6ei2pv4zt2vBeszTbc8oYQHLZmA"><img border=3D"0" src=3D"http://= nt0.ggpht.com/news/tbn/rLr7bALTarcJ" alt=3D"" width=3D"80" height=3D"60"></= a></td></tr><tr><td align=3D"center"><font size=3D-2><a href=3D"http://www.= google.com/url?sa=3DX&q=3Dhttp://www.techtree.com/India/Downloads/Blend= er_249b_32-bit/551-111961-658.html&ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e= 3:p3:t1277412026:&cd=3DmH850mC507M&usg=3DAFQjCNG6ei2pv4zt2vBeszTbc8= oYQHLZmA">Techtree.com</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.techtree.com/India/Downloads/Blender_249b_32-bit/551-111961-658.h= tml&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e3:p3:t1277412026:&cd=3DmH850= mC507M&usg=3DAFQjCNG6ei2pv4zt2vBeszTbc8oYQHLZmA"> Blender 2.49b 32-bit</a><br> <font size=3D"-1"><font color=3D"#666666">Techtree.com</font><br> <b>...</b> modifier-based modeling tools, powerful character animation tool= s, a node-based material and compositing system and <b>Python</b> for embed= ded scripting. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.techtree.com/India/Dow= nloads/Blender_249b_32-bit/551-111961-658.html%26hl%3Den&ct=3Dga&ca= d=3D:s1:f2:v0:i0:lr:e3:p3:t1277412026:&cd=3DmH850mC507M&usg=3DAFQjC= NE_aGCC_aPbRXb_MU8o2k_St3aWbw" title=3D"http://news.google.com/news/story?n= cl=3Dhttp://www.techtree.com/India/Downloads/Blender_249b_32-bit/551-111961= -658.html&hl=3Den">See all stories on this topic</a></font></td></tr></= table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use quotes ("like this= ") around a set of words in your query to match them exactly.</font><p><fon= t size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DmH85= 0mC507M&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DmH850mC507M&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DmH850mC507M&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.81 with SMTP id b59cs33660wel; Fri, 25 Jun 2010 14:00:54 -0700 (PDT) Return-Path: <3BBklTBQKCY4y66y3ws3w9BA-569w73Gy66y3w.u64z63vw5Ewty4s03.u64@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3BBklTBQKCY4y66y3ws3w9BA-569w73Gy66y3w.u64z63vw5Ewty4s03.u64@alerts.bounces.google.com designates 10.101.154.3 as permitted sender) client-ip=10.101.154.3; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3BBklTBQKCY4y66y3ws3w9BA-569w73Gy66y3w.u64z63vw5Ewty4s03.u64@alerts.bounces.google.com designates 10.101.154.3 as permitted sender) smtp.mail=3BBklTBQKCY4y66y3ws3w9BA-569w73Gy66y3w.u64z63vw5Ewty4s03.u64@alerts.bounces.google.com; dkim=pass header.i=3BBklTBQKCY4y66y3ws3w9BA-569w73Gy66y3w.u64z63vw5Ewty4s03.u64@alerts.bounces.google.com Received: from mr.google.com ([10.101.154.3]) by 10.101.154.3 with SMTP id g3mr1346164ano.46.1277499653000 (num_hops = 1); Fri, 25 Jun 2010 14:00:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=d3nywdW0/yIrbmzTpGSt6vhvbtpiTelM+p4Nln1LgaQ=; b=Iz+ixcwXK9vZre7vwZTcQSw4coSKYeWODk6vENyb7knPnV+HITMcs6fqaBAExmwtQZ GXnDL+BtymgKXSzGh3SA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=elfk6yUVtq+mH5IrIPZwBg4WzwPbZBzM8q5gxBelN/uEz8yVfdO1rTW9IKn04+XLMW 7Ypa88pLdLSvAETgimOg== MIME-Version: 1.0 Received: by 10.101.154.3 with SMTP id g3mr1013979ano.46.1277499652276; Fri, 25 Jun 2010 14:00:52 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e68e7f61f983b30489e11050@google.com> Date: Fri, 25 Jun 2010 21:00:52 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://ente= rtainment.blogs.foxnews.com/2010/06/25/80s-icons-debbie-gibson-and-tiffany-= to-face-off-onscreen/&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e0:p0:t12774996= 52:&cd=3DeQCciwHwhHU&usg=3DAFQjCNH32fUZPvm0Dqx9PZuoe0x9hfTihw"><img= border=3D"0" src=3D"http://nt3.ggpht.com/news/tbn/sz-K4q5mSMwJ" alt=3D"" w= idth=3D"80" height=3D"53"></a></td></tr><tr><td align=3D"center"><font size= =3D-2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://entertainm= ent.blogs.foxnews.com/2010/06/25/80s-icons-debbie-gibson-and-tiffany-to-fac= e-off-onscreen/&ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e0:p0:t1277499652:&a= mp;cd=3DeQCciwHwhHU&usg=3DAFQjCNH32fUZPvm0Dqx9PZuoe0x9hfTihw">FOXNews (= blog)</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://entertainment.blogs.foxnews.com/2010/06/25/80s-icons-debbie-gibson-an= d-tiffany-to-face-off-onscreen/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e0:p0= :t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNH32fUZPvm0Dqx9PZuoe0x9hf= Tihw"> 80's icons Debbie Gibson and Tiffany to face off onscreen</a><br> <font size=3D"-1"><font color=3D"#666666">FOXNews (blog)</font><br> =93Mega <b>Python</b> vs. Gataroid=94 will feature Gibson as a fanatical an= imal rights activist, while Tiffany will be an overzealous park ranger. <b>= ...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://entertainment.blogs.foxnew= s.com/2010/06/25/80s-icons-debbie-gibson-and-tiffany-to-face-off-onscreen/%= 26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1277499652:&cd= =3DeQCciwHwhHU&usg=3DAFQjCNFKc76DIZ4US-VxL6WF6fIpFQ9jgA" title=3D"http:= //news.google.com/news/story?ncl=3Dhttp://entertainment.blogs.foxnews.com/2= 010/06/25/80s-icons-debbie-gibson-and-tiffany-to-face-off-onscreen/&hl= =3Den">See all stories on this topic</a></font></td></tr><tr><td style=3D"p= adding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.infoworld.com/d/developer-world/activestate-bolsters-python-finan= cial-and-scientific-capabilities-416&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:= e1:p1:t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNEwqgiYjXPuAHeHwCjTE= Y7lFJdWVg"> ActiveState bolsters <b>Python</b> with financial and scientific capabiliti= es</a><br> <font size=3D"-1"><font color=3D"#666666">InfoWorld</font><br> The move is being made as a result of growing demand for <b>Python</b> in h= eavy data-centric scientific computing and financial modeling applications,= <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.infoworld.com/d/develo= per-world/activestate-bolsters-python-financial-and-scientific-capabilities= -416%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1277499652:&= ;cd=3DeQCciwHwhHU&usg=3DAFQjCNG-0B9ea3QekjNFdnHzD8Pw_5nbqA" title=3D"ht= tp://news.google.com/news/story?ncl=3Dhttp://www.infoworld.com/d/developer-= world/activestate-bolsters-python-financial-and-scientific-capabilities-416= &hl=3Den">See all stories on this topic</a></font></td></tr><tr><td sty= le=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://blogs.miaminewtimes.com/riptide/2010/06/pythons_banned_in_florida.php= &ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1277499652:&cd=3DeQCciwHw= hHU&usg=3DAFQjCNGE1YwJ4PKRVVaLe1ff2HB0HB-uog"> Pythons Banned In Florida</a><br> <font size=3D"-1"><font color=3D"#666666">Miami New Times (blog)</font><br> So treasure the time you have with your beloved Mephistopheles the <b>pytho= n</b>. If you don't wish to keep the snakes you have, the commission ha= s also signed a <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://blogs.miaminewtimes.com/ri= ptide/2010/06/pythons_banned_in_florida.php%26hl%3Den&ct=3Dga&cad= =3D:s1:f2:v0:i0:lr:e2:p2:t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCN= GbPsQ3n9S89v34nm3_SgLh11lFqw" title=3D"http://news.google.com/news/story?nc= l=3Dhttp://blogs.miaminewtimes.com/riptide/2010/06/pythons_banned_in_florid= a.php&hl=3Den">See all stories on this topic</a></font></td></tr><tr><t= d style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= examiner.com/x-48703-Movie-Examiner~y2010m6d25-Debbie-Gibson--Tiffany-to-ap= pear-on-screen-together-in-a-SciFi-movie&ct=3Dga&cad=3D:s1:f2:v0:i0= :li:e3:p3:t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNHI1LruCUdegRz1Q= Fqwi5utNsfXtg"><img border=3D"0" src=3D"http://nt3.ggpht.com/news/tbn/z6td2= kiIIQsJ" alt=3D"" width=3D"80" height=3D"41"></a></td></tr><tr><td align=3D= "center"><font size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&q= =3Dhttp://www.examiner.com/x-48703-Movie-Examiner~y2010m6d25-Debbie-Gibson-= -Tiffany-to-appear-on-screen-together-in-a-SciFi-movie&ct=3Dga&cad= =3D:s1:f2:v0:i0:lic:e3:p3:t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjC= NHI1LruCUdegRz1QFqwi5utNsfXtg">Examiner.com</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.examiner.com/x-48703-Movie-Examiner~y2010m6d25-Debbie-Gibson--Tif= fany-to-appear-on-screen-together-in-a-SciFi-movie&ct=3Dga&cad=3D:s= 1:f2:v0:i0:lt:e3:p3:t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNHI1Lr= uCUdegRz1QFqwi5utNsfXtg"> Debbie Gibson & Tiffany to appear on screen together in a Sci-Fi movie<= /a><br> <font size=3D"-1"><font color=3D"#666666">Examiner.com</font><br> Photo: AP Eighties sensations Debbie Gibson and Tiffany are slated to appea= r on screen together in a new Science Fiction Movie entitled, Mega <b>Pytho= n</b> vs. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.examiner.com/x-48703-M= ovie-Examiner~y2010m6d25-Debbie-Gibson--Tiffany-to-appear-on-screen-togethe= r-in-a-SciFi-movie%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e3:p3:t1= 277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNHXPLbj2V2MSun5czPP3ge61HAtW= A" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.examiner.com= /x-48703-Movie-Examiner~y2010m6d25-Debbie-Gibson--Tiffany-to-appear-on-scre= en-together-in-a-SciFi-movie&hl=3Den">See all stories on this topic</a>= </font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.sdtimes.com/link/34444&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e4:p= 4:t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNHpdEiA6UQY9ZEHKKvkfHihC= iaeRg"> CollabNet offers preconfigured stack for Subversion</a><br> <font size=3D"-1"><font color=3D"#666666">SDTimes.com</font><br> <b>...</b> software configuration management tool with Apache's HTTP We= b server and ViewVC, an open-source tool written in <b>Python</b> for visua= l repository browsing. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.sdtimes.com/link/34444= %26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e4:p4:t1277499652:&cd= =3DeQCciwHwhHU&usg=3DAFQjCNEGQw2kipqChXz65xHre9arVaThpA" title=3D"http:= //news.google.com/news/story?ncl=3Dhttp://www.sdtimes.com/link/34444&hl= =3Den">See all stories on this topic</a></font></td></tr><tr><td style=3D"p= adding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.mercurynews.com/breaking-news/ci_15369381&ct=3Dga&cad=3D:= s1:f2:v0:i0:lt:e5:p5:t1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNEvy1= CrbQpe9c3RPRK448hnfA1m7Q"> People: Syfy pits Tiffany against Debbie Gibson in TV movie</a><br> <font size=3D"-1"><font color=3D"#666666">San Jose Mercury News</font><br> By Vicki Walker Reuters reports the too-hip-for-sci-fi network has cast Deb= bie Gibson and Tiffany in one of its Saturday night original movies, "= Mega <b>Python</b> <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.mercurynews.com/breaki= ng-news/ci_15369381%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e5:p5:t= 1277499652:&cd=3DeQCciwHwhHU&usg=3DAFQjCNFFpnjYGY1bnHC8hcxvNhC_L5WR= hA" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.mercurynews= .com/breaking-news/ci_15369381&hl=3Den">See all stories on this topic</= a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.newsday.com/entertainment/debbie-gibson-tiffany-to-square-off-in-= syfy-flick-1.2051717&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e6:p6:t127749965= 2:&cd=3DeQCciwHwhHU&usg=3DAFQjCNFAVAHxTRcNPXJsA0WlZAws-Iikvw"> Debbie Gibson, Tiffany to square off in Syfy flick</a><br> <font size=3D"-1"><font color=3D"#666666">Newsday (subscription)</font><br> <b>...</b> but now they're teaming up in a most unlikely venue: one of = Syfy's ever-campy Saturday Original Movies, "Mega <b>Python</b> Vs= Gatoroid. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.newsday.com/entertainm= ent/debbie-gibson-tiffany-to-square-off-in-syfy-flick-1.2051717%26hl%3Den&a= mp;ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e6:p6:t1277499652:&cd=3DeQCciwHwhH= U&usg=3DAFQjCNGnTG90MRnYjsziG2103ZNw2mvccA" title=3D"http://news.google= .com/news/story?ncl=3Dhttp://www.newsday.com/entertainment/debbie-gibson-ti= ffany-to-square-off-in-syfy-flick-1.2051717&hl=3Den">See all stories on= this topic</a></font></td></tr></table><p><hr noshade size=3D1><font size= =3D"-1">Tip: Use a plus sign (+) to match a term in your query exactly as i= s.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DeQCc= iwHwhHU&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DeQCciwHwhHU&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DeQCciwHwhHU&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.81 with SMTP id b59cs20722wel; Sat, 26 Jun 2010 13:40:21 -0700 (PDT) Return-Path: <3s2UmTBQKCYsv33v0tp0t687-236t40Dv33v0t.r31w30st2Btqv1px0.r31@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3s2UmTBQKCYsv33v0tp0t687-236t40Dv33v0t.r31w30st2Btqv1px0.r31@alerts.bounces.google.com designates 10.101.150.8 as permitted sender) client-ip=10.101.150.8; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3s2UmTBQKCYsv33v0tp0t687-236t40Dv33v0t.r31w30st2Btqv1px0.r31@alerts.bounces.google.com designates 10.101.150.8 as permitted sender) smtp.mail=3s2UmTBQKCYsv33v0tp0t687-236t40Dv33v0t.r31w30st2Btqv1px0.r31@alerts.bounces.google.com; dkim=pass header.i=3s2UmTBQKCYsv33v0tp0t687-236t40Dv33v0t.r31w30st2Btqv1px0.r31@alerts.bounces.google.com Received: from mr.google.com ([10.101.150.8]) by 10.101.150.8 with SMTP id c8mr2682894ano.43.1277584819712 (num_hops = 1); Sat, 26 Jun 2010 13:40:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=QUBN6HzJSz+CDGz1Xa8Z/wHHRnzqbOHGkklC9mj5Tdo=; b=UpHVhgYS0clBAhGmHbNEb+uM4v7c6Pa45w2EaWcYmQDiu4OXVpSy0lltaotd6kNPv+ oK7hQg/c3Ng4uxdgprEA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=d8yo7e/WgrLntAAZwcMscVILamNzy09XqdrT3FNDUBHQ9xjWjEErVyJw/ftoxMxPul vevPtoqRTe1rnIwWrwWA== MIME-Version: 1.0 Received: by 10.101.150.8 with SMTP id c8mr2089058ano.43.1277584819687; Sat, 26 Jun 2010 13:40:19 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e68fcec35910360489f4e569@google.com> Date: Sat, 26 Jun 2010 20:40:19 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.airlockalpha.com/node/7558&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:= e0:p0:t1277584819:&cd=3D7hR3vpWWgBY&usg=3DAFQjCNF4LDyRstxhKc2r3aRIt= y7wK0YyMw"> 'Mega <b>Python</b> Vs. Gatoroid' Sends '80s Pop Stars Into Feu= d</a><br> <font size=3D"-1"><font color=3D"#666666">Airlock Alpha</font><br> "Mega <b>Python</b> Vs. Gatoroid" is slated to go into production= later in the year and is eyeing a 2011 release as one of the channel's= original movies. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.airlockalpha.com/node/= 7558%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:t1277584819:&= ;cd=3D7hR3vpWWgBY&usg=3DAFQjCNGsv2V0Xe6DYwaQQpCWGX3lRM9llg" title=3D"ht= tp://news.google.com/news/story?ncl=3Dhttp://www.airlockalpha.com/node/7558= &hl=3Den">See all stories on this topic</a></font></td></tr><tr><td sty= le=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.ontheredcarpet.com/2010/06/debbie-gibson-and-tiffany-to-star-in-s= yfy-movie-mega-python-vs-gataroid.html&ct=3Dga&cad=3D:s1:f2:v0:i0:l= t:e1:p1:t1277584819:&cd=3D7hR3vpWWgBY&usg=3DAFQjCNGdN8cX28uIydQFKV3= DYgSU8jyvgw"> Debbie Gibson and Tiffany to star in SyFy movie 'Mega <b>Python</b> vs.= Gataroid'</a><br> <font size=3D"-1"><font color=3D"#666666">OnTheRedCarpet.com (blog)</font><= br> Debbie Gibson and Tiffany, former 1980s pop queens, are set to star in the = SyFy Network film Mega <b>Python</b> vs. Gataroid and will be able to settl= e their <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.ontheredcarpet.com/201= 0/06/debbie-gibson-and-tiffany-to-star-in-syfy-movie-mega-python-vs-gataroi= d.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1277584819:&a= mp;cd=3D7hR3vpWWgBY&usg=3DAFQjCNG3x4NwaDzXH23GP9YUVK9J6u022Q" title=3D"= http://news.google.com/news/story?ncl=3Dhttp://www.ontheredcarpet.com/2010/= 06/debbie-gibson-and-tiffany-to-star-in-syfy-movie-mega-python-vs-gataroid.= html&hl=3Den">See all stories on this topic</a></font></td></tr><tr><td= style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://lwn.net/Articles/393822/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:= t1277584819:&cd=3D7hR3vpWWgBY&usg=3DAFQjCNHvy1bxIgo9jdNXuMy7i6OP8RD= X8g"> <b>Python</b> "newthreading" proof of concept released</a><br> <font size=3D"-1"><font color=3D"#666666">LWN.net</font><br> This is horribly non-Pythonic. I do hope this never becomes mainline and an= other, simpler solution is found. For example this implementation completel= y <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://lwn.net/Articles/393822/%2= 6hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1277584819:&cd=3D= 7hR3vpWWgBY&usg=3DAFQjCNHT9NAUqHSwURQ2j6RzKVpnFpo7Sg" title=3D"http://n= ews.google.com/news/story?ncl=3Dhttp://lwn.net/Articles/393822/&hl=3Den= ">See all stories on this topic</a></font></td></tr><tr><td style=3D"paddin= g-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://mygl= oss.com/geek/2010/06/25/daily-bytes-1-5m-iphones-sold-jason-bateman-incurs-= geek-fury/&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e3:p3:t1277584819:&cd= =3D7hR3vpWWgBY&usg=3DAFQjCNGrMqfKxRVk5pchtLvhZOL-ZgcCbw"><img border=3D= "0" src=3D"http://nt3.ggpht.com/news/tbn/Q_tmjRsNOzAJ" alt=3D"" width=3D"64= " height=3D"80"></a></td></tr><tr><td align=3D"center"><font size=3D-2><a h= ref=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://mygloss.com/geek/201= 0/06/25/daily-bytes-1-5m-iphones-sold-jason-bateman-incurs-geek-fury/&c= t=3Dga&cad=3D:s1:f2:v0:i0:lic:e3:p3:t1277584819:&cd=3D7hR3vpWWgBY&a= mp;usg=3DAFQjCNGrMqfKxRVk5pchtLvhZOL-ZgcCbw">myGLOSS</a></font></td></tr></= table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://mygloss.com/geek/2010/06/25/daily-bytes-1-5m-iphones-sold-jason-batem= an-incurs-geek-fury/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e3:p3:t127758481= 9:&cd=3D7hR3vpWWgBY&usg=3DAFQjCNGrMqfKxRVk5pchtLvhZOL-ZgcCbw"> Daily Bytes: 1.5m iPhones Sold, Jason Bateman Incurs Geek Fury</a><br> <font size=3D"-1"><font color=3D"#666666">myGLOSS</font><br> Tiffany and Debbie Gibson set to duke it out in Syfy's brilliantly-titl= ed original movie =93Mega <b>Python</b> vs. Gatoroid=94. Not as epic as a <= b>python</b> vs. a gatoroid <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://mygloss.com/geek/2010/06/2= 5/daily-bytes-1-5m-iphones-sold-jason-bateman-incurs-geek-fury/%26hl%3Den&a= mp;ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e3:p3:t1277584819:&cd=3D7hR3vpWWgB= Y&usg=3DAFQjCNHP7aKCm4OXVLZzBj1r4EdEu-qwtw" title=3D"http://news.google= .com/news/story?ncl=3Dhttp://mygloss.com/geek/2010/06/25/daily-bytes-1-5m-i= phones-sold-jason-bateman-incurs-geek-fury/&hl=3Den">See all stories on= this topic</a></font></td></tr></table><p><hr noshade size=3D1><font size= =3D"-1">Tip: Use site restrict in your query to search within a site (site:= nytimes.com or site:.edu).</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3D7hR3= vpWWgBY&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3D7hR3vpWWgBY&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3D7hR3vpWWgBY&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:25 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.81 with SMTP id b59cs49900wel; Sun, 27 Jun 2010 13:40:18 -0700 (PDT) Return-Path: <3MLcnTBQKCVs9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 3MLcnTBQKCVs9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com designates 10.100.15.29 as permitted sender) client-ip=10.100.15.29; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 3MLcnTBQKCVs9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com designates 10.100.15.29 as permitted sender) smtp.mail=3MLcnTBQKCVs9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com; dkim=pass header.i=3MLcnTBQKCVs9HH9E73E7KML-GHK7IER9HH9E7.5HFAHE67GP749F3BE.5HF@alerts.bounces.google.com Received: from mr.google.com ([10.100.15.29]) by 10.100.15.29 with SMTP id 29mr3968784ano.17.1277671216265 (num_hops = 1); Sun, 27 Jun 2010 13:40:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=oTjY5gFwbavoQ5E+Qaw+o85a5Mh3BurapIuxSmXlG/g=; b=Zq0NXBP3qPZYUUz7I8hxNWQ9UnRKPLcCe/b8cixGP5w/XWUpzH2pb6WcfSZzXXb2sy 0kvgS4RJFj2kghu+kUPA== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=NtAfrGAJLaVsPNxRXR480zuq9BZMDp3Iww/lkFYnR0s1XtURrzTKoCoC5h1tfdTOcm P+nt8bqwZv6EFVDnbDrA== MIME-Version: 1.0 Received: by 10.100.15.29 with SMTP id 29mr3153359ano.17.1277671216235; Sun, 27 Jun 2010 13:40:16 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <0016e6469284fbc635048a090235@google.com> Date: Sun, 27 Jun 2010 20:40:16 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=windows-1252 Content-Transfer-Encoding: quoted-printable
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.nbcmiami.com/entertainment/celebrity/80s-Pop-Stars-Debbie-Gibson-= and-Tiffany-Renew-Rivalry-in-New-Movie-97249519.html&ct=3Dga&cad=3D= :s1:f2:v0:i0:lt:e0:p0:t1277671216:&cd=3DNcvk0VHGaWw&usg=3DAFQjCNGkS= 9DYpQb9sv408ktWNeqzXfmppA"> '80s Pop Singers Debbie Gibson and Tiffany Renew Rivalry in New Movie</= a><br> <font size=3D"-1"><font color=3D"#666666">NBC Miami</font><br> The two singers will co-star in the Syfy original movie =93Mega <b>Python</= b> vs. Gatoroid,=94 according to The Hollywood Reporter. Gibson will play a= n animal rights <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.nbcmiami.com/entertain= ment/celebrity/80s-Pop-Stars-Debbie-Gibson-and-Tiffany-Renew-Rivalry-in-New= -Movie-97249519.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:p0:= t1277671216:&cd=3DNcvk0VHGaWw&usg=3DAFQjCNGo1jUrO0mA1DLcGHNfzOhA300= tlw" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.nbcmiami.c= om/entertainment/celebrity/80s-Pop-Stars-Debbie-Gibson-and-Tiffany-Renew-Ri= valry-in-New-Movie-97249519.html&hl=3Den">See all stories on this topic= </a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://irishdev.com/Home/Events/Article.html%3Fid%3D422&ct=3Dga&cad= =3D:s1:f2:v0:i0:lt:e1:p1:t1277671216:&cd=3DNcvk0VHGaWw&usg=3DAFQjCN= Gt3pAuzS4ISe1r5LCmV0D4gVzl3g"> Pycon Ireland</a><br> <font size=3D"-1"><font color=3D"#666666">IRISHDEV.com</font><br> <b>Python</b> Ireland has announced Ireland's Inaugural <b>Python</b> C= onference, PyCon Ireland, which will be held in the Dublin School of Englis= h on Saturday 17th July <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://irishdev.com/Home/Events/A= rticle.html%253Fid%253D422%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:= e1:p1:t1277671216:&cd=3DNcvk0VHGaWw&usg=3DAFQjCNH-HxgQGwzH-HUunw1r3= jSEN6beoA" title=3D"http://news.google.com/news/story?ncl=3Dhttp://irishdev= .com/Home/Events/Article.html%3Fid%3D422&hl=3Den">See all stories on th= is topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://gigaom.com/2010/06/27/app-engine-google-voice-super-charged-communica= tion-platform/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1277671216:&= ;cd=3DNcvk0VHGaWw&usg=3DAFQjCNFCuMdFLmKkCgSEC4mTzO9fTE9hhA"> App Engine + Google Voice =3D Super-charged Communication Platform</a><br> <font size=3D"-1"><font color=3D"#666666">GigaOm (blog)</font><br> Since App Engine is a fully featured programming environment in its own rig= ht, with support for <b>Python</b> and Java, these applications can be as s= ophisticated <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://gigaom.com/2010/06/27/app-= engine-google-voice-super-charged-communication-platform/%26hl%3Den&ct= =3Dga&cad=3D:s1:f2:v0:i0:lr:e2:p2:t1277671216:&cd=3DNcvk0VHGaWw&= ;usg=3DAFQjCNG0xkDANE2SULHFZiaNYn_eGGcc1A" title=3D"http://news.google.com/= news/story?ncl=3Dhttp://gigaom.com/2010/06/27/app-engine-google-voice-super= -charged-communication-platform/&hl=3Den">See all stories on this topic= </a></font></td></tr></table><p><hr noshade size=3D1><font size=3D"-1">Tip:= Use quotes ("like this") around a set of words in your query to match them= exactly.</font><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3DNcvk= 0VHGaWw&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3DNcvk0VHGaWw&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3DNcvk0VHGaWw&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>
From - Tue Jun 29 10:39:26 2010 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Delivered-To: holdenweb@gmail.com Received: by 10.216.164.81 with SMTP id b59cs97346wel; Mon, 28 Jun 2010 13:41:01 -0700 (PDT) Return-Path: <32wgpTBQKCVk7FF7C51C5IKJ-EFI5GCP7FF7C5.3FD8FC45EN527D19C.3FD@alerts.bounces.google.com> Received-SPF: pass (google.com: domain of 32wgpTBQKCVk7FF7C51C5IKJ-EFI5GCP7FF7C5.3FD8FC45EN527D19C.3FD@alerts.bounces.google.com designates 10.101.165.27 as permitted sender) client-ip=10.101.165.27; Authentication-Results: mr.google.com; spf=pass (google.com: domain of 32wgpTBQKCVk7FF7C51C5IKJ-EFI5GCP7FF7C5.3FD8FC45EN527D19C.3FD@alerts.bounces.google.com designates 10.101.165.27 as permitted sender) smtp.mail=32wgpTBQKCVk7FF7C51C5IKJ-EFI5GCP7FF7C5.3FD8FC45EN527D19C.3FD@alerts.bounces.google.com; dkim=pass header.i=32wgpTBQKCVk7FF7C51C5IKJ-EFI5GCP7FF7C5.3FD8FC45EN527D19C.3FD@alerts.bounces.google.com Received: from mr.google.com ([10.101.165.27]) by 10.101.165.27 with SMTP id s27mr5586956ano.44.1277757659531 (num_hops = 1); Mon, 28 Jun 2010 13:40:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=beta; h=domainkey-signature:mime-version:received:list-unsubscribe:list-id :message-id:date:subject:from:to:content-type :content-transfer-encoding; bh=4XDjiczPLqwC44uVTBSV3JuVuvEvAOlziDv3ZAJ8iDg=; b=Z4xMzmRGH+s2ZpEjhuEeNqQ4rimxVyq8wPd30fwkK6KM/qNcQKpdXgt/YYD2lAw1TN FIU7m2H5iQX200/ScEXg== DomainKey-Signature: a=rsa-sha1; c=nofws; d=google.com; s=beta; h=mime-version:list-unsubscribe:list-id:message-id:date:subject:from :to:content-type:content-transfer-encoding; b=fDzPXwQL9Hr8T34Jr/Ujs+nmpU16r0xgrOD5bMGXXiY7Pev/1/LOFerDGUG6SauSvv q1b4HSnillB4+e5qaICQ== MIME-Version: 1.0 Received: by 10.101.165.27 with SMTP id s27mr4388071ano.44.1277757659369; Mon, 28 Jun 2010 13:40:59 -0700 (PDT) List-Unsubscribe: <mailto:ur@unsubscribe.alerts.google.com?subject=AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME> List-Id: <AB2Xq4iHmiAOTXEwjRPldm8_gg9F1sYlgELyGME.alerts.google.com> Message-ID: <001636c925aa655098048a1d23b5@google.com> Date: Mon, 28 Jun 2010 20:40:59 +0000 Subject: Google Alert - python -monty -snake From: Google Alerts <googlealerts-noreply@google.com> To: holdenweb@gmail.com Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
<br> Specialized tracks for this year's conference include <b>Python</b> for= Bioinformatics as well as Parallel Processing and Cloud Computing with <b>= Python</b>. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.prnewswire.com/news-re= leases/enthought-inc-announces-relocated-scientific-computing-conference-to= -austin-draws-record-attendance-97299684.html%26hl%3Den&ct=3Dga&cad= =3D:s1:f2:v0:i0:lr:e2:p2:t1277757659:&cd=3Dtj1mI9k_BGE&usg=3DAFQjCN= E0yvWLqsdn0Ztt1CTO4hfVNUZ5Wg" title=3D"http://news.google.com/news/story?nc= l=3Dhttp://www.prnewswire.com/news-releases/enthought-inc-announces-relocat= ed-scientific-computing-conference-to-austin-draws-record-attendance-972996= 84.html&hl=3Den">See all stories on this topic</a></font></td></tr><tr>= <td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.itnews.com.au/News/218030,weather-bureau-uses-linux-to-cut-vm-lic= ensing.aspx&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e3:p3:t1277757659:&cd= =3Dtj1mI9k_BGE&usg=3DAFQjCNF_Ss-JUWg4O90XE3Wc1NdvQ5_4YQ"> Weather Bureau uses Linux to cut VM licensing</a><br> <font size=3D"-1"><font color=3D"#666666">iT News</font><br> "For the code that's not in <b>Python</b>, we haven't been abl= e to do those tasks." "From about 2005, we decided we'd use <= b>Python</b> for anything that was new. <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.itnews.com.au/News/218= 030,weather-bureau-uses-linux-to-cut-vm-licensing.aspx%26hl%3Den&ct=3Dg= a&cad=3D:s1:f2:v0:i0:lr:e3:p3:t1277757659:&cd=3Dtj1mI9k_BGE&usg= =3DAFQjCNGEtBU3a3OifQerRCWSHltVx_EHaA" title=3D"http://news.google.com/news= /story?ncl=3Dhttp://www.itnews.com.au/News/218030,weather-bureau-uses-linux= -to-cut-vm-licensing.aspx&hl=3Den">See all stories on this topic</a></f= ont></td></tr><tr><td style=3D"padding-bottom:1em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.gisuser.com/content/view/20832/2/&ct=3Dga&cad=3D:s1:f2:v0= :i0:lt:e4:p4:t1277757659:&cd=3Dtj1mI9k_BGE&usg=3DAFQjCNEd9L9Onrstyv= Zk0QjR3_WYaCxKdQ"> ESRI UK launches a new perspective in ArcGIS 10</a><br> <font size=3D"-1"><font color=3D"#666666">GISuser.com (press release)</font= <br> By executing geoprocessing in the background and automating additional work= flows with <b>Python</b>, ArcGIS allows users to continue to interact with = maps as they <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.gisuser.com/content/vi= ew/20832/2/%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e4:p4:t12777576= 59:&cd=3Dtj1mI9k_BGE&usg=3DAFQjCNEit1uBbc2kTjXUNe17qKWJZEqGQA" titl= e=3D"http://news.google.com/news/story?ncl=3Dhttp://www.gisuser.com/content= /view/20832/2/&hl=3Den">See all stories on this topic</a></font></td></=
<html><head></head><body><div style=3D"font-family: sans-serif"> <p><font size=3D"+1">Google News Alert for: <b>python -monty -snake</b></fo= nt></p> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"600"><tr><= td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www.= thesun.co.uk/sol/homepage/showbiz/tv/3032074/Pop-girls-Tiffany-and-Debbie-G= ibson-cast-in-Syfy-channel-monster-movie.html&ct=3Dga&cad=3D:s1:f2:= v0:i0:li:e0:p0:t1277757659:&cd=3Dtj1mI9k_BGE&usg=3DAFQjCNGyaNtrc8YL= UlEyhVX3D6KRBSpp8A"><img border=3D"0" src=3D"http://nt2.ggpht.com/news/tbn/= Im-hj1gIC3MJ" alt=3D"" width=3D"80" height=3D"63"></a></td></tr><tr><td ali= gn=3D"center"><font size=3D-2><a href=3D"http://www.google.com/url?sa=3DX&a= mp;q=3Dhttp://www.thesun.co.uk/sol/homepage/showbiz/tv/3032074/Pop-girls-Ti= ffany-and-Debbie-Gibson-cast-in-Syfy-channel-monster-movie.html&ct=3Dga= &cad=3D:s1:f2:v0:i0:lic:e0:p0:t1277757659:&cd=3Dtj1mI9k_BGE&usg= =3DAFQjCNGyaNtrc8YLUlEyhVX3D6KRBSpp8A">The Sun</a></font></td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.thesun.co.uk/sol/homepage/showbiz/tv/3032074/Pop-girls-Tiffany-an= d-Debbie-Gibson-cast-in-Syfy-channel-monster-movie.html&ct=3Dga&cad= =3D:s1:f2:v0:i0:lt:e0:p0:t1277757659:&cd=3Dtj1mI9k_BGE&usg=3DAFQjCN= GyaNtrc8YLUlEyhVX3D6KRBSpp8A"> I think it's a brawl now!</a><br> <font size=3D"-1"><font color=3D"#666666">The Sun</font><br> The pair have been cast in TV movie Mega <b>Python</b> vs Gatoroid, set to = appear on US channel Syfy next year. Debbie, 39, will play a fanatical anim= al-rights <b>...</b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www.thesun.co.uk/sol/homep= age/showbiz/tv/3032074/Pop-girls-Tiffany-and-Debbie-Gibson-cast-in-Syfy-cha= nnel-monster-movie.html%26hl%3Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e0:= p0:t1277757659:&cd=3Dtj1mI9k_BGE&usg=3DAFQjCNG0GLcloXBasf6LAo5nenNs= TUGyxg" title=3D"http://news.google.com/news/story?ncl=3Dhttp://www.thesun.= co.uk/sol/homepage/showbiz/tv/3032074/Pop-girls-Tiffany-and-Debbie-Gibson-c= ast-in-Syfy-channel-monster-movie.html&hl=3Den">See all stories on this= topic</a></font></td></tr><tr><td style=3D"padding-bottom:1em"> <table cellpadding=3D"0" cellspacing=3D"0" border=3D"0" width=3D"80" align= =3D"left" style=3D"margin-right: 10px; margin-bottom: 10px;"><tr><td align= =3D"center"><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www2= .tbo.com/content/2010/jun/28/ban-sales-5-snakes-nile-lizard-starts-thursday= /news-breaking/&ct=3Dga&cad=3D:s1:f2:v0:i0:li:e1:p1:t1277757659:&am= p;cd=3Dtj1mI9k_BGE&usg=3DAFQjCNEDZ2vwdPcitnV57eTKWaixh9WPyw"><img borde= r=3D"0" src=3D"http://nt0.ggpht.com/news/tbn/EAH7sgfsYWEJ" alt=3D"" width= =3D"80" height=3D"45"></a></td></tr><tr><td align=3D"center"><font size=3D-= 2><a href=3D"http://www.google.com/url?sa=3DX&q=3Dhttp://www2.tbo.com/c= ontent/2010/jun/28/ban-sales-5-snakes-nile-lizard-starts-thursday/news-brea= king/&ct=3Dga&cad=3D:s1:f2:v0:i0:lic:e1:p1:t1277757659:&cd=3Dtj= 1mI9k_BGE&usg=3DAFQjCNEDZ2vwdPcitnV57eTKWaixh9WPyw">Tbo.com</a></font><= /td></tr></table> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www2.tbo.com/content/2010/jun/28/ban-sales-5-snakes-nile-lizard-start= s-thursday/news-breaking/&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e1:p1:t1277= 757659:&cd=3Dtj1mI9k_BGE&usg=3DAFQjCNEDZ2vwdPcitnV57eTKWaixh9WPyw"> Ban on sales of 5 snakes, Nile lizard starts Thursday</a><br> <font size=3D"-1"><font color=3D"#666666">Tbo.com</font><br> A 12-foot Burmese <b>python</b> that was captured in Port Tampa crawls in t= he grass at Wildlife Rescue and Rehabilitation in Pinellas County. <b>...</= b><br> <a style=3D"color: green" href=3D"http://www.google.com/url?sa=3DX&q=3D= http://news.google.com/news/story%3Fncl%3Dhttp://www2.tbo.com/content/2010/= jun/28/ban-sales-5-snakes-nile-lizard-starts-thursday/news-breaking/%26hl%3= Den&ct=3Dga&cad=3D:s1:f2:v0:i0:lr:e1:p1:t1277757659:&cd=3Dtj1mI= 9k_BGE&usg=3DAFQjCNHCgNDYPoA0H1PPMR4EH9Z2WHfuQQ" title=3D"http://news.g= oogle.com/news/story?ncl=3Dhttp://www2.tbo.com/content/2010/jun/28/ban-sale= s-5-snakes-nile-lizard-starts-thursday/news-breaking/&hl=3Den">See all = stories on this topic</a></font></td></tr><tr><td style=3D"padding-bottom:1= em"> <a style=3D"color: blue" href=3D"http://www.google.com/url?sa=3DX&q=3Dh= ttp://www.prnewswire.com/news-releases/enthought-inc-announces-relocated-sc= ientific-computing-conference-to-austin-draws-record-attendance-97299684.ht= ml&ct=3Dga&cad=3D:s1:f2:v0:i0:lt:e2:p2:t1277757659:&cd=3Dtj1mI9= k_BGE&usg=3DAFQjCNEL0zUdTAvx0PuKUTDIxT5_RGh1bw"> Enthought, Inc. Announces Relocated Scientific Computing Conference to Aust= in <b>...</b></a><br> <font size=3D"-1"><font color=3D"#666666">PR Newswire (press release)</font= tr></table><p><hr noshade size=3D1><font size=3D"-1">Tip: Use site restrict= in your query to search within a site (site:nytimes.com or site:.edu).</fo= nt><p><font size=3D"-1"> <nobr> <a href=3D"http://www.google.com/alerts/remove?s=3DAB2Xq4iHmiAOTXEwjRPldm8_= gg9F1sYlgELyGME&hl=3Den&gl=3D&source=3Dalertsmail&cd=3Dtj1m= I9k_BGE&cad=3D:s1:f2:v0:">Remove</a> this alert. </nobr> <br><a href=3D"http://www.google.com/alerts?hl=3Den&gl=3D&s= ource=3Dalertsmail&cd=3Dtj1mI9k_BGE&cad=3D:s1:f2:v0:">Create</a> an= other alert. <br><a href=3D"http://www.google.com/alerts/manage?hl=3Den&gl=3D&so= urce=3Dalertsmail&cd=3Dtj1mI9k_BGE&cad=3D:s1:f2:v0:">Manage</a> you= r alerts. </font></p></div></body></html>

On Tue, 29 Jun 2010 11:40:50 -0400 Steve Holden <steve@holdenweb.com> wrote:
Sure. I attach the outputs of both files, as well as the program and the data. With profiling (python -m cProfile test3.py) the run took less than a third of a second under 2.5, and 168 seconds under 3.1. I'd say that was problematical :)
I will leave the profiler output to speak for itself, since I can find nothing much to say about it except that there's a hell of a lot of decoding going on inside mailbox.iterkeys().
Ok, a lot of time is spent in cp1252 decoding. Somewhat less time, but still too much of it, is spent in TextIOWrapper.tell(). This seems to imply that mailbox files are opened in text mode, which sounds wrong to me. Perhaps Andrew can shed more light on this?

On Tue, 29 Jun 2010 18:34:22 +0200, Antoine Pitrou <solipsis@pitrou.net> wrote:
On Tue, 29 Jun 2010 11:40:50 -0400 Steve Holden <steve@holdenweb.com> wrote:
Sure. I attach the outputs of both files, as well as the program and the data. With profiling (python -m cProfile test3.py) the run took less than a third of a second under 2.5, and 168 seconds under 3.1. I'd say that was problematical :)
I will leave the profiler output to speak for itself, since I can find nothing much to say about it except that there's a hell of a lot of decoding going on inside mailbox.iterkeys().
Ok, a lot of time is spent in cp1252 decoding. Somewhat less time, but still too much of it, is spent in TextIOWrapper.tell(). This seems to imply that mailbox files are opened in text mode, which sounds wrong to me. Perhaps Andrew can shed more light on this?
Given the current state of the email package for python3, it makes sense that it would open them in text mode. email can't currently process bytes, only text. -- R. David Murray www.bitdance.com

On Tue, Jun 29, 2010 at 11:40:50AM -0400, Steve Holden wrote:
I will leave the profiler output to speak for itself, since I can find nothing much to say about it except that there's a hell of a lot of decoding going on inside mailbox.iterkeys().
The problem is actually in _generate_toc(), which is reading through the entire file to figure out where all the 'From' lines that start messages are located. TextIOWrapper()'s tell() method seems to be very slow, so one help is to only call tell() when necessary; patch: -> svn diff Lib/ Index: Lib/mailbox.py =================================================================== --- Lib/mailbox.py (revision 82346) +++ Lib/mailbox.py (working copy) @@ -775,13 +775,14 @@ starts, stops = [], [] self._file.seek(0) while True: - line_pos = self._file.tell() line = self._file.readline() if line.startswith('From '): + line_pos = self._file.tell() if len(stops) < len(starts): stops.append(line_pos - len(os.linesep)) starts.append(line_pos) elif not line: + line_pos = self._file.tell() stops.append(line_pos) break self._toc = dict(enumerate(zip(starts, stops))) But should mailboxes really be opened in a UTF-8 encoding, or should they be treated as 7-bit text? I'll have to think about this. --amk

On Tue, 29 Jun 2010 12:52:28 -0400 "A.M. Kuchling" <amk@amk.ca> wrote:
But should mailboxes really be opened in a UTF-8 encoding, or should they be treated as 7-bit text? I'll have to think about this.
I don't see how you can assume UTF-8 for mailbox files, given that each message will have its particular encoding. Besides, Steve's profile results show that you are not using UTF-8, but rather the local encoding, which is cp1252 under his Windows setup. Regards Antoine.

A.M. Kuchling wrote:
On Tue, Jun 29, 2010 at 11:40:50AM -0400, Steve Holden wrote:
I will leave the profiler output to speak for itself, since I can find nothing much to say about it except that there's a hell of a lot of decoding going on inside mailbox.iterkeys().
The problem is actually in _generate_toc(), which is reading through the entire file to figure out where all the 'From' lines that start messages are located. TextIOWrapper()'s tell() method seems to be very slow, so one help is to only call tell() when necessary; patch:
-> svn diff Lib/ Index: Lib/mailbox.py =================================================================== --- Lib/mailbox.py (revision 82346) +++ Lib/mailbox.py (working copy) @@ -775,13 +775,14 @@ starts, stops = [], [] self._file.seek(0) while True: - line_pos = self._file.tell() line = self._file.readline() if line.startswith('From '): + line_pos = self._file.tell() if len(stops) < len(starts): stops.append(line_pos - len(os.linesep)) starts.append(line_pos) elif not line: + line_pos = self._file.tell() stops.append(line_pos) break self._toc = dict(enumerate(zip(starts, stops)))
But should mailboxes really be opened in a UTF-8 encoding, or should they be treated as 7-bit text? I'll have to think about this.
Neither! You can't open them as 7-bit text, because real-world email does contain bytes whose ordinal value exceeds 127. You can't open them using a text encoding because theoretically there might be ASCII headers that indicate that parts of the content are in specific character sets or encodings. If only we had a data structure that easily allowed us to manipulate 8-bit characters ... regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000

It should probably be opened in binary mode. Binary files do have a .readline() method (returning a bytes object), and bytes objects have a .startswith() method. The tell positions computed this way are even compatible with those used by the text file. So you could do it this way: - open binary stream - compute TOC by reading through it using .readline() and .tell() - rewind (don't close) - wrap the binary stream in a text stream - use that for the rest of the code --Guido On Tue, Jun 29, 2010 at 10:54 AM, Steve Holden <steve@holdenweb.com> wrote:
A.M. Kuchling wrote:
On Tue, Jun 29, 2010 at 11:40:50AM -0400, Steve Holden wrote:
I will leave the profiler output to speak for itself, since I can find nothing much to say about it except that there's a hell of a lot of decoding going on inside mailbox.iterkeys().
The problem is actually in _generate_toc(), which is reading through the entire file to figure out where all the 'From' lines that start messages are located. TextIOWrapper()'s tell() method seems to be very slow, so one help is to only call tell() when necessary; patch:
-> svn diff Lib/ Index: Lib/mailbox.py =================================================================== --- Lib/mailbox.py (revision 82346) +++ Lib/mailbox.py (working copy) @@ -775,13 +775,14 @@ starts, stops = [], [] self._file.seek(0) while True: - line_pos = self._file.tell() line = self._file.readline() if line.startswith('From '): + line_pos = self._file.tell() if len(stops) < len(starts): stops.append(line_pos - len(os.linesep)) starts.append(line_pos) elif not line: + line_pos = self._file.tell() stops.append(line_pos) break self._toc = dict(enumerate(zip(starts, stops)))
But should mailboxes really be opened in a UTF-8 encoding, or should they be treated as 7-bit text? I'll have to think about this.
Neither! You can't open them as 7-bit text, because real-world email does contain bytes whose ordinal value exceeds 127. You can't open them using a text encoding because theoretically there might be ASCII headers that indicate that parts of the content are in specific character sets or encodings.
If only we had a data structure that easily allowed us to manipulate 8-bit characters ...
regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000 _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/guido%40python.org
-- --Guido van Rossum (python.org/~guido)

Guido van Rossum wrote:
It should probably be opened in binary mode. Binary files do have a .readline() method (returning a bytes object), and bytes objects have a .startswith() method. The tell positions computed this way are even compatible with those used by the text file. So you could do it this way:
- open binary stream - compute TOC by reading through it using .readline() and .tell() - rewind (don't close)
Because closing is inefficient, or because it breaks the algorithm?
- wrap the binary stream in a text stream
"wrap" how? The ultimate destiny of the text is twofold: 1) To be stored as some kind of LOB in a database, and 2) Therefrom to be reconstituted and parsed into email.Message objects. Is the wrapping a one-off operation or a software layer? Sorry, being a bit dense here, I know. regards Steve
- use that for the rest of the code
--Guido
On Tue, Jun 29, 2010 at 10:54 AM, Steve Holden <steve@holdenweb.com> wrote:
I will leave the profiler output to speak for itself, since I can find nothing much to say about it except that there's a hell of a lot of decoding going on inside mailbox.iterkeys(). The problem is actually in _generate_toc(), which is reading through
On Tue, Jun 29, 2010 at 11:40:50AM -0400, Steve Holden wrote: the entire file to figure out where all the 'From' lines that start messages are located. TextIOWrapper()'s tell() method seems to be very slow, so one help is to only call tell() when necessary; patch:
-> svn diff Lib/ Index: Lib/mailbox.py =================================================================== --- Lib/mailbox.py (revision 82346) +++ Lib/mailbox.py (working copy) @@ -775,13 +775,14 @@ starts, stops = [], [] self._file.seek(0) while True: - line_pos = self._file.tell() line = self._file.readline() if line.startswith('From '): + line_pos = self._file.tell() if len(stops) < len(starts): stops.append(line_pos - len(os.linesep)) starts.append(line_pos) elif not line: + line_pos = self._file.tell() stops.append(line_pos) break self._toc = dict(enumerate(zip(starts, stops)))
But should mailboxes really be opened in a UTF-8 encoding, or should they be treated as 7-bit text? I'll have to think about this. Neither! You can't open them as 7-bit text, because real-world email does contain bytes whose ordinal value exceeds 127. You can't open them using a text encoding because theoretically there might be ASCII headers
A.M. Kuchling wrote: that indicate that parts of the content are in specific character sets or encodings.
If only we had a data structure that easily allowed us to manipulate 8-bit characters ...
regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000

On Tue, 29 Jun 2010 17:02:14 -0400, Steve Holden <steve@holdenweb.com> wrote:
Guido van Rossum wrote:
- wrap the binary stream in a text stream
"wrap" how? The ultimate destiny of the text is twofold:
I would imagine Guido is talking about an io.TextIOWrapper...in other words, take the binary file you've just finished grabbing info from, and reread it as a text file in order to grab the actual message content. If you have messages in your files that are using an 8bit content transfer encoding, then you (currently) will have some problems unless the charset happens to be the one you use when you wrap the binary stream as a text stream. -- R. David Murray www.bitdance.com

R. David Murray wrote:
On Tue, 29 Jun 2010 17:02:14 -0400, Steve Holden <steve@holdenweb.com> wrote:
Guido van Rossum wrote:
- wrap the binary stream in a text stream "wrap" how? The ultimate destiny of the text is twofold:
I would imagine Guido is talking about an io.TextIOWrapper...in other words, take the binary file you've just finished grabbing info from, and reread it as a text file in order to grab the actual message content.
If you have messages in your files that are using an 8bit content transfer encoding, then you (currently) will have some problems unless the charset happens to be the one you use when you wrap the binary stream as a text stream.
http://bugs.python.org/issue9124 regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 DjangoCon US September 7-9, 2010 http://djangocon.us/ See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/

On Tue, 29 Jun 2010 20:05:29 -0400 "R. David Murray" <rdmurray@bitdance.com> wrote:
I would imagine Guido is talking about an io.TextIOWrapper...in other words, take the binary file you've just finished grabbing info from, and reread it as a text file in order to grab the actual message content.
This sounds a bit suboptimal to me (and introduces race conditions if e.g. the file is replaced with another one before you reopen it). You could instead decode the binary data by yourself, especially if you have already stored that data somewhere. Also, please note that values used by seek() and tell() on text I/O are "opaque cookies". While they can happen to match the raw binary file position, it is a mere coincidence (or an implementation detail, at your will). Therefore, reusing tell() values of a binary file to seek() a TextIOWrapper accessing the same file is wrong.

On Wed, Jun 30, 2010 at 9:42 AM, Antoine Pitrou <solipsis@pitrou.net> wrote:
On Tue, 29 Jun 2010 20:05:29 -0400 "R. David Murray" <rdmurray@bitdance.com> wrote:
I would imagine Guido is talking about an io.TextIOWrapper...in other words, take the binary file you've just finished grabbing info from, and reread it as a text file in order to grab the actual message content.
This sounds a bit suboptimal to me (and introduces race conditions if e.g. the file is replaced with another one before you reopen it). You could instead decode the binary data by yourself, especially if you have already stored that data somewhere.
That's why I proposed not reopening but wrapping. Of course the contents of the file could still change, but that's a limitation of how the mailbox module works -- it builds a TOC and expects the file not to change.
Also, please note that values used by seek() and tell() on text I/O are "opaque cookies". While they can happen to match the raw binary file position, it is a mere coincidence (or an implementation detail, at your will). Therefore, reusing tell() values of a binary file to seek() a TextIOWrapper accessing the same file is wrong.
Well, um, I actually designed it carefully so that bytes offsets *would* work as text offsets in those cases where they make sense at all. -- --Guido van Rossum (python.org/~guido)

On Wed, 30 Jun 2010 10:03:49 -0700 Guido van Rossum <guido@python.org> wrote:
Also, please note that values used by seek() and tell() on text I/O are "opaque cookies". While they can happen to match the raw binary file position, it is a mere coincidence (or an implementation detail, at your will). Therefore, reusing tell() values of a binary file to seek() a TextIOWrapper accessing the same file is wrong.
Well, um, I actually designed it carefully so that bytes offsets *would* work as text offsets in those cases where they make sense at all.
Ah, this is embarrassing. I always assumed it was an implementation detail since neither the PEP nor the module docs say otherwise. PEP 3116 clearly says: “Unlike with raw I/O, the units for .seek() are not specified - some implementations (e.g. StringIO) use characters and others (e.g. TextIOWrapper) use bytes.” And also: “.seek(pos: object, whence: int = 0) -> int Seek to position pos. If pos is non-zero, it must be a cookie returned from .tell() and whence must be zero.” “it must be a cookie returned from .tell()” here seems to imply that non-zero values of other origin should not be used. Regards Antoine.

On Wed, Jun 30, 2010 at 10:20 AM, Antoine Pitrou <solipsis@pitrou.net> wrote:
On Wed, 30 Jun 2010 10:03:49 -0700 Guido van Rossum <guido@python.org> wrote:
Also, please note that values used by seek() and tell() on text I/O are "opaque cookies". While they can happen to match the raw binary file position, it is a mere coincidence (or an implementation detail, at your will). Therefore, reusing tell() values of a binary file to seek() a TextIOWrapper accessing the same file is wrong.
Well, um, I actually designed it carefully so that bytes offsets *would* work as text offsets in those cases where they make sense at all.
Ah, this is embarrassing. I always assumed it was an implementation detail since neither the PEP nor the module docs say otherwise.
PEP 3116 clearly says:
“Unlike with raw I/O, the units for .seek() are not specified - some implementations (e.g. StringIO) use characters and others (e.g. TextIOWrapper) use bytes.”
And also:
“.seek(pos: object, whence: int = 0) -> int
Seek to position pos. If pos is non-zero, it must be a cookie returned from .tell() and whence must be zero.”
“it must be a cookie returned from .tell()” here seems to imply that non-zero values of other origin should not be used.
Guilty as charged. I really did take care that it would work, but forgot to mention it. I guess we can depend on this property *inside* the stdlib (as long as there are tests for each piece of code depending on it that would break if it ever changed) but should not advertise it widely. Note that it doesn't go the other way -- due to encoding state, text streams can certainly return cookies that make no sense to binary streams. But text streams take byte offsets too and do the best they can. (Obviously if a byte offset points in the middle of a multibyte character all bets are off.) The C stdlib has a similar thing -- while AFAIK POSIX lseek() really is required to return and take byte offsets, this is not required for fseek() and ftell() according to the C std -- but I think it's still a pretty safe bet, and I betcha lots of apps are making this assumption. -- --Guido van Rossum (python.org/~guido)

On Tue, 29 Jun 2010 13:54:09 -0400, Steve Holden <steve@holdenweb.com> wrote:
A.M. Kuchling wrote:
But should mailboxes really be opened in a UTF-8 encoding, or should they be treated as 7-bit text? I'll have to think about this.
Neither! You can't open them as 7-bit text, because real-world email does contain bytes whose ordinal value exceeds 127. You can't open them using a text encoding because theoretically there might be ASCII headers that indicate that parts of the content are in specific character sets or encodings.
If only we had a data structure that easily allowed us to manipulate 8-bit characters ...
email6 *will* handle this use case. When it exists :) But note that it is *not* just a matter of easily handling 8 bit characters. There are a whole bunch of algorithms needed for interpreting that 7 and 8 bit data. All the info is there in the email headers, but being able to do string operations on 8 bit byte strings doesn't get you the answers you need by itself. It really is the case that the Python3 bytes/unicode split forces us to redo most of the algorithms so that they handle bytes and text *correctly*. This isn't a trivial undertaking, but the end result will be well worth it. -- R. David Murray www.bitdance.com

R. David Murray wrote:
On Tue, 29 Jun 2010 13:54:09 -0400, Steve Holden <steve@holdenweb.com> wrote:
But should mailboxes really be opened in a UTF-8 encoding, or should they be treated as 7-bit text? I'll have to think about this. Neither! You can't open them as 7-bit text, because real-world email does contain bytes whose ordinal value exceeds 127. You can't open them using a text encoding because theoretically there might be ASCII headers
A.M. Kuchling wrote: that indicate that parts of the content are in specific character sets or encodings.
If only we had a data structure that easily allowed us to manipulate 8-bit characters ...
email6 *will* handle this use case. When it exists :) But note that it is *not* just a matter of easily handling 8 bit characters. There are a whole bunch of algorithms needed for interpreting that 7 and 8 bit data. All the info is there in the email headers, but being able to do string operations on 8 bit byte strings doesn't get you the answers you need by itself.
It really is the case that the Python3 bytes/unicode split forces us to redo most of the algorithms so that they handle bytes and text *correctly*. This isn't a trivial undertaking, but the end result will be well worth it.
I completely agree. The unusual thing here is that I of all people should find himself running into these issues, since my use of Python is normally pretty conservative. Since the course I am currently writing is already overdue I have to find answers now to problems that were present in the initial 3.0 release and have not received much attention since. You know that I support your work to revise the email package. I hope that we can eventually have it incorporate mailbox readers as well. regards Steve -- Steve Holden +1 571 484 6266 +1 800 494 3119 See Python Video! http://python.mirocommunity.org/ Holden Web LLC http://www.holdenweb.com/ UPCOMING EVENTS: http://holdenweb.eventbrite.com/ "All I want for my birthday is another birthday" - Ian Dury, 1942-2000

On Tue, Jun 29, 2010 at 07:56:22AM -0700, Guido van Rossum wrote:
Since you have such a great reproducible test case, could you point the profiler at it? (Perhaps on a reduced dataset... The profiler multiples your run time by some number between 2 and 10 IIRC.)
Let me underline Guido's suggestion. Steve, I've done a lot of mailbox.py stuff and can look at your problem, but off the top of my head, my suspicion would be that I/O is the culprit, and a profile could confirm that. My thought is that mailbox.py is opening the file in some reading mode that ends up doing a lot more processing on Windows than on Unix because of universal newlines or something like that. --amk

On 29/06/2010 15:26, Steve Holden wrote:
Nick Coghlan wrote:
Command line: ./python -m test.regrtest -v test_mailbox
trunk: Ran 274 tests in 25.239s py3k: Ran 268 tests in 26.263s
So I don't see any substantial difference on a Kubuntu 10.04 box (both builds are recent'ish, but not completely up to date).
However, the underlying IO access is significantly different between POSIX and Windows, so there could still be something pathological happening at the filesystem manipulation layer. My comparisons are also 2.7 vs 3.2 rather than 2.6 vs 3.1.
Cheers, Nick.
Thanks for all the timings! If a Windows user could do the same thing that would help ...
WinXP SP3 2.6 Ran 272 tests in 13.172s 3.1 Ran 267 tests in 15.735s py3k A *lot* of ERROR and FAIL tests WinXP SP3 TJG

On 29/06/2010 15:51, Tim Golden wrote:
On 29/06/2010 15:26, Steve Holden wrote:
Nick Coghlan wrote:
Command line: ./python -m test.regrtest -v test_mailbox
trunk: Ran 274 tests in 25.239s py3k: Ran 268 tests in 26.263s
So I don't see any substantial difference on a Kubuntu 10.04 box (both builds are recent'ish, but not completely up to date).
However, the underlying IO access is significantly different between POSIX and Windows, so there could still be something pathological happening at the filesystem manipulation layer. My comparisons are also 2.7 vs 3.2 rather than 2.6 vs 3.1.
Cheers, Nick.
Thanks for all the timings! If a Windows user could do the same thing that would help ...
WinXP SP3
2.6 Ran 272 tests in 13.172s 3.1 Ran 267 tests in 15.735s py3k A *lot* of ERROR and FAIL tests
py3k HEAD on Win7 Ran 268 tests in 34.055s TJG
participants (9)
-
A.M. Kuchling
-
Antoine Pitrou
-
Guido van Rossum
-
Miki Tebeka
-
Nick Coghlan
-
R. David Murray
-
Senthil Kumaran
-
Steve Holden
-
Tim Golden