[issue25621] ast.literal_eval() fails on docstrings

2015-11-13 Thread SilentGhost
SilentGhost added the comment: It doesn't seem docstring-specific, docstring is a regular Python object and ast.literal_eval would fail if you have more than one literals of any kind. Put two integers in your file and the literal_eval will fail. -- nosy: +SilentGhost

[issue25580] async and await missing from token list

2015-11-12 Thread SilentGhost
SilentGhost added the comment: Hm, not sure why the file didn't get uploaded, I clearly remember attaching it. Yury, what is the implication for this issue? Are you suggesting that the note should state that these two are temporary? Or is this information available somewhere else, in What's

[issue25580] async and await missing from token list

2015-11-12 Thread SilentGhost
SilentGhost added the comment: I've added versionchanged, since this is what's done in os, for similar lists. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue25594] enum docs outdated re attribute access

2015-11-10 Thread SilentGhost
SilentGhost added the comment: Here is the test, it seems to have been 2545bfe0d273 that caused it (issue23486): test passes prior to it and fails on it (and I assume uniformly after). -- keywords: +patch Added file: http://bugs.python.org/file41003/test_issue25594.diff

[issue25594] enum instance attribute access possible

2015-11-10 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- components: -Documentation stage: test needed -> needs patch title: enum docs outdated re attribute access -> enum instance attribute access possible ___ Python tracker <rep...@bugs.py

[issue25594] enum docs outdated re attribute access

2015-11-10 Thread SilentGhost
New submission from SilentGhost: In enum docs[0], there is a suggestion that the attribute access on members should raise an AttributeError: >>> Color.red.blue Traceback (most recent call last): ... AttributeError: 'Color' object has no attribute 'blue' which is demonstrably wrong

[issue25581] Python -U raises error during site import

2015-11-08 Thread SilentGhost
SilentGhost added the comment: > Interesting, I didn't even know (remember?) about the -U flag, and it isn't > documented. https://docs.python.org/2/using/cmdline.html#cmdoption-U It isn't clear when this broken or why, but I think existing documentation could be adjusted to have a

[issue25585] Bad path leads to: ImportError: DLL load failed: %1 is not a valid Win32 application.

2015-11-08 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25580] async and await missing from token list

2015-11-07 Thread SilentGhost
New submission from SilentGhost: With introduction of async and await tokens in 3.5 the token documentation needs updating. -- assignee: docs@python components: Documentation files: token.diff keywords: patch messages: 254281 nosy: SilentGhost, docs@python priority: normal severity

[issue25581] Python -U raises error during site import

2015-11-07 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- components: +Windows -Interpreter Core, Regular Expressions nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25579] def is not a keyword with tokenize.py

2015-11-07 Thread SilentGhost
SilentGhost added the comment: >>> keyword.iskeyword('pass') True There doesn't seem anything particular about def, none of the keywords have "keyword" type, because there doesn't seem to be one: https://docs.python.org/3.6/library/token.html -- nosy: +Sil

[issue25579] def is not a keyword with tokenize.py

2015-11-07 Thread SilentGhost
SilentGhost added the comment: Perhaps, my example wasn't as self-explanatory as I hoped. def is not DEF in the token list, because there isn't such a token DEF, as there isn't a token PASS or a token for any other keyword. The fact that there is an ASYNC and AWAIT tokens is something

[issue25550] RecursionError in re with '(' * 500

2015-11-04 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- components: +Regular Expressions nosy: +mrabarnett versions: +Python 3.6 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25485] Add a context manager to telnetlib.Telnet

2015-10-30 Thread SilentGhost
SilentGhost added the comment: That's fine as a code change, but that's not the kind of test I meant. There is a Lib/test/test_ftplib.py and it basically needs test_with_statement added to one or few test cases. Have a look at how the similar functions implemented in Lib/test

[issue18973] Use argparse in the calendar module

2015-10-28 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- versions: +Python 3.6 -Python 3.4 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25485] Add a context manager to telnetlib.Telnet

