[Twisted-Python] Real Viagra Professional - for real sex pros
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <center> <a href="http://rqf.entercompassion.com"><img src="http://mediapix.ru/pics/685207b3dd437eff7f15c0744b5c1d3a.gif"> <title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="http://gfx8.nnt.com/mail/12.0.1187.0824/positioning.css" /> </head> <body style="overflow:auto;"> <div id="PrintShellToolbar"> <div class="ContainerPadding"> <span class="FloatRight"> <a href= > <img alt="" src="http://gfx1.nfi.com/mail/w2/pr02/ltr/glyph_close_rest.gif" /> <Close window> <a href= > <img alt="" src="http://gfx2.czb.com/mail/w2/pr02/ltr/i_print.gif" /> <Print> </a> </span> </div> </div> <div> <div class="BorderContainerOutline ContainerPadding"> <div class="ClearBoth"> <span class="HeaderData" style="font-size:large;"> <TuPostal.com Cambia de nombre?> </span> </div> <div class="ClearBoth"> <span class="HeaderLabel"> <From:> </span> <span class="HeaderData"> <b><TuPostal.com></b> </span> </div> <div class="ClearBoth"> <span class="HeaderLabel"> <Sent:> </span> <span class="HeaderData"> <div class="ClearBoth"> <span class="HeaderLabel"> To: </span> <span class="HeaderData"> Mikelelliott (mikelelliott@rlo.com) </span> </div> <br /> </div> </div> <div class="MessageBody" style=""> <br /> <div id="MessageBodyText" class="ExternalClass" style="border: 1px solid #fff ;"> <pre>Hola!<br> <br>Tupostal es ahora parte de Sonico!<br> <br>Para conocer nuestro nuevo sitio, haz clic en el siguiente link:<br><a href='http://www.gwpcom/index1.php' target='_blank'>http://www.bjncom/index1.php</a><br> <br>Sonico es un sitio donde puedes...<br>- Guardar fotos ilimitadas<br>- Re encontrarte con viejos amigos<br>- Recibir novedades de tus amigos.<br> <br>Te Esperamos! Ya somos mas de 21 millones de usuarios!!<br> <br>Sonico - Amigos Conectados<br> <br> <br>PD: Ahora tambien podras guardar tus postales<br> <br> <br>------------------------------------------<br>Haz recibido este email porque te encuentras registrado en fdm.com.<br>Si no deseas recibir mas mensajes como este, por favor haz clic en el siguiente link:<br><a href='http://www.cehcom/unsubscribe.php?type=2' target='_blank'>http://www.fyocom/unsubscribe.php?type=2</a><br> <br></pre> </div> </div> </div> </body> </html>
The log is very valuable to me for debugging, but I'd love to know how to improve the precision of the time stamp. My log shows stuff like this: 2014-01-19 12:44:37-0500 [-] 'SCPProtocol.ackNotReceived: aa23827e20547c6aca71ecfcdeb486a99fe6cf314e1b84e687296821a8ca423a' 2014-01-19 12:44:37-0500 [-] "doSCPInitiation.noResponseReceived: err=[Failure instance: Traceback (failure with no frames): <class 'communication.scp.scp.AckReceivingFailed'>: ACKNOTRECEIVED\n]" 2014-01-19 12:44:37-0500 [-]
From calling twisted.python.log.msg( "stuff to log" )
How can I change the time in the logged message to get, say, milliseconds resolution? Thanks, Bob
On 19 Jan, 11:47 pm, dustin@v.igoro.us wrote:
From what I can tell in a few old bugs and the API docs, the key is to monkey-patch log.FileLogObserver.timeFormat.
Or just politely set it on the instance of FileLogObserver your application creates so as to avoid global side-effects. :) Jean-Paul
On Sun, Jan 19, 2014 at 8:55 PM, <exarkun@twistedmatrix.com> wrote:
On 19 Jan, 11:47 pm, dustin@v.igoro.us wrote:
From what I can tell in a few old bugs and the API docs, the key is to
monkey-patch log.FileLogObserver.timeFormat.
Or just politely set it on the instance of FileLogObserver your application creates so as to avoid global side-effects. :)
Ah, which is returned from startLogging, so -- from twisted.python import log lo = log.startLogging(sys.stdout) lo.formatTime = lambda when: datetime.datetime.fromtimestamp(when).strftime("%H:%M:%S.%f") log.msg("Hello!") -- I'm not sure how you'd find that object under Twistd, though. Dustin
On 02:16 am, dustin@v.igoro.us wrote:
On Sun, Jan 19, 2014 at 8:55 PM, <exarkun@twistedmatrix.com> wrote:
On 19 Jan, 11:47 pm, dustin@v.igoro.us wrote:
From what I can tell in a few old bugs and the API docs, the key is to
monkey-patch log.FileLogObserver.timeFormat.
Or just politely set it on the instance of FileLogObserver your application creates so as to avoid global side-effects. :)
Ah, which is returned from startLogging, so
-- from twisted.python import log
lo = log.startLogging(sys.stdout) lo.formatTime = lambda when: datetime.datetime.fromtimestamp(when).strftime("%H:%M:%S.%f")
log.msg("Hello!") --
I'm not sure how you'd find that object under Twistd, though.
If you have a tac file, set it yourself. If you're using a twistd plugin, use the `--logger` option: https://twistedmatrix.com/documents/current/core/howto/application.html#auto... Jean-Paul
Hi, I have the codes below and I would like to know how is it possible to send out data which came to "a" instance from "b" i mean data to port 2000 go out from port "2001" !? class fact(DatagramProtocol): def datagramReceived(self, datagram, addr): self.transport.write( datagram, some_where ) a = reactor.listenUDP(2001, fact()) b = reactor.listenUDP(2002, fact())
Hi consider this for TCP, adapt to UDP http://stackoverflow.com/questions/15640640/python-twisted-man-in-the-middle... Werner On 9/12/14 11:26 AM, User User wrote:
Hi, I have the codes below and I would like to know how is it possible to send out data which came to "a" instance from "b" i mean data to port 2000 go out from port "2001" !?
Is there anybody listening on port 2000?
class fact(DatagramProtocol): def datagramReceived(self, datagram, addr): self.transport.write( datagram, some_where )
a = reactor.listenUDP(2001, fact()) b = reactor.listenUDP(2002, fact())
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
I've been having ongoing problems accessing the TwistedMatrix site. (Tried both Firefox and Chrome from my home PC.) I've been trying to log in to update issue 9629 below to report it is a duplicate of a known problem. (Can't tell you WHICH known problem because I can't search the Twisted tickets.) On Monday evening, when I submitted this issue, I filled in the form and nothing appeared to happen. (I may have even submitted it twice.) I searched the tickets and discovered 1) it didn't appear (so no ticket?) and 2) it seemed to be the same as a previously reported problem, so I added a comment to the previous ticket that I was seeing the same issue and a little context that might help. (I only started seeing it with Twisted 19.2.0, but the original report said it was under 18.4.0 which I had been running uneventfully since last summer.) Anyway, I got no feedback, so I assumed my initial attempt to create a ticket had failed. Someone with access, please mark #9629 as a duplicate and close. Thanks, John On 4/28/2019 2:05 AM, trac@twistedmatrix.com wrote:
Bug summary ______________________ Summary for 2019-04-21 through 2019-04-28 Opened Closed Total Change Enhancements: 2 0 1410 +2 Defects: 4 0 952 +4 Tasks: 0 0 98 +0 Regressions: 0 0 6 +0 Total: 6 0 2467 +6
|== Type Changes |== Priority Changes |== Component Changes |Defect: +4 |Normal: +6 |Core: +5 |Enhancement: +2 |Trial: +1
Total Tickets Open Tickets
New / Reopened Bugs ______________________ ===== Normal ===== [#9628] trial3 reports "AttributeError: test_file does not exist" when an ImportError is raised by test_file.py (opened by ezio-melotti) defect trial http://twistedmatrix.com/trac/ticket/9628
[#9629] Unhandled error in TLS shutdown (opened by jsantos2) defect core http://twistedmatrix.com/trac/ticket/9629
[#9630] Twisted TLS support should loudly raise an exception without service_identity (opened by hawkowl) defect core http://twistedmatrix.com/trac/ticket/9630
[#9631] Binary wheel for Python 3.7 on Windows (opened by ofek) enhancement core http://twistedmatrix.com/trac/ticket/9631
[#9632] Factor reactor name-resolution implementations out of ReactorBase for easier re-use (opened by exarkun) enhancement core http://twistedmatrix.com/trac/ticket/9632
[#9633] tox -e lint is broken on pip 19.1 (opened by hawkowl) defect core http://twistedmatrix.com/trac/ticket/9633
Closed Bugs ______________________
Ticket Lifetime Stats ______________________ Oldest open ticket - [#50] conch command-line client doesn't work in win32 (since 2003-07-12 14:41:06). Newest open ticket - [#9633] tox -e lint is broken on pip 19.1 (since 2019-04-26 18:34:43.754553).
Mean open ticket age: 2528 days, 8:35:56.837971. Median: 2412 days, 23:30:02.403434. Standard deviation: 1349 days, 20:50:35.165064. Interquartile range: 1977 days, 4:18:42.288177.
Mean time between ticket creation and ticket resolution: 627 days, 0:29:45.545719. Median: 65 days, 0:22:19. Standard deviation is 1025 days, 11:39:43.423500. The interquartile range is 848 days, 2:56:42.
Mean time spent in review: 102 days, 23:33:30.414587. Median: 4 days, 15:51:44. Standard deviation: 501 days, 2:53:08.460473. Interquartile range: 23 days, 3:25:21.
Mean number of times a ticket is reviewed: 1.82463217845. Median: 1 Standard deviation: 1.43581247742. Interquartile range: 1.
Contributor Stats ______________________ In the last 4 weeks, 13 unique ticket reporters 6 unique ticket reviewers 8 unique ticket resolvers In the last 24 weeks, 29 unique ticket reporters 9 unique ticket reviewers 10 unique ticket resolvers In the last 48 weeks, 64 unique ticket reporters 12 unique ticket reviewers 16 unique ticket resolvers
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com https://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
-- John Santos Evans Griffiths & Hart, Inc. 781-861-0670 ext 539
On Apr 28, 2019, at 8:01 AM, John Santos <john@egh.com> wrote: I've been having ongoing problems accessing the TwistedMatrix site. (Tried both Firefox and Chrome from my home PC.)
The site was having some issues and the server badly needed a reboot during the time you were trying to access it.
I've been trying to log in to update issue 9629 below to report it is a duplicate of a known problem. (Can't tell you WHICH known problem because I can't search the Twisted tickets.)
Hopefully the search function is back? But also you can try searching with Google, using 'site:twistedmatrix.com/trac/ticket'.
On Monday evening, when I submitted this issue, I filled in the form and nothing appeared to happen. (I may have even submitted it twice.)
I searched the tickets and discovered 1) it didn't appear (so no ticket?) and 2) it seemed to be the same as a previously reported problem, so I added a comment to the previous ticket that I was seeing the same issue and a little context that might help. (I only started seeing it with Twisted 19.2.0, but the original report said it was under 18.4.0 which I had been running uneventfully since last summer.)
Anyway, I got no feedback, so I assumed my initial attempt to create a ticket had failed.
Someone with access, please mark #9629 as a duplicate and close.
Done. Looks like https://twistedmatrix.com/trac/ticket/9462 <https://twistedmatrix.com/trac/ticket/9462> was the issue in question; I see your comment on it. Thanks for writing the email to follow up :). -g
On 5/1/2019 02:01 AM, Glyph wrote:
On Apr 28, 2019, at 8:01 AM, John Santos <john@egh.com <mailto:john@egh.com>> wrote:
I've been having ongoing problems accessing the TwistedMatrix site. (Tried both Firefox and Chrome from my home PC.)
The site was having some issues and the server badly needed a reboot during the time you were trying to access it.
I've been trying to log in to update issue 9629 below to report it is a duplicate of a known problem. (Can't tell you WHICH known problem because I can't search the Twisted tickets.)
Hopefully the search function is back? But also you can try searching with Google, using 'site:twistedmatrix.com/trac/ticket' <http://twistedmatrix.com/trac/ticket'>.
On Monday evening, when I submitted this issue, I filled in the form and nothing appeared to happen. (I may have even submitted it twice.)
I searched the tickets and discovered 1) it didn't appear (so no ticket?) and 2) it seemed to be the same as a previously reported problem, so I added a comment to the previous ticket that I was seeing the same issue and a little context that might help. (I only started seeing it with Twisted 19.2.0, but the original report said it was under 18.4.0 which I had been running uneventfully since last summer.)
Anyway, I got no feedback, so I assumed my initial attempt to create a ticket had failed.
Someone with access, please mark #9629 as a duplicate and close.
Done. Looks like https://twistedmatrix.com/trac/ticket/9462 was the issue in question; I see your comment on it.
Thanks for writing the email to follow up :).
-g
Yes, that's it. Thanks, Glyph. (I always get a warm feeling when I see a bug* get stomped even when it's just because it's a duplicate!) I also saw your later comment that it might be related to #7926. I suspect you are correct, though it makes my brain hurt to try to follow it. I think TLS is trying to deal more sensibly with connections getting intentionally shut down by either end, but issues still arise when shutdowns happen in the middle of negotiations. (Which broaches the issue "can this be leveraged into a DOS attack?", on top of just trying to deal with it correctly.) In my case, though, I think the issue pops up when my server times out and closes the connection, but the client end (a vanilla web browser such as Firefox or Chrome) doesn't do exactly what the TLS server code expects. Which side (client or server) is behaving incorrectly? I have no idea. [*] a computer bug**, not a real bug, for any hard-core Buddhists or Jains lurking... ;-) [**] I've seen the original Mark II/Grace Hopper bug. It was actually a large moth, scotch-taped to the console log... Found a picture at https://www.atlasobscura.com/places/grace-hoppers-bug (Maybe you can tell I'm in full work-avoidance mode.) PS the web site is working much better today, thanks. -- John Santos Evans Griffiths & Hart, Inc. 781-861-0670 ext 539
participants (8)
-
Bob Novas
-
Dustin J. Mitchell
-
exarkun@twistedmatrix.com
-
Glyph
-
John Santos
-
Tamika
-
User User
-
Werner Thie