[issue25594] enum instance attribute access possible

2015-11-17 Thread Ethan Furman
Ethan Furman added the comment: Changed the wording slightly to indicate that looking up members on other members is a bad idea. -- Added file: http://bugs.python.org/file41064/issue25594.stoneleaf.04.patch ___ Python tracker <rep...@bugs.python.

[issue25594] enum instance attribute access possible

2015-11-13 Thread Ethan Furman
Ethan Furman added the comment: Thanks for tracking that down. After more research I'm inclined to leave the code as it is and revamp the docs to clarify that while it may work, the results may not be what you want: -- 8< --- class Color(Enum): red = 1 blue

[issue25594] enum docs outdated re attribute access

2015-11-10 Thread Ethan Furman
Ethan Furman added the comment: Nope, that would be a bug. -- assignee: docs@python -> ethan.furman stage: -> test needed type: -> behavior ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue25464] Tix HList header_exists should be "exist"

2015-10-22 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- nosy: +gpolo, serhiy.storchaka, terry.reedy ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25417] Minor typo in Path.samefile docstring

2015-10-15 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- nosy: -ethan.furman ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25417> ___ _

[issue25417] Minor typo in Path.samefile docstring

2015-10-15 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- nosy: +ethan.furman ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25417> ___ _

[issue24766] Subclass of property doesn't preserve instance __doc__ when using doc= argument

2015-09-18 Thread Ethan Furman
Ethan Furman added the comment: Thanks for checking that out, Erik. I was hoping it was a testing issue, but I ran out of time to verify. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue23496] Steps for Android Native Build of Python 3.4.2

2015-09-17 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- nosy: -ethan.furman ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue23496> ___ _

[issue25147] Enum: remove dependency on OrderedDict

2015-09-17 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- keywords: +patch Added file: http://bugs.python.org/file40489/issue25147.stoneleaf.01.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25147] Enum: remove dependency on OrderedDict

2015-09-17 Thread Ethan Furman
New submission from Ethan Furman: Pulling in collections.OrderedDict has a significant startup cost (from what I've heard, and can easily believe by glancing at all the imports in collections.__init__). By keeping a separate list for the Enum member names using Enum in the stdlib becomes

[issue24773] Add local time disambiguation flag to datetime

2015-09-17 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- nosy: -ethan.furman ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24773> ___ _

[issue25147] Enum: remove dependency on OrderedDict

2015-09-17 Thread Ethan Furman
Ethan Furman added the comment: Is pulling in `_collections` not as resource intensive as pulling in `collections`? -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue25147] Enum: remove dependency on OrderedDict

2015-09-17 Thread Ethan Furman
Ethan Furman added the comment: In that case I'll go with _collections; if performance does become an issue with other pythons later we can add the caching property. Thanks for all the insights. -- ___ Python tracker <rep...@bugs.python.org>

[issue25147] Enum: remove dependency on OrderedDict

2015-09-17 Thread Ethan Furman
Ethan Furman added the comment: _collections sounds cool, but the flip side is any python without the C implemntation would still have the slower startup, right? No, I don't have measurements -- just that I have heard importing collections can have an effect on startup time. Of course, it's

[issue25155] datetime.datetime.now() raises

2015-09-17 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- nosy: +belopolsky ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25155> ___ _

[issue25147] Enum: remove dependency on OrderedDict

2015-09-17 Thread Ethan Furman
Ethan Furman added the comment: Serhiy, your objection is noted, thank you. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue24766] Subclass of property doesn't preserve instance __doc__ when using doc= argument

2015-09-17 Thread Ethan Furman
Changes by Ethan Furman <et...@stoneleaf.us>: -- nosy: -larry ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue24766> ___ __

[issue24766] Subclass of property doesn't preserve instance __doc__ when using doc= argument

2015-09-17 Thread Ethan Furman
Ethan Furman added the comment: ethan@code:~/source/python/issue25147$ ./python -m test.regrtest -R3:3 test_property [1/1] test_property Eggs # from print() inside test beginning 6 repetitions 123456 Spam # the new value from the previous run seems stuck test test_property failed

[issue24897] Add new attribute decorator (akin to property)?

2015-08-19 Thread Ethan Furman
Ethan Furman added the comment: Could you give an actual use-case demo, and how it's different from @property? Could just be that I'm tired, but I'm not seeing the advantages of @attribute. -- nosy: +ethan.furman ___ Python tracker rep

[issue24766] Subclass of property doesn't preserve instance __doc__ when using doc= argument

2015-08-14 Thread Ethan Furman
Ethan Furman added the comment: Larry, can we get this into 3.5? I'll create a pull-request in a couple days. -- nosy: +larry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24766

[issue24840] implement bool conversion for enums to prevent odd edge case

