[issue32716] setup.py register --repository is broken

2018-01-29 Thread Takayuki SHIMIZUKAWA
New submission from Takayuki SHIMIZUKAWA : Although document https://docs.python.org/3.6/distutils/packageindex.html#package-cmdoptions says "The --repository or -r option lets you specify a PyPI server different from the default", if there is no URL specified in ``.pypirc`` it wi

[issue14255] tempfile.gettempdir() didn't return the path with correct case.

2013-01-18 Thread Takayuki SHIMIZUKAWA
Takayuki SHIMIZUKAWA added the comment: > I think that moving to 'normpath' instead of 'normcase' Official manual says 'abspath' include 'normpath' functionality. I think it is need JUST remove '_os.path.normcase' calling. But, I do

[issue7511] msvc9compiler.py: ValueError when trying to compile with VC Express

2013-02-24 Thread Takayuki SHIMIZUKAWA
Takayuki SHIMIZUKAWA added the comment: FYI. I was able to build both 32bit/64bit. Python 2.7.3 (32bit) WinXP Professional SP3 (x86) Visual Studio C++ Express 2008 SP1 Microsoft Windows SDK 2008 invoke Windows SDK's `CMD Shell` and do following: C:\tmp> setenv /x64 /release C:\

[issue7511] msvc9compiler.py: ValueError when trying to compile with VC Express

2013-03-23 Thread Takayuki SHIMIZUKAWA
Takayuki SHIMIZUKAWA added the comment: Hi Steve, > This becomes more of an issue since VC++ 2008 Express is no longer available > for download (unless you're an MSDN subscriber) Here: http://www.microsoft.com/en-us/download/details.as

[issue11968] wsgiref's wsgi application sample code does not work

2011-04-30 Thread Takayuki SHIMIZUKAWA
New submission from Takayuki SHIMIZUKAWA : WSGI sapmle code at wsgiref document (http://docs.python.org/py3k/library/wsgiref.html#wsgiref.util.setup_testing_defaults) was broken. - status = b'200 OK' - headers = [(b'Content-type', b'text/plain; charset=utf-8')]

[issue9678] uuid._ifconfig_getnode can't work on NetBSD

2010-08-24 Thread Takayuki SHIMIZUKAWA
New submission from Takayuki SHIMIZUKAWA : uuid.getnode() not work correctly on NetBSD5, then uuid.getnode() return random value per Python interpreter instance. This problem is caused by the uuid._ifconfig_getnode() not supporting a 'ifconfig' / 'arp' output format of

[issue14651] `pysetup run [cmd]` can't handle option values in the setup.cfg

2012-04-23 Thread Takayuki SHIMIZUKAWA
New submission from Takayuki SHIMIZUKAWA : `pysetup run [cmd]` can't handle option values in the setup.cfg setup.cfg:: [sdist] formats = gztar dist-dir = _dist run on windows:: C:> pysetup run sdist That command generate `dist/package-version.zip` instead of `_dist/

[issue8304] time.strftime() and Unicode characters on Windows

2015-11-20 Thread Takayuki SHIMIZUKAWA
Takayuki SHIMIZUKAWA added the comment: I've implemented a workaround for Sphinx: >>> time.strftime(u'%Y 年'.encode('unicode-escape').decode(), >>> *args).encode().decode('unicode-escape') 2015 年 https://github.com/sphinx-doc/sphinx/blob/

[issue19556] A missing link to Python-2.7.6.tar.bz2 in Download page.

2013-11-11 Thread Takayuki SHIMIZUKAWA
New submission from Takayuki SHIMIZUKAWA: http://python.org/download/ have a link to "Python 2.7.6 bzipped source tarball (for Linux, Unix or Mac OS X, more compressed)", but Python-2.7.6.tar.bz2 that is linked is not exist. Thanks. -- components: Build messages: 2

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2013-12-18 Thread Takayuki SHIMIZUKAWA
Takayuki SHIMIZUKAWA added the comment: This issue affects mercurial too. http://bz.selenic.com/show_bug.cgi?id=3624 -- nosy: +shimizukawa ___ Python tracker <http://bugs.python.org/issue9