[issue22823] Use set literals instead of creating a set from a list

2014-12-13 Thread Serhiy Storchaka

Changes by Serhiy Storchaka storch...@gmail.com:


--
assignee: benjamin.peterson - serhiy.storchaka

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-13 Thread Roundup Robot

Roundup Robot added the comment:

New changeset c3f960cff3e6 by Serhiy Storchaka in branch '3.4':
Issue #22823: Use set literals in lib2to3.
https://hg.python.org/cpython/rev/c3f960cff3e6

New changeset d3e43f7ecca8 by Serhiy Storchaka in branch 'default':
Issue #22823: Use set literals in lib2to3.
https://hg.python.org/cpython/rev/d3e43f7ecca8

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-13 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

That's all I think. Distutils is too conservative for such changes.

--
resolution:  - fixed
stage: patch review - resolved
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-12 Thread Benjamin Peterson

Benjamin Peterson added the comment:

2to3 patch lgtm. Please apply to 3.4, too, though.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-11 Thread Roundup Robot

Roundup Robot added the comment:

New changeset b6e6a86a92a7 by Serhiy Storchaka in branch 'default':
Issue #22823: Use set literals instead of creating a set from a list.
https://hg.python.org/cpython/rev/b6e6a86a92a7

New changeset 86a694781bee by Serhiy Storchaka in branch '3.4':
Issue #22823: Fixed an output of sets in examples.
https://hg.python.org/cpython/rev/86a694781bee

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-11 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

Docs changes were applied to 3.4 too.

Here is a patch for lib2to3.

--
assignee: serhiy.storchaka - benjamin.peterson
nosy: +benjamin.peterson
stage: commit review - patch review
Added file: http://bugs.python.org/file37413/set_literal_2to3.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-11 Thread STINNER Victor

STINNER Victor added the comment:

 Here is a patch for lib2to3.

