[issue22715] PEP 257: drop the recommendation for a blank line between the class line and the docstring

2014-10-24 Thread Akira Kitada
Akira Kitada added the comment: Good point. I looked at some Python files but, as you pointed out, I couldn't find ones what follow the recommendation. In some files there is a blank line after a docstring but it seemed it's not because it "is written as a number of sections"

[issue22715] PEP 257: drop the recommendation for a blank line between the class line and the docstring

2014-10-24 Thread Akira Kitada
Akira Kitada added the comment: Guido is with me :) On Wed, Oct 22, 2014 at 2:16 AM, Guido van Rossum wrote: > I think the argument is about the blank line between the "class" line and > the docstring. I agree with Akira that very few packages follow this style, > and I thi

[issue22715] PEP 257: drop the recommendation for a blank line between the class line and the docstring

2014-10-24 Thread Akira Kitada
New submission from Akira Kitada: The PEP 257 says: Insert a blank line before and after all docstrings (one-line or multi-line) that document a class Looking at stdlib and popular open source software, I couldn't find packages that follow this style, so I think this is not rea

[issue1185124] pydoc doesn't find all module doc strings

2014-01-13 Thread Akira Kitada
Akira Kitada added the comment: I tried pydoc_2.7.patch with the following test file and found source_synopsis returns \x escaped string instead of \u escaped one. # -*- coding: utf-8 -*- u"""ツ""" class Spam(object): u"""ツ"""

[issue6625] UnicodeEncodeError on pydoc's CLI

2014-01-12 Thread Akira Kitada
Akira Kitada added the comment: I suppose this is a duplicate of #1065986. -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue6625> ___ ___ Pytho

[issue1065986] Fix pydoc crashing on unicode strings

2014-01-04 Thread Akira Kitada
Akira Kitada added the comment: Made a few more adjustments to fix things r.david.murray pointed out. -- Added file: http://bugs.python.org/file33316/issue1065986-6.patch ___ Python tracker <http://bugs.python.org/issue1065

[issue1065986] Fix pydoc crashing on unicode strings

2013-11-20 Thread Akira Kitada
Akira Kitada added the comment: Good catch. Fixed. -- Added file: http://bugs.python.org/file32738/issue1065986-5.patch ___ Python tracker <http://bugs.python.org/issue1065

[issue1065986] Fix pydoc crashing on unicode strings

2013-11-20 Thread Akira Kitada
Akira Kitada added the comment: Added to html pydoc generates. -- Added file: http://bugs.python.org/file32721/issue1065986-4.patch ___ Python tracker <http://bugs.python.org/issue1065

[issue1185124] pydoc doesn't find all module doc strings

2013-09-25 Thread Akira Kitada
Akira Kitada added the comment: Do you have any plan to work on patch for 2.7? Apparently your patch is only for 3.x. -- ___ Python tracker <http://bugs.python.org/issue1185

[issue1065986] Fix pydoc crashing on unicode strings

2013-09-21 Thread Akira Kitada
Akira Kitada added the comment: Now we have a working fix for 2.7. Could someone please review the attached patch? -- ___ Python tracker <http://bugs.python.org/issue1065

[issue1185124] pydoc doesn't find all module doc strings

2013-09-21 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue1185124> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13963] dev guide has no mention of mechanics of patch review

2013-09-21 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue13963> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1065986] Fix pydoc crashing on unicode strings

2013-09-21 Thread Akira Kitada
Akira Kitada added the comment: Updated the previous patch to test unicode strings in __{version,date,author,credits}__ don't crash. -- Added file: http://bugs.python.org/file31832/issue1065986-3.patch ___ Python tracker <http://bugs.py

[issue1065986] Fix pydoc crashing on unicode strings

2013-09-17 Thread Akira Kitada
Akira Kitada added the comment: With this patch applied, the example from issue15791 works fine. $ echo "__author__ = u'Michele Orr\xf9'" > foo.py && ./python -c "import foo; print foo.__author__; help(foo)" Michele Orrù Help on module foo: NAME

[issue1065986] Fix pydoc crashing on unicode strings

2013-09-16 Thread Akira Kitada
Akira Kitada added the comment: Attaching a modified version of issue1065986.patch. The differences are: - Added _binstr(), which is str() that works with unicode objects. - Changed getdoc() to return encoded docstrings/comments - Used _binstr() to convert __version__, __date__, __author__ and