2015-10-28 Thread SilentGhost
SilentGhost added the comment: This probably needs test -- nosy: +SilentGhost ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue25469] multiprocessing .Condition.notify(_all) function has O(N) time complexity where N is the number of wait() calls with a timeout since the last notify(_all) call

2015-10-25 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue25469] multiprocessing .Condition.notify(_all) function has O(N) time complexity where N is the number of wait() calls with a timeout since the last notify(_all) call

2015-10-25 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- nosy: +jnoller, sbt ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25469> ___ _

[issue25475] use argparse instead of getopt

2015-10-25 Thread SilentGhost
SilentGhost added the comment: This seems like a change for the sake of change. I think any module that requires argparse features can be moved in its own time. -- nosy: +SilentGhost resolution: -> rejected status: open -> closed ___ Python t

[issue25435] Wrong function calls and referring to not removed concepts in descriptor HowTo (documentation)

2015-10-18 Thread SilentGhost
Changes by SilentGhost <ghost@gmail.com>: -- nosy: +rhettinger ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue25435> ___ _

[issue25434] Fix typo in whatsnew/3.5

2015-10-18 Thread SilentGhost
SilentGhost added the comment: Shouldn't the line above read "now accepts" rather than "how accepts"? -- nosy: +SilentGhost ___ Python tracker <rep...@bugs.python.org> <http

