On 29 Apr, 2010, at 20:47, R. David Murray wrote:
> On Thu, 29 Apr 2010 11:28:47 -0700, Bill Janssen wrote:
>> 8 skips unexpected on darwin:
>>test_aepack test_applesingle test_gdb test_macos test_macostools
>>test_readline test_scriptpackages test_ttk_guionly
>>
>> Why is the skip of "t
On Thu, 29 Apr 2010 17:27:44 -0700, Bill Janssen wrote:
> Well, test_grp test is failing because it assumes that group IDs are
> unique, which is not guaranteed by getgrent(). And apparently not true
> at PARC.
>
> test_posix fails on some group-related thing, too: the use of
> initgroups(), whi
On Fri, 30 Apr 2010 07:17:02 +1000, Nick Coghlan wrote:
> R. David Murray wrote:
> > On Thu, 29 Apr 2010 14:11:57 -0400, Terry Reedy wrote:
> >> On 4/27/2010 5:14 PM, "Martin v. Loewis" wrote:
> >>> You only have resolutions on closed issues,
> >> Only for 'closed' or also for 'pending' and 'lang
You could use dictionary of lists
test = {
A: [1, 3],
B: [2, 4]
}
print test[A]
[1, 3]
test[A].append(5)
print test[A]
[1, 3, 5]
Cheers,
Fil
_
From: melbourne-pug-bounces+filipz=3g.nec.com...@python.org
[mailto:melbourne-pug-bounces+fil
Antoine Pitrou wrote:
> R. David Murray bitdance.com> writes:
> >
> > On Thu, 29 Apr 2010 11:28:47 -0700, Bill Janssen wrote:
> > > 8 skips unexpected on darwin:
> > > test_aepack test_applesingle test_gdb test_macos test_macostools
> > > test_readline test_scriptpackages test_ttk_guion
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Martin v. Löwis wrote:
>>> You only have resolutions on closed issues,
>> Only for 'closed' or also for 'pending' and 'languishing'?
>
> Probably for all of them. I don't understand languishing, though
> (neither as an English word, nor as a status).
>> You only have resolutions on closed issues,
>
> Only for 'closed' or also for 'pending' and 'languishing'?
Probably for all of them. I don't understand languishing, though
(neither as an English word, nor as a status).
> 'Languishing' is new (its first use was two months ago). Is it a form of
R. David Murray wrote:
> On Thu, 29 Apr 2010 14:11:57 -0400, Terry Reedy wrote:
>> On 4/27/2010 5:14 PM, "Martin v. Loewis" wrote:
>>> You only have resolutions on closed issues,
>> Only for 'closed' or also for 'pending' and 'languishing'?
>> If pending were implemented to mean 'auto close in x d
Bill Janssen writes:
>Ronald Oussoren wrote:
>> As Antoine noted the test failures are unexpected, could you check if
>> the tests pass if you do the build and testrun manually?
> What about readline? Darwin doesn't have it (or rather, it has a
> different one). Why is that 'skip' unexpected
R. David Murray bitdance.com> writes:
>
> On Thu, 29 Apr 2010 11:28:47 -0700, Bill Janssen wrote:
> > 8 skips unexpected on darwin:
> > test_aepack test_applesingle test_gdb test_macos test_macostools
> > test_readline test_scriptpackages test_ttk_guionly
> >
> > Why is the skip of "test
On Thu, 29 Apr 2010 14:11:57 -0400, Terry Reedy wrote:
> On 4/27/2010 5:14 PM, "Martin v. Loewis" wrote:
> > You only have resolutions on closed issues,
>
> Only for 'closed' or also for 'pending' and 'languishing'?
> If pending were implemented to mean 'auto close in x days', then
> Resolution w
On 4/29/2010 1:58 PM, Bill Jordan wrote:
I am sorry if this is not the right list to post some questions.
You cross-posted to 4. Not good as answers will go to all 4 if
responders are not careful. Gmane.comp.python.devel is only for the
development of the next versions of CPython and mainly f
Hello.
We'are sorry but we cannot help you. This mailing list is to work on
developing Python (fixing bugs and adding new features to Python itself); if
you're having problems using Python, please find another forum. Probably
python-list (comp.lang.python) news group/mailing list is the best pl
Hey guys,
I am sorry if this is not the right list to post some questions. I have a
simple question please and would appreciate some answers as I am new to Python.
I have 2 D array: test = [[A,1],[B,2],[A,3][B,4]]
I want to arrang this array in different arrays so each one will have what is
att
On Thu, 29 Apr 2010 11:28:47 -0700, Bill Janssen wrote:
> 8 skips unexpected on darwin:
> test_aepack test_applesingle test_gdb test_macos test_macostools
> test_readline test_scriptpackages test_ttk_guionly
>
> Why is the skip of "test_readline" unexpected on darwin? The readline
> on Da
Michael Foord wrote:
> Well - I have nine failing tests on trunk for Mac OS X with Snow Leopard.
>
> 9 tests failed:
> test_cmd_line test_imp test_import test_posix test_pydoc
> test_runpy test_urllib2 test_urllib2_localnet test_warnings
>
> I believe that Victor has ensured that the bu
On 4/27/2010 5:14 PM, "Martin v. Löwis" wrote:
The page doesn't document the Resolution or Status fields.
The resolutions are the same as the ones on SourceForge.
They no longer have to be (see below). In any case, the meanings should
be independently documented here for people not currently
On 29/04/2010 16:13, Ronald Oussoren wrote:
On 29 Apr, 2010, at 16:39, Bill Janssen wrote:
Ned Deily wrote:
In article<19399.11323.946604.992...@montanaro.dyndns.org>,
s...@pobox.com wrote:
Ned> Any idea what type of machine it is and where it is currently
Ned>
Ronald Oussoren wrote:
> As Antoine noted the test failures are unexpected, could you check if
> the tests pass if you do the build and testrun manually?
I'll have to fiddle with where it "is" on our network to do that. I'll
take it down and move it to different subnet.
What about this error?
On 29 Apr, 2010, at 16:39, Bill Janssen wrote:
> Ned Deily wrote:
>
>> In article <19399.11323.946604.992...@montanaro.dyndns.org>,
>> s...@pobox.com wrote:
>>
>>>Ned> Any idea what type of machine it is and where it is currently
>>>Ned> located?
>>>
>>> I seem to recall it is/was a G
Le Thu, 29 Apr 2010 07:39:22 -0700, Bill Janssen a écrit :
>
> I've identified 4 G4/G5 machines at PARC I can set up as build slaves on
> either Tiger or Leopard, and the first one of those is up (G4/Tiger) and
> running. Can someone (Ned?) take a look at the output and see if the
> errors are cu
Ned Deily wrote:
> In article <19399.11323.946604.992...@montanaro.dyndns.org>,
> s...@pobox.com wrote:
>
> > Ned> Any idea what type of machine it is and where it is currently
> > Ned> located?
> >
> > I seem to recall it is/was a G4 XServe. My guess as to location would be at
> > xs
On Thu, 29 Apr 2010 20:16:14 +1000, Nick Coghlan wrote:
> Does the online dev version of the docs build in response to docs
> checkins, or just once a day?
I believe it does it once a day. Georg recently changed how this is done,
so we should get official word from him.
> (And is that written d
Does the online dev version of the docs build in response to docs
checkins, or just once a day?
(And is that written down somewhere and I've just forgotten where to
look...)
Cheers,
Nick.
--
Nick Coghlan | ncogh...@gmail.com | Brisbane, Australia
24 matches
Mail list logo