[issue12317] inspect.getabsfile() is not documented

2013-09-08 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue12317> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1065986] Fix pydoc crashing on unicode strings

2013-09-07 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue1065986> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12404] c99 code in mmapmodule

2011-06-25 Thread Akira Kitada
New submission from Akira Kitada : Modules/mmapmodule.c contains code that makes it incompatible with C89 compiler. People using recent gcc can check this by running following commands. $ ./configure CFLAGS='-Wdeclaration-after-statement' && make Attached patch fixes th

[issue10052] Python/dtoa.c:158: #error "Failed to find an exact-width 32-bit integer type" (FreeBSD 4.11 + gcc 2.95.4)

2010-10-16 Thread Akira Kitada
Akira Kitada added the comment: This patch is specifically targeted at FreeBSD 4. tested on FreeBSD 4.11 and OS X 10.6.4 I don't know how to accommodate SGI IRIX's case. -- keywords: +patch Added file: http://bugs.python.org/file19254/issue

[issue5736] Add the iterator protocol to dbm modules

2010-10-16 Thread Akira Kitada
Akira Kitada added the comment: This patch just uses PyObject_GetIter to get an iter. (I just copied the idea from issue9523) -- nosy: +ysj.ray versions: +Python 3.2 -Python 2.7 Added file: http://bugs.python.org/file19250/issue5736.diff ___ Python

[issue5736] Add the iterator protocol to dbm modules

2010-10-16 Thread Akira Kitada
Changes by Akira Kitada : Removed file: http://bugs.python.org/file13676/issue5736.diff ___ Python tracker <http://bugs.python.org/issue5736> ___ ___ Python-bugs-list m

[issue5736] Add the iterator protocol to dbm modules

2010-10-16 Thread Akira Kitada
Changes by Akira Kitada : Removed file: http://bugs.python.org/file13682/test_issue5736.diff ___ Python tracker <http://bugs.python.org/issue5736> ___ ___ Python-bug

[issue5736] Add the iterator protocol to dbm modules

2010-10-16 Thread Akira Kitada
Changes by Akira Kitada : Removed file: http://bugs.python.org/file13674/issue5736.diff ___ Python tracker <http://bugs.python.org/issue5736> ___ ___ Python-bugs-list m

[issue5736] Add the iterator protocol to dbm modules

2010-10-16 Thread Akira Kitada
Changes by Akira Kitada : Removed file: http://bugs.python.org/file13673/issue5736.diff ___ Python tracker <http://bugs.python.org/issue5736> ___ ___ Python-bugs-list m

[issue10052] Python/dtoa.c:158: #error "Failed to find an exact-width 32-bit integer type" (FreeBSD 4.11 + gcc 2.95.4)

2010-10-10 Thread Akira Kitada
Akira Kitada added the comment: I understand FreeBSD 4.x is old platform (4.11, the last 4.x series, is released 5 years ago) but, in my opinion, as long as it does not make Python code cluttered, supporting old platforms is not that bad idea. Anyway, I would like to leave the decision to

[issue10062] Python 3.2 does not build on systems which do not have sem_timedwait

2010-10-10 Thread Akira Kitada
Akira Kitada added the comment: The patch does fix the build error. Thank you! -- ___ Python tracker <http://bugs.python.org/issue10062> ___ ___ Python-bug

[issue10062] Python 3.2 does not build on systems which do not have sem_timedwait

2010-10-10 Thread Akira Kitada
Akira Kitada added the comment: It works fine with USE_SEMAPHORES commented out. -- ___ Python tracker <http://bugs.python.org/issue10062> ___ ___ Python-bug

[issue10062] Python 3.2 does not build on systems which do not have sem_timedwait