[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-23 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24035

[issue23884] New DateType for argparse (like FileType but for dates)

2015-04-07 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +bethard ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23884 ___ ___ Python-bugs-list mailing

[issue23764] functools.wraps should be able to change function argspec as well

2015-03-24 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +ncoghlan, rhettinger versions: -Python 3.2, Python 3.3, Python 3.4, Python 3.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23764

[issue23739] locale.setlocale checks locale name for string incorrectly

2015-03-22 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +lemburg, loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23739 ___ ___ Python-bugs-list

[issue23643] Segmentation Fault with Large Simple Function

2015-03-11 Thread SilentGhost
SilentGhost added the comment: This seems to work on linux (returning 0), but fails on 3.4 with RuntimeError: maximum recursion depth exceeded during compilation. I wonder if the two are related. -- nosy: +SilentGhost ___ Python tracker rep

[issue23616] Conflict between generic cycle and undo shortcut.

2015-03-09 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +kbk, roger.serwy, terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23616

[issue23137] Python 2.7.9 test_gdb fails on CentOS 7

2015-03-08 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +benjamin.peterson, haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23137 ___ ___ Python

[issue23607] Inconsistency in datetime.utcfromtimestamp(Decimal)

2015-03-08 Thread SilentGhost
SilentGhost added the comment: Here is the python-only fix that eliminates TypeError and produces correct number of milliseconds. The problem with C implementation lies in _PyTime_ObjectToDenominator function where there is an explicit check for a float. This check could be relaxed to include

[issue23601] use small object allocator for dict key storage

2015-03-07 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +lemburg, tim.peters ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23601 ___ ___ Python-bugs

[issue23604] Python 3.4 and 2.7 installation no Script folder and no pip installed

2015-03-07 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Installation, Windows -Extension Modules nosy: +steve.dower, tim.golden, zach.ware ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23604

[issue23512] The list of built-in functions is not alphabetical on https://docs.python.org/2/library/functions.html

2015-03-02 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: Removed file: http://bugs.python.org/file38304/functools.rst ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23512

[issue23555] behavioural change in argparse set_defaults in python 2.7.9

2015-03-01 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +bethard ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23555 ___ ___ Python-bugs-list mailing

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

2015-03-01 Thread SilentGhost
SilentGhost added the comment: There is this bit in https://docs.python.org/3/library/exceptions.html : When raising a new exception (rather than using a bare raise to re-raise the exception currently being handled),... I presume this can be also suitable for tutorial if it's not already

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

2015-03-01 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +collinwinter ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23556 ___ ___ Python-bugs-list

[issue23546] windows, IDLE and pep 397

2015-02-28 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Installation versions: -Python 2.7, Python 3.2, Python 3.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23546

[issue23550] Add to unicodedata a function to query the Quick_Check property for a character

2015-02-28 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +benjamin.peterson, lemburg, loewis, pitrou versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23550

[issue23544] Idle stacker viewer crash OSX

2015-02-27 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Macintosh nosy: +kbk, ned.deily, roger.serwy, ronaldoussoren, terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23544

[issue23534] `test_longdouble` fails on Mac when using system libffi (version 3.1)

2015-02-26 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Macintosh nosy: +amaury.forgeotdarc, belopolsky, hynek, meador.inge, ned.deily, ronaldoussoren ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23534

[issue23531] SSL operations cause entire process to hang

2015-02-26 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +alex, christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23531

[issue23522] Misleading note in Statistics module documentation

2015-02-25 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +steven.daprano ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23522 ___ ___ Python-bugs-list

[issue23499] Minor grammar issue in mimetypes.rst

2015-02-22 Thread SilentGhost
New submission from SilentGhost: Just a minor grammar issue: missing be in mimetypes.rst -- assignee: docs@python components: Documentation files: mimetypes.diff keywords: patch messages: 236402 nosy: SilentGhost, docs@python, eric.araujo, ezio.melotti, georg.brandl priority: normal

[issue23495] The writer.writerows method should be documented as accepting any iterable (not only a list)

2015-02-21 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23495 ___ ___ Python-bugs-list

[issue23483] python 2.7 builds using icc

2015-02-19 Thread SilentGhost
SilentGhost added the comment: I suggest you add this information to issue21167 as it's exactly the same behaviour you're seeing. There really is no need to have a separate issue. -- nosy: +SilentGhost status: open - closed superseder: - float('nan') returns 0.0 on Python compiled

[issue23480] Minor typo

2015-02-18 Thread SilentGhost
SilentGhost added the comment: If you run the command in your interpreter you'll see that the output is correct. -- assignee: - docs@python components: +Documentation -Demos and Tools nosy: +SilentGhost, docs@python resolution: - not a bug status: open - closed

[issue23471] 404 Not Found when downloading Python 3.4.3rc1 Documentation

2015-02-16 Thread SilentGhost
SilentGhost added the comment: This is the page: https://docs.python.org/3/download.html also true about the 3.5 at https://docs.python.org/3.5/download.html All the links in the table result in 404. Clearly the files are not at https://docs.python.org/3/archives/ -- nosy

[issue23468] ISO 8601 datetime process

2015-02-15 Thread SilentGhost
SilentGhost added the comment: Perhaps I'm misinterpreting your message, but this doesn't seem like a problem with datetime module. The issue is with dateutil module, which is not the part of the standard library and is not developed here. Also, I can reproduce this issue on 3.4 (though I

[issue23463] Incorrect behaviour when opening files containing colons on Windows

2015-02-14 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Windows nosy: +steve.dower, tim.golden, zach.ware ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23463

[issue23431] Idle Application Not Responding

2015-02-10 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Macintosh nosy: +hynek, ned.deily, ronaldoussoren ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23431

[issue23412] importlib sometimes fails to import a recently created module

2015-02-08 Thread SilentGhost
SilentGhost added the comment: Looks like some sort of race condition. Sleeping for a second before import_module seem to solve the problem. -- components: +Interpreter Core nosy: +SilentGhost, brett.cannon, eric.snow, ncoghlan ___ Python tracker

[issue23412] importlib sometimes fails to import a recently created module

2015-02-08 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23412 ___ ___ Python-bugs-list

[issue23372] defaultdict.fromkeys should accept a callable factory

2015-02-01 Thread SilentGhost
SilentGhost added the comment: Correct me if I'm wrong but this seem as a very unlikely use case. Why would you need to ensure content of the defaultdict (i.e., why would you ever use its fromkeys method)? And, perhaps, having to implicitly assign default factory is not such a bad tradeoff

[issue23372] defaultdict.fromkeys should accept a callable factory

2015-02-01 Thread SilentGhost
SilentGhost added the comment: Raymond, but Alec talks about defaultdict.fromkeys(constants, factory=list) as opposed to current solution d = defaultdict.fromkeys(constants) d.default_factory = list for i in d: d[i] = [] I wouldn't think that the dict.fromkeys should

[issue23316] Incorrect evaluation order of function arguments with *args

2015-01-25 Thread SilentGhost
SilentGhost added the comment: It seems, if I read https://docs.python.org/3/reference/expressions.html#calls correctly that the evaluation order of the function arguments is not defined in general, as it depends on your use of keyword argument and exact function signature. Naturally, f

[issue23318] (compiled RegEx).split gives unexpected results if () in pattern

2015-01-25 Thread SilentGhost
SilentGhost added the comment: Looks like it works exactly as the docs[1] describe: re.split(r'\s*[+/;,]\s*|\s+and\s+', string) ['Dave', 'Sam', 'Jane', 'Zoe'] You're using capturing groups (parentheses) in your original regex which returns separators as part of a match. [1] https

[issue23304] Unused Superclass in calendar.py

2015-01-22 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- keywords: +easy versions: +Python 3.5 -Python 3.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23304

[issue23257] Update Windows build/setup instructions in devguide

2015-01-17 Thread SilentGhost
SilentGhost added the comment: Couple of things: 1. chosen chosen 2. double space needed before You can invoke... -- nosy: +SilentGhost ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23257

[issue23228] Crashes when tarfile contains a symlink and unpack directory contain it too

2015-01-13 Thread SilentGhost
SilentGhost added the comment: Perhaps I'm missing something here, but it doesn't seem to be a problem with valid links. Only invalid symlinks are causing this issue. -- nosy: +SilentGhost ___ Python tracker rep...@bugs.python.org http

[issue23222] open doesn't provide traceback for int argument

2015-01-11 Thread SilentGhost
SilentGhost added the comment: As explained in the docs[1] integer is a valid argument for the open function in the python3. It is also noted that the file descriptor is going to be closed, unless closefd argument to the open function was False, when f.close() is called. This is the behaviour

[issue23223] subprocess32 unable to be installed via pip

2015-01-11 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Library (Lib) -Installation nosy: +gregory.p.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23223

[issue23118] Properly codesign Mac python 2.7.9.pkg so it can work thru OS X firewall

2014-12-26 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23118

[issue23117] Properly codesign Mac python 2.7.9.pkg so it can work thru OS X firewall

2014-12-26 Thread SilentGhost
SilentGhost added the comment: Closed issue23118 as identical issue to this one. -- nosy: +SilentGhost ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23117

[issue23117] Properly codesign Mac python 2.7.9.pkg so it can work thru OS X firewall

2014-12-26 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- components: +Macintosh nosy: +ned.deily, ronaldoussoren versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23117

[issue23000] More support for Visual Studio users on Windows?

2014-12-06 Thread SilentGhost
SilentGhost added the comment: This seem like an issue with numpy, not python. Perhaps installing using binary would be a better option for you? In any case, this need further elaborating at what the actual problem and the solution could be. -- nosy: +SilentGhost resolution

[issue22917] Calculating problem

2014-11-22 Thread SilentGhost
SilentGhost added the comment: Hi Henning, this is not a bug. This is to do with how floating point numbers represented in computers. I'd suggest https://en.wikipedia.org/wiki/IEEE_floating_point as a starting point. Briefly, due to binary base that the computers operate on, not every number

[issue22558] Missing hint to source code - complete

2014-10-05 Thread SilentGhost
SilentGhost added the comment: Your code produces many false positives, would you care to reduce this list to only those modules that actually do not have a Source code link? -- nosy: +SilentGhost ___ Python tracker rep...@bugs.python.org http

[issue17432] ucs2

2014-09-21 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- title: PyUnicode_ functions not accessible in Limited API on Windows - ucs2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17432

[issue17432] PyUnicode_ functions not accessible in Limited API on Windows

2014-09-21 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- title: ucs2 - PyUnicode_ functions not accessible in Limited API on Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17432

[issue22091] __debug__ in compile(optimize=1)

2014-07-27 Thread SilentGhost
SilentGhost added the comment: I can reproduce your example on 3.4, but for the comparison: exec(compile(if __debug__: print(42), exec, exec, optimize=1)) exec(compile(if __debug__: print(42), exec, exec, optimize=0)) 42 So, it's not as straightforward as one might imagine

[issue21981] Idle problem

2014-07-14 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21981 ___ ___ Python-bugs-list

[issue21973] Can't use Idle

2014-07-13 Thread SilentGhost
SilentGhost added the comment: This is the normal content of idle.bat Could you run `c:\python34\python.exe -m idlelib.idle` from the command-line and post the output here? -- components: +IDLE nosy: +SilentGhost, kbk, roger.serwy, terry.reedy

[issue21973] Can't use Idle

2014-07-13 Thread SilentGhost
SilentGhost added the comment: If you would delete this file: C:\Users\Tomk\.idlerc\config-extensions.cfg (back it up some place else just in case). Does it start? and if not, would you mind re-running the same command again? -- ___ Python tracker

[issue21973] Can't use Idle

2014-07-13 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- Removed message: http://bugs.python.org/msg222943 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21973

[issue21973] Can't use Idle

2014-07-13 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- Removed message: http://bugs.python.org/msg222930 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21973

[issue21973] Can't use Idle

2014-07-13 Thread SilentGhost
SilentGhost added the comment: IDLE supports extensions: https://docs.python.org/3/library/idle.html#extensions And that was a user-configuration file that got corrupted somehow. As it's an optional feature, IDLE can work without it. You can use your favourite text editor to compose programs

[issue21973] Can't use Idle

2014-07-13 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21973 ___ ___ Python-bugs-list

[issue21880] IDLE: Ability to run 3rd party code checkers

2014-07-05 Thread SilentGhost
SilentGhost added the comment: This seem like a new feature for IDLE, so I'd imagine it would not be included in either 2.7 or 3.4. Correct me if I'm wrong. -- nosy: +SilentGhost versions: -Python 2.7, Python 3.4 ___ Python tracker rep

[issue21906] Tools\Scripts\md5sum.py doesn't work in Python 3.x

2014-07-02 Thread SilentGhost
SilentGhost added the comment: I guess it's only the evidence that it isn't being used. -- nosy: +SilentGhost title: Tools\Scripts\md5sum.py doesn't work in Python 3.4.1 on Windows 7 64bit. - Tools\Scripts\md5sum.py doesn't work in Python 3.x versions: +Python 3.5

[issue21792] Invitation to connect on LinkedIn

2014-06-17 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- resolution: - not a bug status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21792

[issue21685] zipfile module doesn't properly compress odt documents

2014-06-08 Thread SilentGhost
SilentGhost added the comment: Whether for reasons of slightly different setup or due to something else, I'm not able to reproduce the issue. What I do see, is that the field is not automatically updated, so on opening of the document I have to hit F9 to get the answer field updated

[issue21685] zipfile module doesn't properly compress odt documents

2014-06-07 Thread SilentGhost
SilentGhost added the comment: Raimondo, the documentation clearly states that the compression method is either inherited from ZipInfo instance (when that one is passed) or set to ZIP_STORED otherwise. Since you're not passing ZipInfo instance, but the string (as the first argument

[issue21631] List/Dict Combination Bug

2014-06-01 Thread SilentGhost
SilentGhost added the comment: Robert, could you please post a reduced code that generates the bug. Preferably, a interpreter output. Including information about your python version, OS, etc. For example: Python 2.7.6 (default, Mar 22 2014, 22:59:56) [GCC 4.8.2] on linux2 Type help, copyright

[issue21607] results of `zip` are displayed as 'zip object at 0xxxxxx

2014-05-29 Thread SilentGhost
SilentGhost added the comment: This is the correct behaviour. In python 3 zip returns an iterator. Detailed information is available in documentation. https://docs.python.org/3/library/functions.html#zip -- nosy: +SilentGhost resolution: - not a bug status: open - closed

[issue21607] results of `zip` are displayed as 'zip object at 0xxxxxx

2014-05-29 Thread SilentGhost
SilentGhost added the comment: How do you display the contents of an iterable without using them up In general case you can't, but zip object _is_ reusable iterable so we can reuse it? I think you're misunderstanding what an iterator is or how it functions. Just to make it clear, it cannot

[issue21609] Documentation for datetime.datetime uses microseconds instead of microsecond

2014-05-29 Thread SilentGhost
SilentGhost added the comment: Could you provide an actual quote where it refers to datetime.datetime.microseconds? Are you not by any chance confusing it with datetime.timedelta.microseconds? -- nosy: +SilentGhost ___ Python tracker rep

[issue20591] Let braces be a constant

2014-02-12 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- resolution: - rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20591

[issue20295] imghdr add openexr support

2014-01-19 Thread SilentGhost
SilentGhost added the comment: Martin, it would be better if you do the check the way it's done in test_rast: h.startswith(b'\x76\x2f\x31\x01') Otherwise, you need to check that that h has at least 4 elements (if it doesn't you'll get an IndexError). -- nosy: +SilentGhost

[issue20281] time.strftime %z format specifier is the same as %Z

2014-01-16 Thread SilentGhost
SilentGhost added the comment: Mike, the note is at the very bottom of the page. datetime.strftime produces empty strings with this specifiers for naïve objects, are the object you're testing timezone-aware? -- nosy: +SilentGhost ___ Python tracker

[issue20272] chain.from_iterable in the overview table not linking to the function

2014-01-15 Thread SilentGhost
New submission from SilentGhost: chain.from_iterable is not linkified in the overview table at the top of the itertools docs. The patch requires reformat of the table. -- assignee: docs@python components: Documentation files: linkify.diff keywords: patch messages: 208184 nosy

[issue20272] chain.from_iterable in the overview table not linking to the function

2014-01-15 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- versions: -Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20272 ___ ___ Python-bugs-list

[issue19844] os.path.split fails on windows path

2013-11-30 Thread SilentGhost
SilentGhost added the comment: file must be a raw string: file = r'C:\progs\python' Then everthing works. -- nosy: +SilentGhost resolution: - invalid ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19844

[issue17889] argparse subparsers break without without argument

2013-05-01 Thread SilentGhost
New submission from SilentGhost: If you run attached file w/ 3.2 and 3.3 (and later) versions, you'll notice that the new version of parser doesn't handle empty argument list: $ python3.2 test.py usage: test.py [-h] {demo} ... test.py: error: too few arguments $ python3.3 test.py Namespace

[issue17889] argparse subparsers break without arguments

2013-05-01 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- title: argparse subparsers break without without argument - argparse subparsers break without arguments ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17889

[issue12516] imghdr.what should take one argument

2011-07-08 Thread SilentGhost
SilentGhost ghost@gmail.com added the comment: This seems like a change suitable for 3.3 -- nosy: +SilentGhost versions: +Python 3.3 -Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12516

[issue12518] In string.Template it's impossible to transform delimiter in the derived class

2011-07-08 Thread SilentGhost
SilentGhost ghost@gmail.com added the comment: 3.1 is in security fixes-only mode -- nosy: +SilentGhost versions: +Python 3.2 -Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12518

[issue12397] re match object methods have no docstrings

2011-06-24 Thread SilentGhost
SilentGhost ghost@gmail.com added the comment: 2.6 is in security-only mode, if I'm not mistaken. -- nosy: +SilentGhost versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12397

[issue11072] Add MLSD command support to ftplib

2011-05-06 Thread SilentGhost
SilentGhost ghost@gmail.com added the comment: Has something prevent you from implementing suggestion provided in my review? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11072

[issue11072] Add MLSD command support to ftplib

2011-05-06 Thread SilentGhost
SilentGhost ghost@gmail.com added the comment: a review on rietveld http://bugs.python.org/review/11072/show which as I confirmed with you specifically at #python-dev you received a notification of. -- ___ Python tracker rep...@bugs.python.org

[issue11752] Gungor Basa wants to stay in touch on LinkedIn

2011-04-03 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: -- Removed message: http://bugs.python.org/msg132870 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11752

[issue11752] Gungor Basa wants to stay in touch on LinkedIn

2011-04-03 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: Removed file: http://bugs.python.org/file21519/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11752

<    7   8   9   10   11   12   13   14   >