<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>64180</bug_id>
          
          <creation_ts>2011-07-08 11:05:09 -0700</creation_ts>
          <short_desc>REGRESSION (r90564): test-webkitpy failing on multiple bots due to commit-log-editor errors</short_desc>
          <delta_ts>2011-07-08 11:51:39 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Tools / Tests</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Adam Roben (:aroben)">aroben</reporter>
          <assigned_to name="Adam Roben (:aroben)">aroben</assigned_to>
          <cc>abarth</cc>
    
    <cc>eric</cc>
    
    <cc>webkit.review.bot</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>434156</commentid>
    <comment_count>0</comment_count>
    <who name="Adam Roben (:aroben)">aroben</who>
    <bug_when>2011-07-08 11:05:09 -0700</bug_when>
    <thetext>REGRESSION (r90564): test-webkitpy failing on multiple bots due to commit-log-editor errors</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434157</commentid>
    <comment_count>1</comment_count>
      <attachid>100135</attachid>
    <who name="Adam Roben (:aroben)">aroben</who>
    <bug_when>2011-07-08 11:07:15 -0700</bug_when>
    <thetext>Created attachment 100135
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434159</commentid>
    <comment_count>2</comment_count>
      <attachid>100135</attachid>
    <who name="Adam Barth">abarth</who>
    <bug_when>2011-07-08 11:09:11 -0700</bug_when>
    <thetext>Comment on attachment 100135
Patch

Ok.  Do I need to make sure this env variable is set on the commit bots?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434179</commentid>
    <comment_count>3</comment_count>
    <who name="Adam Roben (:aroben)">aroben</who>
    <bug_when>2011-07-08 11:20:51 -0700</bug_when>
    <thetext>(In reply to comment #2)
&gt; (From update of attachment 100135 [details])
&gt; Ok.  Do I need to make sure this env variable is set on the commit bots?

No. You already ensured the git variable user.name is set, which is used as a fallback.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434192</commentid>
    <comment_count>4</comment_count>
      <attachid>100135</attachid>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2011-07-08 11:34:59 -0700</bug_when>
    <thetext>Comment on attachment 100135
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=100135&amp;action=review

&gt; Tools/Scripts/webkitpy/common/checkout/checkout_unittest.py:129
&gt; +            kwargs[&apos;env&apos;] = env

You can just pass it as env=env and it will automagically end up on the other side as part of kwargs.  **kwargs is expanding the &quot;kwargs&quot; dictionary (not a special name) to be named args.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434200</commentid>
    <comment_count>5</comment_count>
    <who name="Eric Seidel (no email)">eric</who>
    <bug_when>2011-07-08 11:46:31 -0700</bug_when>
    <thetext>** can be used to either stuff all the named args into a dictionary (of any name of your choosing, although conventionally kwargs) or to expand a dictionary into named args when calling a function.

so defining a function as:

def foo(*blah, **moreblah)

will take all the non-named args, and put them into a tuple() blah, and all the named args and put them into a dict() moreblah

Calling *listname will expand an arglist into a list of args, but only during a function call it seems.  I thought * was a generic &quot;expand tuple&quot; operator, but I&apos;ve since learned this morning it&apos;s just part of the language grammar. :)

http://docs.python.org/reference/expressions.html#calls</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434201</commentid>
    <comment_count>6</comment_count>
      <attachid>100135</attachid>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2011-07-08 11:48:03 -0700</bug_when>
    <thetext>Comment on attachment 100135
Patch

Clearing flags on attachment: 100135

Committed r90648: &lt;http://trac.webkit.org/changeset/90648&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434202</commentid>
    <comment_count>7</comment_count>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2011-07-08 11:48:09 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>434203</commentid>
    <comment_count>8</comment_count>
      <attachid>100135</attachid>
    <who name="Adam Roben (:aroben)">aroben</who>
    <bug_when>2011-07-08 11:51:39 -0700</bug_when>
    <thetext>Comment on attachment 100135
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=100135&amp;action=review