2015-08-11 Thread Ethan Furman
Ethan Furman added the comment: Thanks for finding that, Mike. I'll review and merge in the next few days. -- assignee: - ethan.furman stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24840

[issue24773] Add local time disambiguation flag to datetime

2015-08-01 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: +ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24773 ___ ___ Python-bugs-list

[issue24766] Subclass of property doesn't preserve instance __doc__ when using doc= argument

2015-07-31 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: +ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24766 ___ ___ Python-bugs-list

[issue24766] Subclass of property doesn't preserve instance __doc__ when using doc= argument

2015-07-31 Thread Ethan Furman
Ethan Furman added the comment: Looks good so far. Let's get some tests in place. -- stage: - test needed type: - behavior versions: +Python 3.5, Python 3.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24766

[issue24756] doctest run_docstring_examples does have an obvious utility

2015-07-30 Thread Ethan Furman
Ethan Furman added the comment: Looks good to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24756 ___ ___ Python-bugs-list mailing list

[issue24756] doctest run_docstring_examples does have an obvious utility

2015-07-30 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: +ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24756 ___ ___ Python-bugs-list

[issue23591] Add IntFlags

2015-07-21 Thread Ethan Furman
Ethan Furman added the comment: My experience is that a module maintainer, or somebody claiming to speak for the module maintainer, can close any issue in their area at any time regardless of the number of core devs in favor of a change. Whatever. I'll leave this open and write up a spec

[issue14010] deeply nested filter segfaults

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14010 ___ ___ Python-bugs-list

[issue22609] Constructors of some mapping classes don't accept `self` keyword argument

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22609 ___ ___ Python-bugs-list

[issue23655] Memory corruption using pickle over pipe to subprocess

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23655 ___ ___ Python-bugs-list

[issue21076] Turn signal.SIG* constants into enums

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21076 ___ ___ Python-bugs-list

[issue17963] Deprecate the frame hack for implicitly getting module details

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17963 ___ ___ Python-bugs-list

[issue22867] document behavior of calling atexit.register() while atexit._run_exitfuncs is running

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22867 ___ ___ Python-bugs-list

[issue22656] `help` ignores `__doc__` of descriptors

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22656 ___ ___ Python-bugs-list

[issue6549] ttk.Style -- minor issues with element_names and configure

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- versions: +Python 3.5 -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6549

[issue22738] improve 'python -h' documentation for '-c'

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22738 ___ ___ Python-bugs-list

[issue21406] Some socket constants are not enums

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- resolution: - rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21406

[issue24195] Add `Executor.filter` to concurrent.futures

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24195 ___ ___ Python-bugs-list

[issue17546] Document the circumstances where the locals() dict get updated

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17546 ___ ___ Python-bugs-list

[issue24052] sys.exit(code) returns success to the OS for some nonzero values of code

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24052 ___ ___ Python-bugs-list

[issue14376] sys.exit documents argument as integer but actually requires subtype of int

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14376 ___ ___ Python-bugs-list

[issue21327] socket.type value changes after using settimeout()

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21327 ___ ___ Python-bugs-list

[issue24045] Behavior of large returncodes (sys.exit(nn))

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24045 ___ ___ Python-bugs-list

[issue17576] PyNumber_Index() is not int-subclass friendly (or operator.index() docos lie)

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17576 ___ ___ Python-bugs-list

[issue23123] Only READ support for Decimal in json

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23123 ___ ___ Python-bugs-list

[issue22680] Blacklist FunctionTestCase from test discovery

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22680 ___ ___ Python-bugs-list

[issue19624] Switch constants in the errno module to IntEnum

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- resolution: - rejected stage: needs patch - status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19624

[issue1615] PyObject_GenericGetAttr suppresses AttributeErrors in descriptors

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- resolution: - not a bug stage: patch review - status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1615

[issue22625] When cross-compiling, don’t try to execute binaries

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22625 ___ ___ Python-bugs-list

[issue23699] Add a macro to ease writing rich comparisons

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23699 ___ ___ Python-bugs-list

[issue24056] Better expose closure, generator coroutine status of functions

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24056 ___ ___ Python-bugs-list

[issue23572] functools.singledispatch fails when not BaseClass is True

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23572 ___ ___ Python-bugs-list

[issue18173] Add MixedTypeKey to reprlib

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18173 ___ ___ Python-bugs-list

[issue22698] Add constants for ioctl request codes

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22698 ___ ___ Python-bugs-list

[issue23556] Scope for raise without argument is different in Python 2 and 3

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23556 ___ ___ Python-bugs-list

[issue22790] some class attributes missing from dir(Class)

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22790 ___ ___ Python-bugs-list

[issue17044] Implement PEP 422: Simple class initialisation hook

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17044 ___ ___ Python-bugs-list