2010-10-10 Thread Akira Kitada
New submission from Akira Kitada : Build fails on FreeBSD 4 due to the lack of sem_timedwait. """ gcc -pthread -Wl,--export-dynamic -o python Modules/python.o libpython3.2.a -lutil -lm libpython3.2.a(thread.o): In function `PyThread_acquire_lock_timed': /home/aki

[issue10052] Python/dtoa.c:158: #error "Failed to find an exact-width 32-bit integer type" (FreeBSD 4.11 + gcc 2.95.4)

2010-10-09 Thread Akira Kitada
Akira Kitada added the comment: Forgot to mention that there's no _MAX macro for exact-width integer types. $ egrep -r 'INT[0-9].*_MAX' /usr/include/ | wc -l 0 How about adding those macros when the system does n

[issue10054] select extension does not build on platforms where uintptr_t is provided in inttypes.h

2010-10-09 Thread Akira Kitada
Akira Kitada added the comment: It seems this problem was introduced by a patch in issue7211. 3.1 branch does not have this problem because that patch was not applied to release31-maint. Is this intentional? -- versions: +Python 3.2 ___ Python

[issue10052] Python/dtoa.c:158: #error "Failed to find an exact-width 32-bit integer type" (FreeBSD 4.11 + gcc 2.95.4)

2010-10-09 Thread Akira Kitada
Akira Kitada added the comment: > 1. Have you tested this with Python 3.x at all? I'd expect the same issues > to show up for Python 3.1 and 3.2. Yes, I can reproduce this in 2.7, 3.1 and 3.2. > 2. Also, do you have the relevant configure output to hand? On my machine, >

[issue10055] C99 code in _json.c

2010-10-09 Thread Akira Kitada
New submission from Akira Kitada : I found some C99 code in _json.c. Attached patch makes it C89. The C99 part is only used for ucs4 Python. That's probably the reason it's overlooked. -- components: Build files: _json.c.diff keywords: patch messages: 118255 nosy: akitad

[issue10054] select extension does not build on platforms where uintptr_t is provided in inttypes.h

2010-10-09 Thread Akira Kitada
Akira Kitada added the comment: This patch fixes this. -- keywords: +patch Added file: http://bugs.python.org/file19173/issue10054.diff ___ Python tracker <http://bugs.python.org/issue10

[issue10054] select extension does not build on platforms where uintptr_t is provided in inttypes.h

2010-10-09 Thread Akira Kitada
New submission from Akira Kitada : Some platforms have uintptr_t in inttypes.h but Python bulid system assumes it's defined in stdint.h and it causes build failure: """ building 'select' extension gcc -pthread -fPIC -fno-strict-aliasing -g -O2 -DNDEBUG -g -O3

[issue10052] Python/dtoa.c:158: #error "Failed to find an exact-width 32-bit integer type" (FreeBSD 4.11 + gcc 2.95.4)

2010-10-09 Thread Akira Kitada
New submission from Akira Kitada : Building Python 2.7 fails on FreeBSD 4.11 with gcc 2.95.4 as below: """ gcc -pthread -c -fno-strict-aliasing -g -O2 -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -I. -IInclude -I./Include -DPy_BUILD_CORE -o Python/dtoa.o Python/dtoa.c Py

[issue1019715] distutils ignores configure's --includedir

2009-09-12 Thread Akira Kitada
Akira Kitada added the comment: I think this is duplicate of issue858809. -- ___ Python tracker <http://bugs.python.org/issue1019715> ___ ___ Python-bugs-list m

[issue1294959] Problems with /usr/lib64 builds.

2009-09-12 Thread Akira Kitada
Akira Kitada added the comment: I think this is duplicate of issue858809. -- ___ Python tracker <http://bugs.python.org/issue1294959> ___ ___ Python-bugs-list m

[issue6863] Wrong linker command if CXX set to "ccache g++"

2009-09-12 Thread Akira Kitada
Akira Kitada added the comment: Aren't CC and CXX variables just for compilers? """ CC Program for compiling C programs; default `cc'. CXX Program for compiling C++ programs; default `g++'. """ http://www.gnu.org/software/make/manual/make.

[issue6331] Add unicode script info to the unicode database

2009-06-23 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue6331> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2009-06-23 Thread Akira Kitada
Akira Kitada added the comment: Thanks for this great work! Does Regexp 2.7 include Unicode Scripts support? http://www.regular-expressions.info/unicode.html Perl and Ruby support it and it's pretty handy. -- nosy: +akitada ___ Python tr

[issue5736] Add the iterator protocol to dbm modules

2009-04-13 Thread Akira Kitada
Akira Kitada added the comment: Yes, using a static variable there is wrong and actually I'm now working on "dbm_iterobject" just as Martin suggested. dbm iterator should behave just like one in dict. I think I can use Objects/dictobject.c as a good example for this. Attached i

[issue5736] Add the iterator protocol to dbm modules

2009-04-12 Thread Akira Kitada
Akira Kitada added the comment: Of course iter should work in the same way in all dbm modules. iter in dbm/gdbm should work like dumbdbm's iter. >>> dumb = dumbdbm.open('foo', 'n') >>> dumb['k1'] = 'v1';dumb['k2'] = '