In Python 3.5, I still found some set([ and frozenset([ in Lib/lib2to3, 
Lib/test/, Lib/stringrep.py, Lib/unittest/test/ and Lib/idlelib/CodeContext.py 
if someone is motived to patch them. (Ok, Serhiy wrote a patch for lib2to3.)

--
nosy: +haypo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-11 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

Tests are intentionally omitted, Lib/stringrep.py is very special case (it's 
code is generated and outdated, see issue15239), idlelib is deferred by Terry. 
And there is yet one one-line change to Lib/distutils/msvc9compiler.py in 
set_literal_3.patch.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-11 Thread Roundup Robot

Roundup Robot added the comment:

New changeset ce66b65ad8d6 by Terry Jan Reedy in branch '2.7':
Issue 22823: Use set literal in idlelib.
https://hg.python.org/cpython/rev/ce66b65ad8d6

New changeset daec40891d43 by Terry Jan Reedy in branch '3.4':
Issue 22823: Use set literal in idlelib.
https://hg.python.org/cpython/rev/daec40891d43

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-11 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 7c2811521261 by Victor Stinner in branch 'default':
Issue #22823: Fix typo in unittest/mock.py
https://hg.python.org/cpython/rev/7c2811521261

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-10 Thread Michael Foord

Michael Foord added the comment:

Patch looks good to me.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-10 Thread Raymond Hettinger

Changes by Raymond Hettinger raymond.hettin...@gmail.com:


--
assignee: michael.foord - serhiy.storchaka

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-12-09 Thread Berker Peksag

Berker Peksag added the comment:

Updated Serhiy's patch.

--
nosy: +berker.peksag
Added file: http://bugs.python.org/file37404/issue22823-mock.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-15 Thread Roundup Robot

Roundup Robot added the comment:

New changeset f4e75efdc7f1 by Serhiy Storchaka in branch 'default':
Issue #22823: Use set literals instead of creating a set from a tuple.
https://hg.python.org/cpython/rev/f4e75efdc7f1

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-15 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

 Can you also make a separate mock patch and assign it to Michael Foord for 
 review?

Here is a patch. It also replaces constructing sets from generators with set 
comprehensions.

--
assignee: serhiy.storchaka - michael.foord
nosy: +michael.foord
stage: needs patch - patch review
Added file: http://bugs.python.org/file37201/set_literal_mock.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-15 Thread Terry J. Reedy

Terry J. Reedy added the comment:

mock patch LGTM

--
stage: patch review - commit review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-15 Thread Raymond Hettinger

Raymond Hettinger added the comment:

IMO, the _non_defaults set comprehension in mock.py ought to be replaced with a 
set of internable string constants.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-15 Thread Terry J. Reedy

Terry J. Reedy added the comment:

OK, someone can copy and paste this.

non_defaults = {
 '__get__', '__set__', '__delete__', '__reversed__', '__missing__',
 '__reduce__', '__reduce_ex'__, '__getinitargs__', '__getnewargs__',
 '__getstate__', '__setstate__', '__getformat__', '__setformat__',
 '__repr__', '__dir__', '__subclasses__', '__format__',
)

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-13 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Serhiy, go ahead and apply the clinic.py patch. Can you also make a separate 
mock patch and assign it to Michael Foord for review?

--
assignee: larry - serhiy.storchaka

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-11 Thread Larry Hastings

Larry Hastings added the comment:

The patch is totally fine.  I wonder why it was like that in the first place!

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-10 Thread Larry Hastings

Larry Hastings added the comment:

Serhiy: set_literal_2.patch doesn't apply cleanly, so I don't get a review 
link.  And apparently Raymond checked in some other changes separately.  Could 
you redo your patch so it has the Clinic changes, and ensure I get a review 
link?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-10 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

Here is updated patch for clinic only.

--
keywords: +patch
Added file: http://bugs.python.org/file37174/set_literal_clinic.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Terry J. Reedy

Terry J. Reedy added the comment:

I will prepare a 3.5 patch for this.  There are not many instances other than 
those you found (but several times as many in tests).  I presume that most 
non-test instances were converted by the 2to3 fixer.

How about frozenset([...]) to frozenset({...})?  There are 4 occurrences of 
this. The semantic match between frozenset and {...} is better than with [...], 
but the visual gain in nearly nil.

I will leave the one idlelib instance in CodeContext for when I am editing the 
file anyway (for both 3.4 and 3.5), which should be soon.

--
nosy: +terry.reedy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Terry J. Reedy

Terry J. Reedy added the comment:

I did not look at Docs yet.

I could not repeat the timing results on my machine running from the command 
line, as I got '0.015 usec per loop' for both, and same for both frozenset 
variations.  Running timeit.repeat interactively and selecting the best 
reproduced your timing ratio: .16 to .42.  For frozenset, I get .36 to .42 in 
favor of changing to frozenset({...}).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

Isn't such changes considered code churn?

If it is not, I have a huge patch which makes Python sources to use more modern 
idioms, including replacing set constructors with set literals (I have counted 
three occurrences not in tests). Are you interesting to look on it Raymond?

--
nosy: +serhiy.storchaka

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

[I will prepare a 3.5 patch for this.]

Thanks, I will review when you're done.

[How about frozenset([...]) to frozenset({...})? ]

Yes, the frozenset() examples should change to match the actual repr:

frozenset([10, 20, 30])
   frozenset({10, 20, 30})

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

[Isn't such changes considered code churn?]

This sort of thing is always a judgment call.  The patch will affect very few 
lines of code, give a little speed-up, and make the code easier to read.  In 
the case of the docs, it is almost always worthwhile to update to the current, 
idiomatic form.  Also, the set literal case is special because it has built-in 
language support, possible peephole optimizations, and there was a repr change 
as well.  That said, it is rarely a good idea to change tests because we don't 
have tests for tests and because the end-user will never see any value.

On the balance, I think this one is a reasonable thing to do, but I would show 
a great deal more hesitancy for a a huge patch which makes Python sources to 
use more modern idioms.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Terry J. Reedy

Terry J. Reedy added the comment:

My timing for set((1,2,3)) is .29, faster than for set([1,2,3]) (.42) but still 
slower than for {1,2,3} (.16).  So I will change such instances also.

The same timing for frozenset((1,2,3)) (.29) is faster than the best timing for 
frozenset({1,2,3}), (.36), so I will not change that unless discussed and 
agreed on.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

 The same timing for frozenset((1,2,3)) (.29) is faster than the best
 timing for frozenset({1,2,3}), (.36),

I don't see the tuple form used anywhere in the code.
The timing is a bit quicker for the tuple form because the peephole optimizer 
constant folds the tuple (use dis to see this).


 so I will not change that 
 unless discussed and agreed on.

Maybe, I should just make the patch.  It's becoming harder to talk about than 
to just fix.

--
assignee:  - rhettinger

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Terry J. Reedy

Terry J. Reedy added the comment:

Serhiy, about your 'huge patch' to modernize code:

I am more positive than some because:

1) To me, a one-time gentile change is not 'churning'.

2) As we link to many, most, or even all python-coded stdlib modules (I think 
there is a proposal for 'all'), there is more benefit to using modern idioms.

On the other hand, 'huge' patches can be too much to discuss, justify, and 
review all at once.

Using {.. } for sets consistently is a nice-sized chunk to consider.  We can 
identify, discuss, and decide on each sub-case (I have identified 4 so far).  
It has the additional benefit of being a performance enhancement.
---

'set((...' is used in distutils (which I will not change) and in many tests.  
So that is not an issue.  'frozenset((' is used 5 times in regular module code.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Attaching a patch.  Doesn't change tests for the reasons mentioned above.  
Leaves idle, 2-to-3, and mocking for their respective module maintainers to 
deal with holistically (as part of their routine maintenance).

--
keywords: +patch
Added file: http://bugs.python.org/file37159/set_literal.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Okay, I missed the frozenset(( examples in my search.  There are all in 
one-time set-up code.  Attaching a patch for them as well.

--
Added file: http://bugs.python.org/file37160/more_set_literals.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

You have missed Parser/asdl.py and Tools/clinic/clinic.py.

--
Added file: http://bugs.python.org/file37161/set_literal_2.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Terry J. Reedy

Terry J. Reedy added the comment:

Serhiy, as I said before, please omit idlelib/CodeContext.

You both skipped reprlib.py.  Should it be changed to produce the standard 
repr() result? The existing lines:

F:\Python\dev\35\lib\reprlib.py: 91: return self._repr_iterable(x, 
level, 'set([', '])', self.maxset)
F:\Python\dev\35\lib\reprlib.py: 95: return self._repr_iterable(x, 
level, 'frozenset([', '])',

If it is, its tests will have to be changed too.

--
keywords:  -patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Hmm, didn't look at those parts of the tree.  I'll change the one-line in 
Parser and leave the little atrocities in clinic.py for Larry to fix :-)

Reprlib was skipped intentionally.  There is a separate tracker item for it.  
http://bugs.python.org/issue22824

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

If there are no objections, I would like to apply my two patches (plus the 
one-line asdl.py change) and leave the rest to the discretion the module 
maintainers (mock, code context, clinic, and 2-to-3).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 4480506137ed by Raymond Hettinger in branch 'default':
Issue #22823: Use set literals instead of creating a set from a list
https://hg.python.org/cpython/rev/4480506137ed

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-09 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Larry, would you care to apply or approve Serhiy's updates to clinic.py?

--
assignee: rhettinger - larry
nosy: +larry

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-08 Thread Raymond Hettinger

New submission from Raymond Hettinger:

There are many places where the old-style of creating a set from a list still 
persists.  The literal notation is idiomatic, cleaner looking, and faster.

Here's a typical change:


  diff --git a/Lib/sre_compile.py b/Lib/sre_compile.py
  --- a/Lib/sre_compile.py
  +++ b/Lib/sre_compile.py
  @@ -22,10 +22,10 @@
   else:
   MAXCODE = 0x
 
  -_LITERAL_CODES = set([LITERAL, NOT_LITERAL])
  -_REPEATING_CODES = set([REPEAT, MIN_REPEAT, MAX_REPEAT])
  -_SUCCESS_CODES = set([SUCCESS, FAILURE])
  -_ASSERT_CODES = set([ASSERT, ASSERT_NOT])
  +_LITERAL_CODES = {LITERAL, NOT_LITERAL}
  +_REPEATING_CODES = {REPEAT, MIN_REPEAT, MAX_REPEAT}
  +_SUCCESS_CODES = {SUCCESS, FAILURE}
  +_ASSERT_CODES = {ASSERT, ASSERT_NOT}

Here are typical timings:

  $ py34 -m timeit '{10, 20, 30}'
   1000 loops, best of 3: 0.145 usec per loop

  $ py34 -m timeit 'set([10, 20, 30])'
  100 loops, best of 3: 0.477 usec per loop

--
components: Library (Lib)
keywords: easy
messages: 230879
nosy: rhettinger
priority: normal
severity: normal
status: open
title: Use set literals instead of creating a set from a list
type: enhancement
versions: Python 3.5

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-08 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Note, to keep the tests stable, nothing in Lib/tests should be changed.  Any 
update should target the rest of Lib and Doc.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22823] Use set literals instead of creating a set from a list

2014-11-08 Thread Ezio Melotti

Changes by Ezio Melotti ezio.melo...@gmail.com:


--
nosy: +ezio.melotti
stage:  - needs patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22823
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com