[issue22646] Set SMTPHandler's "credentials" through "logging.config.dictConfig".

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3ba23c6f7986 by Vinay Sajip in branch '2.7': Issue #22646: Accept list as well as tuple to support initialisation via dictConfig(). https://hg.python.org/cpython/rev/3ba23c6f7986 New changeset d15708f13266 by Vinay Sajip in branch '3.4': Issue #226

[issue22653] Crash in insertdict

2014-10-17 Thread Georg Brandl
Georg Brandl added the comment: This is not a crash, but an abort, so it's not a security issue. -- ___ Python tracker ___ ___ Python-

[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Cédric Krier
Cédric Krier added the comment: So what about this patch? It adds a delocalize method while keeping the atof func parameter for backward compatibility. -- Added file: http://bugs.python.org/file36955/delocalize.patch ___ Python tracker

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Aaron Hill added the comment: Does anyone have any thoughts about throwing a warning for an unexpected minor revision? -- ___ Python tracker ___

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

2014-10-17 Thread Ram Rachum
New submission from Ram Rachum: The builtin `property` lets you specify a `doc` argument for your properties, which is great because then it shows up in `help`. So I figured that when I'm writing my own descriptor, I could set `__doc__` on it and have `help` use it. Not so, `help` ignores it.

[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: docs@python -> components: +Library (Lib) -Documentation stage: -> patch review versions: +Python 3.5 -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker __

[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: The patch's approach looks reasonable to me. -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs

[issue22657] Bad link to packages specification in language reference 2.x sec 6.12

2014-10-17 Thread Douglas Naphas
New submission from Douglas Naphas: Section 6.12 of the Python 2.x language reference (https://docs.python.org/2/reference/simple_stmts.html#the-import-statement) has a link to "The original specification for packages" to http://www.python.org/doc/essays/packages.html, which is not found. ---

[issue22657] Bad link to packages specification in language reference 2.x sec 6.12

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset dae99db70336 by Benjamin Peterson in branch '2.7': remove link to the 'original package specification'; I doubt it's useful anymore (closes #22657) https://hg.python.org/cpython/rev/dae99db70336 -- nosy: +python-dev resolution: -> fixed st

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: If Python itself works correctly on a machine, it is a bug for a test to say that is it not, by failing. Should we change -response = self.request('/', method='get') to +response = self.request('/', method='gets') or +response = self.req

[issue20221] #define hypot _hypot conflicts with existing definition

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 430aaeaa8087 by Zachary Ware in branch '2.7': Issue #20221: Removed conflicting (or circular) hypot definition https://hg.python.org/cpython/rev/430aaeaa8087 -- ___ Python tracker

[issue20221] #define hypot _hypot conflicts with existing definition

2014-10-17 Thread Zachary Ware
Zachary Ware added the comment: It grafted very easily, so it turns out to be "yes" :) -- versions: +Python 2.7 ___ Python tracker ___ ___

[issue22186] Typos in .py files

2014-10-17 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list U

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

2014-10-17 Thread R. David Murray
R. David Murray added the comment: You might find issue 5890 to be interesting reading. It's been long enough that I forget the details, but I think the short answer is "yes, property is special cased". So probably what you want to do is subclass property. Given the knock-on issue that fix

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-17 Thread R. David Murray
R. David Murray added the comment: It should be 'custom', since that will actually test case sensitivity, which 'gets' would not. -- ___ Python tracker ___ _

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread James Goodwin
New submission from James Goodwin: The IMAP4 Example for Python 3.4 (Section 21.15.2) does not show the appropriate host information for the example to work. Suggested fix would be to change the line "M = imaplib.IMAP4()" to "M = imaplib.IMAP4('localhost')" This will bring the example inlin

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread R. David Murray
R. David Murray added the comment: I think this is actually a bug, rather than a doc bug. See issue 18540. if you agree, we'll close this as a duplicate of that one. -- nosy: +r.david.murray ___ Python tracker _

[issue21417] Compression level for zipfile

2014-10-17 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread James Goodwin
James Goodwin added the comment: I do see that. I agree that this is a duplicate of that one. -- ___ Python tracker ___ ___ Python-bu

[issue22659] SyntaxError in the configure_ctypes

2014-10-17 Thread Billy
New submission from Billy: Hi all, I have a issue with the cross-compilation, here I let it: File "../src/setup.py", line 1849 exec(f.read(), globals(), fficonfig) SyntaxError: unqualified exec is not allowed in function 'configure_ctypes' it contains a nested function with free variable

[issue16802] fileno argument to socket.socket() undocumented

2014-10-17 Thread Berker Peksag
Berker Peksag added the comment: The actual signature is now socket.socket(family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None) but, the fileno argument still needs to be documented. -- nosy: +berker.peksag stage: needs patch -> patch review versions: +Python 3.5 -Python 3.2, Py

[issue22638] ssl module: the SSLv3 protocol is vulnerable ("POODLE" attack)

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset e971f3c57502 by Antoine Pitrou in branch 'default': Issue #22638: SSLv3 is now disabled throughout the standard library. https://hg.python.org/cpython/rev/e971f3c57502 -- nosy: +python-dev ___ Python trac

[issue22638] ssl module: the SSLv3 protocol is vulnerable ("POODLE" attack)

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: So, I've disabled SSLv3 in _create_stdlib_context() for the next feature release (3.5). By the time it is released, we can consider SSLv3 will be dead. Related news: - Opera doesn't disable SSLv3 yet, but implements custom countermeasures: http://blogs.opera.co

[issue22638] ssl module: the SSLv3 protocol is vulnerable ("POODLE" attack)

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: As for bugfix releases, I think we should take the time and consider what other software packages will decide. -- versions: -Python 3.1, Python 3.2, Python 3.5 ___ Python tracker

[issue21112] 3.4 regression: unittest.expectedFailure no longer works on TestCase subclasses

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Berker, it looks like the 3.3 behaviour was buggy: TestTreatment isn't run at all! Instead, it should be run and consider failures as success. So your patch appears more correct than what 3.3 did. -- ___ Python trac

[issue22660] Review ssl docs for security recommendations

2014-10-17 Thread Antoine Pitrou
New submission from Antoine Pitrou: The current ssl documentation has a number of statements which may need updating, particularly wrt. SSLv3. -- assignee: docs@python components: Documentation messages: 229590 nosy: alex, christian.heimes, docs@python, dstufft, giampaolo.rodola, jansse

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

2014-10-17 Thread Ethan Furman
Changes by Ethan Furman : -- nosy: +ethan.furman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: The linked docs say: """an unexpected minor revision number means that the file can be read but will not reveal its full contents, when parsed by a program that supports only smaller minor revision numbers""". Unless there an important piece of contents that c

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> imaplib.IMAP4() ends with "Name or service not known" on Fedora 18 ___ Python tracker __

[issue16000] test_curses should use unittest

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset f598d0014d07 by Zachary Ware in branch '3.4': Issue #16000: Convert test_curses to use unittest https://hg.python.org/cpython/rev/f598d0014d07 New changeset b7b49f26a87b by Zachary Ware in branch 'default': Issue #16000: Convert test_curses to use u

[issue16000] test_curses should use unittest

2014-10-17 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: -> zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.5 -Python 3.3 ___ Python tracker ___

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Georg Brandl
Changes by Georg Brandl : -- priority: normal -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +benjamin.peterson, larry versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker ___ ___

[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Georg Brandl
Georg Brandl added the comment: Is this still a problem? If yes, I would contact the PyPI team directly, this tracker is not the right place for PyPI bugs. (It is unlikely to be a distutils bug.) -- nosy: +georg.brandl resolution: -> third party status: open -> pending __

[issue16662] load_tests not invoked in package/__init__.py

2014-10-17 Thread Robert Collins
Robert Collins added the comment: Closing as the fix to the test suite is applied. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Thomas Levine
Thomas Levine added the comment: It has been working for me recently. Adding to your suggestion that it is probably PyPI: I didn't do anything in particular to fix this, and I think it is more likely that PyPI got fixed than that I upgraded Python (and thus distutils). -- status: pend

[issue17401] io.FileIO closefd parameter is not documented nor shown in repr

2014-10-17 Thread R. David Murray
R. David Murray added the comment: I think the information from the following line of the 'open' docs should be added to the doc patch: "If a filename is given closefd has no effect and must be True (the default)." Otherwise it looks fine to me. -- nosy: +r.david.murray _

[issue22661] WinXP concerns

2014-10-17 Thread Tcll
New submission from Tcll: About a week ago I read you were also dropping support for WinXP. This will cause issues for me as I don't support newer Win (or should I say MS-RAT infested) OS's I use linux now, but I still use XP as a testing interface for Windows. (I will not install any newer wi

[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Georg Brandl
Georg Brandl added the comment: OK, thanks for the feedback. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mai

[issue22661] WinXP concerns

2014-10-17 Thread R. David Murray
R. David Murray added the comment: This is not an appropriate discussion for the bug tracker. python-dev would be the logical venue, but your apparent tone of voice isn't optimal for stimulating positive discussion, I'm afraid :) That said, we won't be dropping support for XP in 2.7, since it

[issue22661] WinXP concerns

2014-10-17 Thread Tcll
Tcll added the comment: I'm sorry... I wasn't trying to sound negative... I deal with alot of stress from many developers in this area, so yea, you can see why I sound like that. but thanks for telling me about that with 2.7 :) though I was hoping to try out python3 in the future. =3=

[issue22661] WinXP concerns

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Yeah, it wasn't so much negative, as...edgy? :) We can't really support what Microsoft doesn't support, since we use the Microsoft compilers. There is discussion about better support for alternate compilers, though, and if that eventuates *some* sort of supp

[issue22662] subprocess.Popen.communicate causing local tty terminal settings to change inconsistently

2014-10-17 Thread Kyle
New submission from Kyle: I'm not sure if this is a bash or Python issue. I'm trying to run a command on a remote server, using the subprocess module. I call ssh inside of subprocess.Popen(...).communicate(), like so: output = subprocess.Popen(["/bin/env %s /usr/bin/ssh -ttt %s@%s -- %s;" %

[issue22661] WinXP concerns

2014-10-17 Thread Tcll
Tcll added the comment: ah I see in that case, I work on my program for you guys as well :) it won't be finished any time soon, but what I'm working on is a recompiler specifically for this garbage of cross-platform support being hindered. so in the mean-time try to do what you can towards kee

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

2014-10-17 Thread Ethan Furman
Ethan Furman added the comment: Yeah, that was interesting. ;) I think there are two different, yet related, issues: - which __doc__ should help display? - how should __doc__ be inherited? The issue we should deal with here is the first, as what help displays does not have to follow the

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 927cca0b9337 by Zachary Ware in branch '2.7': Issue #22644: Update the Windows build to OpenSSL 1.0.1j https://hg.python.org/cpython/rev/927cca0b9337 New changeset 6ad0299fa279 by Zachary Ware in branch '3.4': Issue #22644: Update the Windows build

[issue22160] Windows installers need to be updated following OpenSSL security release

2014-10-17 Thread Zachary Ware
Zachary Ware added the comment: Superseded by #22644 (and done, anyway). -- assignee: -> zach.ware resolution: -> fixed stage: -> resolved status: open -> closed superseder: -> Update Windows installers to OpenSSL 1.0.1j type: -> security ___ Pyt

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Zachary Ware
Zachary Ware added the comment: Done, as long as the buildbots stay happy with it. -- assignee: -> zach.ware components: +Installation, Windows resolution: -> fixed stage: -> resolved status: open -> closed type: -> security ___ Python tracker

[issue22655] Build error on CentOS 5.4

2014-10-17 Thread Stefan Krah
Stefan Krah added the comment: It's a gcc bug, see #20324. -- nosy: +skrah resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue22663] patchcheck alters content of .png files

2014-10-17 Thread Robert Collins
New submission from Robert Collins: cpython.hg$ make patchcheck ./python ./Tools/scripts/patchcheck.py Getting the list of files that have been added/changed ... 448 files Fixing whitespace ... 0 files Fixing C file whitespace ... 5 files: Include/patchlevel.h Modules/_ctypes/callbacks.c Mo

[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Ethan Furman
Ethan Furman added the comment: Patch attached for the __doc__ attribute. -- keywords: +patch nosy: +ethan.furman stage: needs patch -> patch review Added file: http://bugs.python.org/file36956/issue7186.stoneleaf.01.patch ___ Python tracker

[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-17 Thread ppperry
New submission from ppperry: Note: not sure whether this issue belongs as a "behavior" or an "enhancement" In IDLE: >>> def print_a_test_string(): print "test" >>>print_a_test_string() test >>>threading.Thread(target=print_a_test_string).start() test >>>multiprocessing.Process(target=print

[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Looks fine to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue22663] patchcheck alters content of .png files

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: I can't reproduce. Which platform are you on? -- nosy: +georg.brandl, pitrou ___ Python tracker ___

[issue22653] Crash in insertdict

2014-10-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue22653] Crash in insertdict

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9ec84f9b61c6 by Antoine Pitrou in branch '3.4': Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode. https://hg.python.org/cpython/rev/9ec84f9b61c6 New changeset 4ff865976bb9 by Antoine Pitrou in

[issue22653] Crash in insertdict

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, then I've committed the patch to 3.4 and 3.5. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset fea3ddcaf652 by R David Murray in branch '3.4': #21991: make headerregistry params property MappingProxyType. https://hg.python.org/cpython/rev/fea3ddcaf652 New changeset 5beb1ea76f36 by R David Murray in branch 'default': Merge: #21991: make header

[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Thanks, Stéphane. I committed the fix with a modified test. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker __

[issue13664] UnicodeEncodeError in gzip when filename contains non-ascii

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: test_gzip passed after this patch. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-

[issue9351] argparse set_defaults on subcommands should override top level set_defaults

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset e9cb45ccf42b by R David Murray in branch '3.4': #9351: set_defaults on subparser is no longer ignored if set on parent. https://hg.python.org/cpython/rev/e9cb45ccf42b New changeset b35a811d4420 by R David Murray in branch 'default': Merge: #9351: se

[issue9351] argparse set_defaults on subcommands should override top level set_defaults

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Thanks, Jyrki. -- nosy: +r.david.murray resolution: -> fixed stage: commit review -> resolved status: open -> closed versions: +Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker

[issue15989] Possible integer overflow of PyLong_AsLong() results

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Are the fixes in the final patch waiting for someone to write tests, or is the intent to commit them without tests after a final review because tests are too difficult to write? -- nosy: +r.david.murray ___ Python

[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4c2b77d0680b by R David Murray in branch '3.4': #18853: Fix resource warning in shlex's __main__ section. https://hg.python.org/cpython/rev/4c2b77d0680b New changeset 8ed630f28753 by R David Murray in branch 'default': Merge: #18853: Fix resource wa

[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Thanks for the patch, Vajrasky, but I chose a different fix, since the proposed one could leave the file open if the shlex constructor raised an error. Not particularly important, but as long as we are cleaning up the code we might as well make it as clean a

[issue17401] io.FileIO closefd parameter is not documented nor shown in repr

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset a1500e4a159a by Robert Collins in branch 'default': Issue #17401: document closefd in io.FileIO docs and add to repr https://hg.python.org/cpython/rev/a1500e4a159a -- nosy: +python-dev ___ Python tracker

[issue16079] list duplicate test names with patchcheck

2014-10-17 Thread Robert Collins
Robert Collins added the comment: FWIW testtools rejects test suites with duplicate test ids; I'm considering adding that feature into unittest itself. We'd need an option to make it warn rather than error I think, but if we did that we wouldn't need a separate script at all. -- nosy:

[issue22606] Inconsistency between Python 2 and PyPy regarding future imports

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: A difference in internal behavior between CPython and PyPy is not necessarily a CPython bug, or even a PyPy bug. It may just be an implementation choice. So ignore PyPy and consider Python doc versus CPython behavior. Running the three quoted lines by themse

[issue22607] find by dichotomy the failing test

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe the goal, and a better title, is "Automate leak discovery within a group of tests". Bisection or dichotomy is a means, not a goal, and should not be part of the title. "Leak discovery" means 'find a test within the group that has a leak (which we k

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Aaron Hill added the comment: Okay, then. I'll just leave it out. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Changes by Aaron Hill : Added file: http://bugs.python.org/file36957/gettext-mo-fix-minor-version.patch ___ Python tracker ___ ___ Python-bugs

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Changes by Aaron Hill : Removed file: http://bugs.python.org/file36957/gettext-mo-fix-minor-version.patch ___ Python tracker ___ ___ Python-b

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Changes by Aaron Hill : Added file: http://bugs.python.org/file36958/gettext-mo-fixup.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Aaron Hill added the comment: I've added a second patch, which properly distinguishes between major and minor revisions, and updates the docs to account for the new behavior. -- ___ Python tracker

[issue15944] memoryviews and ctypes

2014-10-17 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-10-17 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue22665] shutil.__all__ incomplete

2014-10-17 Thread Martin Panter
New submission from Martin Panter: Continuing on from Issue 22247 (other out-of-date __all__ attributes), shutil.__all__ is missing (at least) get_terminal_size(), which was implemented for Issue 13609. -- components: Library (Lib) messages: 229630 nosy: vadmium priority: normal severi

[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c183c782401 by Ethan Furman in branch '3.4': Issue7186: document that __doc__ is not inherited by subclasses https://hg.python.org/cpython/rev/7c183c782401 New changeset cb8606fc84df by Ethan Furman in branch 'default': Issue7186: document that __d

[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Ethan Furman
Changes by Ethan Furman : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Ethan Furman
Changes by Ethan Furman : -- versions: +Python 3.4, Python 3.5 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bu

[issue20689] socket.AddressFamily is absent in pydoc output

2014-10-17 Thread Ethan Furman
Ethan Furman added the comment: As I said in msg209237: > The containers are there to help with discoverability. If you want to know > what > all the (common) AF values are you can either do > > [name for

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-17 Thread Pierre Boulanger
Pierre Boulanger added the comment: the result of log is: === Verbose logging started: 18-10-14 08:42:21 Build type: SHIP UNICODE 5.00.9600.00 Calling process: C:\WINDOWS\system32\msiexec.exe === MSI (c) (C4:34) [08:42:21:518]: Font created. Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Re