[issue5736] Add the iterator protocol to dbm modules

2009-04-12 Thread Akira Kitada
Akira Kitada added the comment: Here's another patch which addsd iter to dbm and gdbm. Note that dbm and gdbm C API is a little different. gdbm_nextkey requires key for its argument, dbm_nextkey don't. So I had to use for gdbm an static variable that points to the current pos

[issue5736] Add the iterator protocol to dbm modules

2009-04-11 Thread Akira Kitada
Akira Kitada added the comment: Revised patch adds firstkey and nextkey to dbm. Now the internal pointer can be reset with firstkey. -- Added file: http://bugs.python.org/file13674/issue5736.diff ___ Python tracker <http://bugs.python.org/issue5

[issue5736] Add the iterator protocol to dbm modules

2009-04-11 Thread Akira Kitada
Akira Kitada added the comment: Attached is a patch that adds the iterator protocol. Now it can be interated through like: >>> for k in d: print k, d[k] ... key1 vale1 key3 vale3 key0 vale0 key2 vale2 key4 vale4 The problem is there is no way to get the internal pointer back to the

[issue5736] Add the iterator protocol to dbm modules

2009-04-11 Thread Akira Kitada
New submission from Akira Kitada : In Python 2.6, dbm modules othar than bsddb don't support the iterator protocol. >>> import dbm >>> d = dbm.open('spam.dbm', 'c') >>> for k in range(5): d["key%d" % k] = "value%d" % k

[issue3992] removed custom log from distutils

2009-03-07 Thread Akira Kitada
Akira Kitada added the comment: I updated the patch. Mine only changes log.py. -- nosy: +akitada Added file: http://bugs.python.org/file13260/remove-custom-log-revised.diff ___ Python tracker <http://bugs.python.org/issue3

[issue3985] removed string module from distutils [patch]

2009-03-07 Thread Akira Kitada
Akira Kitada added the comment: The patch looks ok to me. Python 2.3 - 2.6 seem working fine with this patch, too. -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue3

[issue4459] bdist_rpm should enable --fix-python by default

2009-03-03 Thread Akira Kitada
Changes by Akira Kitada : -- title: bdist_rpm assumes python -> bdist_rpm should enable --fix-python by default ___ Python tracker <http://bugs.python.org/iss

[issue5235] distutils seems to only work with VC++ 2008 (9.0)

2009-03-01 Thread Akira Kitada
Changes by Akira Kitada : -- components: +Windows ___ Python tracker <http://bugs.python.org/issue5235> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4918] Windows installer created with Python 2.5 does not work with Python 2.6.1

2009-03-01 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek type: -> crash ___ Python tracker <http://bugs.python.org/issue4918> ___ __

[issue4480] bdist_msi and bdist_wininst are missing an uninstaller icon

2009-03-01 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek ___ Python tracker <http://bugs.python.org/issue4480> ___ ___ Python-bugs-lis

[issue1355826] shutil.move() does not preserve ownership

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : -- type: -> feature request versions: +Python 2.6, Python 2.7, Python 3.0, Python 3.1 -Python 2.4 ___ Python tracker <http://bugs.python.org/issue1

[issue4843] make distutils use shutil

2009-02-28 Thread Akira Kitada
Akira Kitada added the comment: 'ignore' was introduced in Python 2.6 but distutils has to keep Python 2.3 compatible. See: http://bugs.python.org/issue5052 So I guess you have to wait some more years before dropping distutils.dir_util and distutils.file_util. -- nosy

[issue4214] no extension debug info with msvc9compiler.py

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek ___ Python tracker <http://bugs.python.org/issue4214> ___ ___ Python-bugs-lis

[issue4459] bdist_rpm assumes python

2009-02-28 Thread Akira Kitada
Akira Kitada added the comment: There are two options for that in bdist_rpm. --python path to Python interpreter to hard-code in the .spec file (default: "python") --fix-python hard-code the exact path to the curr

[issue4010] configure options don't trickle down to distutils

2009-02-28 Thread Akira Kitada
Akira Kitada added the comment: Updated issue4010 to honor os.environ['CPPFLAGS']. Added file: http://bugs.python.org/file13212/issue4010.diff ___ Python tracker <http://bugs.python.

[issue4010] configure options don't trickle down to distutils

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : Removed file: http://bugs.python.org/file12954/issue4010.diff ___ Python tracker <http://bugs.python.org/issue4010> ___ ___ Python-bugs-list m