[issue17421] Drop restriction that meta.__prepare__() must return a dict (subclass)

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17421 ___ ___ Python-bugs-list

[issue16508] include the object type in the lists of documented types

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16508 ___ ___ Python-bugs-list

[issue10614] ZipFile: add a filename_encoding argument

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10614 ___ ___ Python-bugs-list

[issue22555] Tracking issue for adjustments to binary/text boundary handling

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22555 ___ ___ Python-bugs-list

[issue15582] Enhance inspect.getdoc to follow inheritance chains

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15582 ___ ___ Python-bugs-list

[issue11477] Incorrect operand precedence when implementing sequences in C

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11477 ___ ___ Python-bugs-list

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15873 ___ ___ Python-bugs-list

[issue12067] Doc: remove errors about mixed-type comparisons.

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12067 ___ ___ Python-bugs-list

[issue17352] Be clear that __prepare__ must be declared as a class method

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17352 ___ ___ Python-bugs-list

[issue20092] type() constructor should bind __int__ to __index__ when __index__ is defined and __int__ is not

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20092 ___ ___ Python-bugs-list

[issue22121] IDLE should start with HOME as the initial working directory

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22121 ___ ___ Python-bugs-list

[issue19667] Add the htmlcharrefreplace error handler

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19667 ___ ___ Python-bugs-list

[issue16310] zipfile: allow surrogates in filenames

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16310 ___ ___ Python-bugs-list

[issue6839] zipfile can't extract file

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6839 ___ ___ Python-bugs-list

[issue17960] Clarify the required behaviour of locals()

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17960 ___ ___ Python-bugs-list

[issue24329] __qualname__ and __slots__

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24329 ___ ___ Python-bugs-list

[issue22872] multiprocessing.Queue raises AssertionError

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22872 ___ ___ Python-bugs-list

[issue19979] Missing nested scope vars in class scope (bis)

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19979 ___ ___ Python-bugs-list

[issue23987] docs about containers membership testing wrong for broken objects

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23987 ___ ___ Python-bugs-list

[issue23354] Loading 2 GiLOC file which raises exception causes wrong traceback

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23354 ___ ___ Python-bugs-list

[issue15443] datetime module has no support for nanoseconds

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15443 ___ ___ Python-bugs-list

[issue10757] zipfile.write, arcname should be allowed to be a byte string

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10757 ___ ___ Python-bugs-list

[issue23455] file iterator deemed broken; can resume after StopIteration

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23455 ___ ___ Python-bugs-list

[issue18968] Find a way to detect incorrectly skipped tests

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18968 ___ ___ Python-bugs-list

[issue23325] Turn SIG_DFL and SIG_IGN into functions

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23325 ___ ___ Python-bugs-list

[issue24632] Improve documentation about __main__.py

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24632 ___ ___ Python-bugs-list

[issue24597] forbid redefinition of specializations in singledispatch

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24597 ___ ___ Python-bugs-list

[issue24536] os.pipe() should return a structsequence (or namedtuple.)

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24536 ___ ___ Python-bugs-list

[issue23623] Python 3.5 docs need to clarify how to set PATH, etc

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23623 ___ ___ Python-bugs-list

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23517 ___ ___ Python-bugs-list

[issue24492] using custom objects as modules: AttributeErrors new in 3.5

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24492 ___ ___ Python-bugs-list

[issue17900] Recursive OrderedDict pickling

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17900 ___ ___ Python-bugs-list

[issue19239] add inspect functions to retrieve attributes from both old dir() and overridden dir()

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19239 ___ ___ Python-bugs-list

[issue19404] Simplify per-instance control of help() output

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19404 ___ ___ Python-bugs-list

[issue20543] ** operator does not overflow to inf

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20543 ___ ___ Python-bugs-list

[issue10972] zipfile: add unicode option to the force the filename encoding to UTF-8

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10972 ___ ___ Python-bugs-list

[issue23640] int.from_bytes() is broken for subclasses

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- assignee: ethan.furman - nosy: -ethan.furman title: Enum.from_bytes() is broken - int.from_bytes() is broken for subclasses ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23640

[issue24120] pathlib.(r)glob stops on PermissionDenied exception

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24120 ___ ___ Python-bugs-list

[issue11145] '%o' % user-defined instance

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11145 ___ ___ Python-bugs-list

[issue24053] Define EXIT_SUCCESS and EXIT_FAILURE constants in sys

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24053 ___ ___ Python-bugs-list

[issue24165] Free list for single-digits ints

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24165 ___ ___ Python-bugs-list

[issue23591] Add IntFlags

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- resolution: - rejected stage: patch review - status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23591

[issue8075] Windows (Vista/7) install error when choosing to compile .py files

2015-07-21 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: -ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8075 ___ ___ Python-bugs-list

<    5   6   7   8   9   10   11   12   13   14   >