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
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/
takayuki added the comment:
This bug seems to remain in Python 3.5.0.
How to reproduce:
1. Save the attached cgitest.py into cgi-bin directory and changed it to
executable file by "chmod +x cgitest.py"
2. Run CGIHTTPRequestHandler
[GCC 5.1.1 20150618 (Red Hat 5.1.1-4)] on linux
New submission from takayuki:
I executed CGIHTTPServer and requested the following URI,
"http://localhost:8000/cgi-bin/test.py?k=aa%2F%2Fbb";
to pass "aa//bb" as argument "k",
but test.py received "aa/bb".
I looked in CGIHTTPServer.py and found _url_co
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
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
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
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:\
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
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/
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')]
New submission from takayuki :
Running the following code shows "2 1 4 3", but in reference manual
http://docs.python.org/reference/expressions.html#expression-lists
the evaluation order described as
{expr1: expr2, expr3: expr4}
def f(i):
print i
return i
{f(1):f(2), f(3
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
13 matches
Mail list logo