[issue2200] find_executable fails to find .bat files on win32

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek ___ Python tracker <http://bugs.python.org/issue2200> ___ ___ Python-bugs-lis

[issue2941] Propagate define to resurce mingw32 compile

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek type: -> compile error ___ Python tracker <http://bugs.python.org/

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2009-02-28 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek type: -> compile error ___ Python tracker <http://bugs.python.org/

[issue1294959] Problems with /usr/lib64 builds.

2009-02-28 Thread Akira Kitada
Akira Kitada added the comment: 3rd party C modules are put in site-packages, so just having importer of 64-bit python look at lib64-dynload is not enough for solving this. To work around this problem, I did some hacks on my local Python to look at lib and lib64. It worked, but just as

[issue5394] Distutils in trunk does not work with old Python (2.3 - 2.5)

2009-02-28 Thread Akira Kitada
New submission from Akira Kitada : As written in its README, "Distutils must remain compatible with 2.3", but it isn't. Attached patch fixes this. -- assignee: tarek components: Distutils files: python23_compat.diff keywords: patch messages: 82920 nosy: akitada, tarek s

[issue804543] invalid use of setlocale

2009-02-27 Thread Akira Kitada
Akira Kitada added the comment: If I'm not mistaken, this bug seems to be fre-introduced in "release30-maint/Modules/python.c". It could be fixed in just as it was before. -- components: +Interpreter Core -None nosy: +akitada type: -> behavior versions: +Python 2.6,

[issue919238] Recursive variable definition causes sysconfig infinite loop

2009-02-16 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> behavior versions: +Python 2.7, Python 3.1 -Python 2.3, Python 2.4, Python 2.5 ___ Python tracker <http://bugs.python.org/issue

[issue1887] distutils doesn't support out-of-source builds

2009-02-16 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Build nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1887> ___ ___ Python-bugs-lis

[issue1254718] GCC detection for runtime_library_dirs when ccache is used

2009-02-16 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1254718> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1682403] docutils clarification request for "rest"

2009-02-16 Thread Akira Kitada
Changes by Akira Kitada : -- type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.5, Python 2.6 ___ Python tracker <http://bugs.python.org/issue1

[issue1692592] Stripping debugging symbols from compiled C extensions

2009-02-16 Thread Akira Kitada
Changes by Akira Kitada : -- versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue1692592> ___ ___ Python-bugs-list mailin

[issue436259] [Windows] exec*/spawn* problem with spaces in args

2009-02-16 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek nosy: +tarek versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue

[issue1285] setp.py error "The process cannot access the file ..."

2009-02-16 Thread Akira Kitada
Changes by Akira Kitada : -- components: +Windows ___ Python tracker <http://bugs.python.org/issue1285> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1648890] HP-UX: ld -Wl,+b...

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> behavior versions: +Python 2.6, Python 2.7, Python 3.0, Python 3.1 -Python 2.5 ___ Python tracker <http://bugs.python.org/issue1

[issue969718] BASECFLAGS are not passed to module build line

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> behavior versions: +Python 2.6, Python 2.7, Python 3.0, Python 3.1 -Python 2.4 ___ Python tracker <http://bugs.python.org/issue

[issue1635363] Add command line help to windows unistall binary

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- assignee: -> tarek components: +Windows nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1635363> ___ ___ Python-

[issue1051216] make distutils.core.run_setup re-entrant

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker <http://bugs.python.org/issue1

[issue1028432] Specify a source baseurl for bdist_rpm.

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.3 ___ Python tracker <http://bugs.python.org/issue1

[issue1274324] 'setup.py install' fail on linux from read-only storage

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> behavior ___ Python tracker <http://bugs.python.org/issue1274324> ___ ___ Python-bugs-list mailing list Un

[issue1289136] distutils extension library path bug on cygwin

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> behavior ___ Python tracker <http://bugs.python.org/issue1289136> ___ ___ Python-bugs-list mailing list Un

[issue957381] bdist_rpm fails on redhat9, fc1, fc2

2009-02-10 Thread Akira Kitada
Akira Kitada added the comment: Is this problem already closed? -- nosy: +akitada, tarek ___ Python tracker <http://bugs.python.org/issue957381> ___ ___ Pytho

