Options:
- # Session Start: Thu Dec 04 00:00:00 2014
- # Session Ident: #testing
- # [00:05] * heycam is now known as heycam|away
- # [00:51] * Joins: bhill2 (~bhill2@public.cloak)
- # [00:56] * Joins: mdas (~mdas@public.cloak)
- # [00:58] * Quits: mdas (~mdas@public.cloak) (Client closed connection)
- # [01:00] * Quits: ptressel (~chatzilla@public.cloak) ("mapping")
- # [01:02] * Joins: mdas (~mdas@public.cloak)
- # [01:16] * Quits: chaals (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [01:23] * Joins: shepazu (schepers@public.cloak)
- # [01:41] * terri is now known as terri_offline
- # [01:55] * Joins: chaals (~Adium@public.cloak)
- # [02:01] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
- # [02:02] * Quits: Ms2ger (~Ms2ger@public.cloak) ("nn")
- # [02:11] * Quits: chaals (~Adium@public.cloak) (Ping timeout: 180 seconds)
- # [02:15] * Quits: bhill2 (~bhill2@public.cloak) (Client closed connection)
- # [02:15] * Quits: artb (~ArtB@public.cloak) ("Leaving.")
- # [02:23] * Quits: mdas (~mdas@public.cloak) (Client closed connection)
- # [02:42] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [02:44] * Quits: plh (plehegar@public.cloak)
- # [02:44] * Joins: mdas (~mdas@public.cloak)
- # [02:53] * Joins: gitbot (~gitbot@public.cloak)
- # [02:53] -gitbot:#testing- [web-platform-tests] andreastt opened pull request #1441: Ignore testharness_runner.html (master...ato/ignore_testharness_runner) https://github.com/w3c/web-platform-tests/pull/1441
- # [02:53] * Parts: gitbot (~gitbot@public.cloak) (gitbot)
- # [02:55] <ato> jgraham: You there still?
- # [02:56] <ato> MikeSmith: I think the problem with manifest.py is that it's doing a lot of work on the main thread, and that it fails to trigger the signal handler because of htat.
- # [02:56] <ato> s/htat/that/
- # [02:57] <jgraham> ato: Yeah, in F
- # [02:57] <ato> jgraham: How do I rebase on critic again?
- # [02:57] <jgraham> ato: Press the "Rebase Review" button
- # [02:57] <ato> Do I push to the same branch on Github, or a new one?
- # [02:57] <jgraham> Well assuming you did a push -f
- # [02:57] <jgraham> Same branch -f
- # [02:57] <ato> Haven't pushed yet.
- # [02:58] <ato> Cool.
- # [02:58] * Joins: gitbot (~gitbot@public.cloak)
- # [02:58] -gitbot:#testing- [wptrunner] andreastt force-pushed ato/encapsulate_webdriver from ab1ba20 to f28ea92: https://github.com/w3c/wptrunner/commits/ato/encapsulate_webdriver
- # [02:58] -gitbot:#testing- wptrunner/ato/encapsulate_webdriver c46ed05 Andreas Tolfsen: Add support for different WebDriver servers...
- # [02:58] -gitbot:#testing- wptrunner/ato/encapsulate_webdriver 5bf9bfe Andreas Tolfsen: fixup! Add support for different WebDriver servers
- # [02:58] -gitbot:#testing- wptrunner/ato/encapsulate_webdriver fe7061e Andreas Tolfsen: fixup! Add support for different WebDriver servers
- # [02:58] * Parts: gitbot (~gitbot@public.cloak) (gitbot)
- # [02:58] <ato> Well that was easy.
- # [03:00] <jgraham> I am recording that quote for posterity
- # [03:00] <jgraham> Did you also rebase the review?
- # [03:00] <ato> Yeah.
- # [03:00] <ato> I remember struggling with this in the past, but this was really straight forward.
- # [03:00] * heycam|away is now known as heycam
- # [03:01] <jgraham> You need to press "enable tracking"
- # [03:01] <jgraham> (I did it this time)
- # [03:01] <ato> I may have accidentally done a merge commit though.
- # [03:02] <jgraham> No, that's the Equivalent Merge Commit
- # [03:03] <ato> BTW, don't land this as I think I want to squash it and amend the commit message.
- # [03:03] <ato> It's a bit incorrect after the fixups.
- # [03:06] <jgraham> Sure, put that in an Issue
- # [03:07] <ato> Done
- # [03:13] <MikeSmith> very nice
- # [03:14] <MikeSmith> that's ready to land (modulo the squash/amend)?
- # [03:15] <MikeSmith> ato: as far as "I think the problem with manifest.py is that it's doing a lot of work on the main thread, and that it fails to trigger the signal handler because of htat.
- # [03:15] <MikeSmith> .. it seems like a bug in python if it's possible for a python program to get into that state
- # [03:15] <ato> MikeSmith: Modulo that jgraham finds my code agreeable and without mistake (-;
- # [03:16] <ato> MikeSmith: I can have a look at it.
- # [03:16] <MikeSmith> k
- # [03:16] <MikeSmith> an jgraham hadn't reviewed that PR yet
- # [03:17] <MikeSmith> ato: about the SIGINT, and as I mentioned earlier, I've seen other python programs behave like that
- # [03:17] * MikeSmith googles
- # [03:17] <MikeSmith> try googling "python ignores"
- # [03:18] <ato> MikeSmith: Great, thanks for the pointer
- # [03:18] <MikeSmith> http://stackoverflow.com/questions/11815947/cannot-kill-python-script-with-ctrl-c etc
- # [03:18] <MikeSmith> anyway you guys rock
- # [03:19] <jgraham> Yeah so if it's calling into a C extension it will ignore sigint for a while
- # [03:19] <ato> Lots of Python standard libraries use C extensions.
- # [03:19] <ato> I mentioned it earlier only because I found it curious.
- # [03:20] <jgraham> Oh yeah, so threading breaks SIGINT by default
- # [03:21] <MikeSmith> oh
- # [03:21] <MikeSmith> that seems less than ideal
- # [03:21] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [03:21] * heycam is now known as heycam|away
- # [03:24] <jgraham> Well threading is less than ideal
- # [03:26] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [03:28] <MikeSmith> fair enough
- # [03:28] * MikeSmith is now known as darobin
- # [03:28] <darobin> python is less than ideal
- # [03:28] * darobin is now known as MikeSmith
- # [03:29] <MikeSmith> hey where did darobin come from?? and why did he leave so suddenly
- # [03:34] <jgraham> He just popped in to troll Python I guess
- # [03:43] * Quits: mdas (~mdas@public.cloak) ("Leaving...")
- # [03:57] * MikeSmith wonders if jgraham sees nick change notifications
- # [04:16] <wilhelm> :D
- # [04:19] * Joins: ptressel (~chatzilla@public.cloak)
- # [04:33] * Joins: ptressel_ (~chatzilla@public.cloak)
- # [04:37] * Quits: ptressel (~chatzilla@public.cloak) (Ping timeout: 180 seconds)
- # [04:37] * ptressel_ is now known as ptressel
- # [05:28] * Quits: ptressel (~chatzilla@public.cloak) ("bbl")
- # [05:47] <jgraham> Well apparently I don't read them
- # [06:42] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [06:51] * Joins: zcorpan (~zcorpan@public.cloak)
- # [06:58] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
- # [07:05] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [08:06] * Joins: zcorpan (~zcorpan@public.cloak)
- # [08:32] * heycam|away is now known as heycam
- # [08:33] * heycam is now known as heycam|away
- # [09:06] * Joins: ptressel (~chatzilla@public.cloak)
- # [09:17] * Disconnected
- # [09:18] * Attempting to rejoin channel #testing
- # [09:18] * Rejoined channel #testing
- # [09:18] * Topic is '"also, I hope no one actually reads this, but I have to admit that I've kind of gotten used to Critic" --darobin'
- # [09:18] * Set by Ms2ger on Mon Nov 03 08:55:12
- # [09:18] * Joins: birtles (~sid16523@public.cloak)
- # [09:18] * Quits: krijnhoetmer (~krijnhoetmer@public.cloak) (Client closed connection)
- # [09:24] * Joins: Ms2ger (~Ms2ger@public.cloak)
- # [11:40] * Quits: Ms2ger (~Ms2ger@public.cloak) ("bbl")
- # [12:02] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
- # [12:06] * Joins: zcorpan (~zcorpan@public.cloak)
- # [12:22] * Joins: abarsto (~abarsto@public.cloak)
- # [12:22] * abarsto is now known as ArtB
- # [12:57] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [13:00] * Joins: Ms2ger (~Ms2ger@public.cloak)
- # [13:38] * Joins: gitbot (~gitbot@public.cloak)
- # [13:38] -gitbot:#testing- [web-platform-tests] zcorpan opened pull request #1442: Sync hashless hex color quirk tests with ... (master...quirk-hashless) https://github.com/w3c/web-platform-tests/pull/1442
- # [13:38] * Parts: gitbot (~gitbot@public.cloak) (gitbot)
- # [14:06] * Joins: plh (plehegar@public.cloak)
- # [14:24] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
- # [14:45] * Joins: scott_gonzalez (~scott_gonzalez@public.cloak)
- # [14:47] * Quits: ptressel (~chatzilla@public.cloak) ("later...")
- # [14:49] <zcorpan> r? ^
- # [15:21] * Joins: gitbot (~gitbot@public.cloak)
- # [15:21] -gitbot:#testing- [web-platform-tests] zcorpan closed pull request #1439: WebMessaging__3rd param not Transferable should throw TypeError (master...fix-webmessaging-withport025026-TypeError) https://github.com/w3c/web-platform-tests/pull/1439
- # [15:21] * Parts: gitbot (~gitbot@public.cloak) (gitbot)
- # [16:13] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [17:14] * Joins: zcorpan_ (~zcorpan@public.cloak)
- # [17:21] * Quits: zcorpan_ (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
- # [17:34] * Joins: lukeis (~Adium@public.cloak)
- # [17:39] * Joins: bhill2 (~bhill2@public.cloak)
- # [17:39] * Quits: bhill2 (~bhill2@public.cloak) (Client closed connection)
- # [17:39] * Joins: bhill2 (~bhill2@public.cloak)
- # [17:39] * Quits: bhill2 (~bhill2@public.cloak) (Client closed connection)
- # [17:39] * Joins: bhill2 (~bhill2@public.cloak)
- # [17:44] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [17:46] * Quits: bhill2 (~bhill2@public.cloak) ("Leaving...")
- # [17:54] * Joins: bhill2 (~bhill2@public.cloak)
- # [18:14] * Joins: zcorpan_ (~zcorpan@public.cloak)
- # [18:22] * Quits: zcorpan_ (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
- # [18:22] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [18:28] * Joins: mdas (~mdas@public.cloak)
- # [18:29] * heycam|away is now known as heycam
- # [18:34] * terri_offline is now known as terri
- # [18:56] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [18:56] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [18:59] * Joins: Automate_ (~AutomatedTester@public.cloak)
- # [19:03] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Ping timeout: 180 seconds)
- # [19:08] * terri is now known as terri_offline
- # [19:13] * Joins: zcorpan_ (~zcorpan@public.cloak)
- # [19:15] * heycam is now known as heycam|away
- # [19:19] * Quits: mdas (~mdas@public.cloak) (Client closed connection)
- # [19:21] * heycam|away is now known as heycam
- # [19:35] * Joins: mdas (~mdas@public.cloak)
- # [19:47] * terri_offline is now known as terri
- # [19:59] * Quits: Automate_ (~AutomatedTester@public.cloak) (Client closed connection)
- # [20:00] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [20:04] * Quits: ArtB (~abarsto@public.cloak) ("Leaving.")
- # [20:05] * Quits: zcorpan_ (~zcorpan@public.cloak) (Client closed connection)
- # [20:06] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [20:06] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [20:14] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Ping timeout: 180 seconds)
- # [20:16] * Quits: mdas (~mdas@public.cloak) (Client closed connection)
- # [20:28] * Joins: zcorpan (~zcorpan@public.cloak)
- # [20:37] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
- # [20:50] * Joins: mdas (~mdas@public.cloak)
- # [20:55] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [21:01] * heycam is now known as heycam|away
- # [21:05] * Quits: lukeis (~Adium@public.cloak) ("Leaving.")
- # [21:07] * Joins: artb (~ArtB@public.cloak)
- # [21:09] * Joins: lukeis (~Adium@public.cloak)
- # [21:12] * Joins: mdas_ (~mdas@public.cloak)
- # [21:12] * Joins: Automate_ (~AutomatedTester@public.cloak)
- # [21:17] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Ping timeout: 180 seconds)
- # [21:17] * Quits: mdas (~mdas@public.cloak) (Ping timeout: 180 seconds)
- # [21:18] * heycam|away is now known as heycam
- # [21:21] * Quits: Automate_ (~AutomatedTester@public.cloak) (Client closed connection)
- # [21:22] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [21:29] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Ping timeout: 180 seconds)
- # [21:38] * Joins: zcorpan (~zcorpan@public.cloak)
- # [21:45] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
- # [22:10] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [23:00] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [23:22] * Joins: AutomatedTester (~AutomatedTester@public.cloak)
- # [23:24] * Quits: plh (plehegar@public.cloak) ("Leaving")
- # [23:27] * Joins: zcorpan (~zcorpan@public.cloak)
- # [23:34] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
- # [23:46] * Quits: mdas_ (~mdas@public.cloak) (Client closed connection)
- # [23:51] * Quits: AutomatedTester (~AutomatedTester@public.cloak) (Client closed connection)
- # [23:51] * Joins: mdas (~mdas@public.cloak)
- # Session Close: Fri Dec 05 00:00:00 2014
The end :)