&gt;&gt; Tools/Scripts/webkitpy/common/checkout/checkout_unittest.py:129
&gt;&gt; +            kwargs[&apos;env&apos;] = env
&gt; 
&gt; You can just pass it as env=env and it will automagically end up on the other side as part of kwargs.  **kwargs is expanding the &quot;kwargs&quot; dictionary (not a special name) to be named args.

If kwargs happens to already contain a value for &apos;env&apos; then passing env=env will cause a runtime error.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>100135</attachid>
            <date>2011-07-08 11:07:15 -0700</date>
            <delta_ts>2011-07-08 11:51:38 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-64180-20110708140712.patch</filename>
            <type>text/plain</type>
            <size>2174</size>
            <attacher name="Adam Roben (:aroben)">aroben</attacher>
            
              <data encoding="base64">U3VidmVyc2lvbiBSZXZpc2lvbjogOTA2NDAKZGlmZiAtLWdpdCBhL1Rvb2xzL0NoYW5nZUxvZyBi
L1Rvb2xzL0NoYW5nZUxvZwppbmRleCA2YTc3NTdlNWVmMjM4ODcxMzEzZDUxYjM1ZjQ1M2RkZjVj
OTZiYjhiLi5mZTNjZTJhZjgyMTFiZTFjNzQ2YmQzZDA4NGMyMTk5YjY2ODVkZGQ2IDEwMDY0NAot
LS0gYS9Ub29scy9DaGFuZ2VMb2cKKysrIGIvVG9vbHMvQ2hhbmdlTG9nCkBAIC0xLDUgKzEsMjEg
QEAKIDIwMTEtMDctMDggIEFkYW0gUm9iZW4gIDxhcm9iZW5AYXBwbGUuY29tPgogCisgICAgICAg
IEVuc3VyZSAkQ0hBTkdFX0xPR19FTUFJTF9BRERSRVNTIGlzIHNldCB3aGVuIHRlc3Rpbmcgd2Vi
a2l0cHkncyBjb21taXQtbG9nLWVkaXRvciBpbnRlZ3JhdGlvbgorCisgICAgICAgIEZpeGVzIDxo
dHRwOi8vd2Via2l0Lm9yZy9iLzY0MTgwPiBSRUdSRVNTSU9OIChyOTA1NjQpOiB0ZXN0LXdlYmtp
dHB5IGZhaWxpbmcgb24gbXVsdGlwbGUKKyAgICAgICAgYm90cyBkdWUgdG8gY29tbWl0LWxvZy1l
ZGl0b3IgZXJyb3JzCisKKyAgICAgICAgUmV2aWV3ZWQgYnkgTk9CT0RZIChPT1BTISkuCisKKyAg
ICAgICAgKiBTY3JpcHRzL3dlYmtpdHB5L2NvbW1vbi9jaGVja291dC9jaGVja291dF91bml0dGVz
dC5weToKKyAgICAgICAgKENvbW1pdE1lc3NhZ2VGb3JUaGlzQ29tbWl0VGVzdC50ZXN0X2NvbW1p
dF9tZXNzYWdlX2Zvcl90aGlzX2NvbW1pdCk6IFNldAorICAgICAgICAkQ0hBTkdFX0xPR19FTUFJ
TF9BRERSRVNTIHRvIHRoZSBwYXRjaCBhdXRob3IncyBlbWFpbCBhZGRyZXNzLiBUaGlzIGVuc3Vy
ZXMgdGhhdAorICAgICAgICBjb21taXQtbG9nLWVkaXRvciBjYW4gZmluZCBhIHZhbHVlIGZvciB0
aGUgY29tbWl0dGVyJ3MgZW1haWwsIGFuZCB0aGF0IHRoZSBjb21taXR0ZXIgYW5kCisgICAgICAg
IGF1dGhvciBlbWFpbCBhZGRyZXNzZXMgbWF0Y2gsIHdoaWNoIHdpbGwgcHJldmVudCBjb21taXQt
bG9nLWVkaXRvciBmcm9tIGluc2VydGluZyBhICJQYXRjaAorICAgICAgICBieSIgbGluZSBpbiB0
aGUgY29tbWl0IG1lc3NhZ2UuCisKKzIwMTEtMDctMDggIEFkYW0gUm9iZW4gIDxhcm9iZW5AYXBw
bGUuY29tPgorCiAgICAgICAgIFRlYWNoIFRlc3RGYWlsdXJlcyBob3cgdG8gZmluZCB0ZXN0IG5h
bWVzIGluIGNvbW1pdC1sb2ctZWRpdG9yLXN0eWxlIGNvbW1pdCBtZXNzYWdlcwogCiAgICAgICAg
IFRlc3RGYWlsdXJlcyB3YXMgcmVseWluZyBvbiBUcmFjIHR1cm5pbmcgdGhlIGxpc3Qgb2YgbW9k
aWZpZWQgZmlsZXMgaW4gb3VyIGNvbW1pdCBtZXNzYWdlcwpkaWZmIC0tZ2l0IGEvVG9vbHMvU2Ny
aXB0cy93ZWJraXRweS9jb21tb24vY2hlY2tvdXQvY2hlY2tvdXRfdW5pdHRlc3QucHkgYi9Ub29s
cy9TY3JpcHRzL3dlYmtpdHB5L2NvbW1vbi9jaGVja291dC9jaGVja291dF91bml0dGVzdC5weQpp
bmRleCA0ZjIyNmZmZWIyZDRkNzFhMDJiOWYyMWExYTM4OWVlYzQ4NDg3ZTNkLi40NjMyOWFhNmI5
OTMwNzZjYzQ4ZDBhZWY4ZDVjNDE2OWI5ZTRhM2FmIDEwMDY0NAotLS0gYS9Ub29scy9TY3JpcHRz
L3dlYmtpdHB5L2NvbW1vbi9jaGVja291dC9jaGVja291dF91bml0dGVzdC5weQorKysgYi9Ub29s
cy9TY3JpcHRzL3dlYmtpdHB5L2NvbW1vbi9jaGVja291dC9jaGVja291dF91bml0dGVzdC5weQpA
QCAtMTI0LDYgKzEyNCw5IEBAIFNlY29uZCBwYXJ0IG9mIHRoaXMgY29tcGxpY2F0ZWQgY2hhbmdl
IGJ5IG1lLCBUb3IgQXJuZSBWZXN0Ylx1MDBmOCEKICAgICAgICAgZGVmIG1vY2tfcnVuKCphcmdz
LCAqKmt3YXJncyk6CiAgICAgICAgICAgICAjIE5vdGUgdGhhdCB3ZSB1c2UgYSByZWFsIEV4ZWN1
dGl2ZSBoZXJlLCBub3QgYSBNb2NrRXhlY3V0aXZlLCBzbyB3ZSBjYW4gdGVzdCB0aGF0IHdlJ3Jl
CiAgICAgICAgICAgICAjIGludm9raW5nIGNvbW1pdC1sb2ctZWRpdG9yIGNvcnJlY3RseS4KKyAg
ICAgICAgICAgIGVudiA9IG9zLmVudmlyb24uY29weSgpCisgICAgICAgICAgICBlbnZbJ0NIQU5H
RV9MT0dfRU1BSUxfQUREUkVTUyddID0gJ3Zlc3Rib0B3ZWJraXQub3JnJworICAgICAgICAgICAg
a3dhcmdzWydlbnYnXSA9IGVudgogICAgICAgICAgICAgcmV0dXJuIEV4ZWN1dGl2ZSgpLnJ1bl9j
b21tYW5kKCphcmdzLCAqKmt3YXJncykKIAogICAgICAgICBkZWYgbW9ja19zY3JpcHRfcGF0aChz
Y3JpcHQpOgo=
</data>

          </attachment>
      

    </bug>

</bugzilla>