[issue1382562] --install-base not honored on win32

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> behavior versions: +Python 2.6, Python 2.7, Python 3.0, Python 3.1 -Python 2.4 ___ Python tracker <http://bugs.python.org/issue1

[issue644744] bdist_rpm fails when installing man pages

2009-02-10 Thread Akira Kitada
Akira Kitada added the comment: Duplicate of issue1169193 -- nosy: +akitada, tarek ___ Python tracker <http://bugs.python.org/issue644744> ___ ___ Python-bug

[issue1169193] Handle ungzipped man pages in rpm builds correctly

2009-02-10 Thread Akira Kitada
Akira Kitada added the comment: Duplicate of issue644744 -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue1169193> ___ ___ Python-bugs-list m

[issue809846] distutils/bdistwin32 doesn't clean up RO files properly

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek ___ Python tracker <http://bugs.python.org/issue809846> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1169193] Handle ungzipped man pages in rpm builds correctly

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> behavior versions: +Python 2.6, Python 2.7, Python 3.0, Python 3.1 -Python 2.3 ___ Python tracker <http://bugs.python.org/issue1

[issue1035576] Add New RPM-friendly record option to setup.py

2009-02-10 Thread Akira Kitada
Akira Kitada added the comment: duplicate of issue755286 -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue1035576> ___ ___ Python-bugs-list m

[issue755286] Generate rpm filelist including directories

2009-02-10 Thread Akira Kitada
Akira Kitada added the comment: Duplicate of issue1035576 -- nosy: +akitada, tarek ___ Python tracker <http://bugs.python.org/issue755286> ___ ___ Python-bug

[issue818201] distutils: clean -b ignored; set_undefined_options doesn't

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek ___ Python tracker <http://bugs.python.org/issue818201> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1035576] Add New RPM-friendly record option to setup.py

2009-02-10 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1035576> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1589266] bdist_sunpkg distutils command

2009-02-09 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.3 ___ Python tracker <http://bugs.python.org/issue1

[issue1222585] C++ compilation support for distutils

2009-02-09 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1222585> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1083299] Distutils doesn't pick up all the files it should.

2009-02-09 Thread Akira Kitada
Akira Kitada added the comment: I don't think that's not depends keyword is used for. I assume explanation on issue5158 is the way that "depends" is supposed to be used. -- nosy: +akitada, tarek ___ Python tracker <

[issue1718574] build_clib --build-clib/--build-temp option bugs

2009-02-08 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1718574> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1004696] translate Windows cr-lf when installing scripts on Linux

2009-02-08 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek ___ Python tracker <http://bugs.python.org/issue1004696> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1016626] distutils support for swig is under par

2009-02-08 Thread Akira Kitada
Akira Kitada added the comment: Same with issue2624? -- nosy: +akitada, tarek ___ Python tracker <http://bugs.python.org/issue1016626> ___ ___ Python-bugs-list m

[issue828336] Allow set swig include dirs in setup.py

2009-02-08 Thread Akira Kitada
Akira Kitada added the comment: seems this is already fixed in issue1046644. -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue828336> ___ ___

[issue2624] swig support in distutils should use the build and temp dirs

2009-02-08 Thread Akira Kitada
Akira Kitada added the comment: Same with issue1016626? -- nosy: +akitada ___ Python tracker <http://bugs.python.org/issue2624> ___ ___ Python-bugs-list mailin

[issue1326113] Letting "build_ext --libraries" take more than one lib

2009-02-08 Thread Akira Kitada
Changes by Akira Kitada : -- nosy: +tarek type: -> feature request ___ Python tracker <http://bugs.python.org/issue1326113> ___ ___ Python-bugs-list mai

[issue1092365] Distutils needs a way *not* to install files

2009-02-08 Thread Akira Kitada
Akira Kitada added the comment: I don't understand the use case of that option. -- nosy: +akitada, tarek ___ Python tracker <http://bugs.python.org/issu

[issue1294032] Distutils writes keywords comma-separated

2009-02-08 Thread Akira Kitada
Akira Kitada added the comment: I think it still need to be clarified in PEP that Keywords field accept comma-or-space-separated values. ___ Python tracker <http://bugs.python.org/issue1294

[issue1294032] Distutils writes keywords comma-separated

2009-02-08 Thread Akira Kitada
Akira Kitada added the comment: s/PEP341/PEP345/? -- nosy: +akitada, tarek type: -> behavior ___ Python tracker <http://bugs.python.org/issue1294032> ___ _

  1   2   >