[issue9322] bdist_rpm ext_modules absolute source path fail

2010-07-21 Thread Dan OD
Dan OD added the comment: I'm still ironing out the crinkles, but this has been working for sdist build (/install) bdist_dumb unfortunately I don't have access to a Windows machine to test the other two. A non-silent warning/error would kee

[issue9322] bdist_rpm ext_modules absolute source path fail

2010-07-21 Thread Dan OD
New submission from Dan OD : Setting absolute paths for C source code files in setup.py breaks bdist_rpm ext_modules=[Extension('foo', [os.path.abspath('src/foo.c')])], results in bdist_rpm not including src/foo.c in the RPM, however ext_modules=[Extension('foo'

[issue9261] include higher (../../) dirs fails

2010-07-14 Thread Dan OD
Dan OD added the comment: Sorry for all the noise - this dynamic link thing seems to be fixed in 2.7 rendering this report 'closed' Dan -- status: open -> closed ___ Python tracker <http://bugs.pyth

[issue9261] include higher (../../) dirs fails

2010-07-14 Thread Dan OD
Dan OD added the comment: Thinking about this - maybe including dirs above ./ is bad as it's not obvious where they should live in the sdist. My alternative would be to create links to ../../this in ./ but then distutils creates links rather than hard copies in sdist - is this some

[issue9261] include higher (../../) dirs fails

2010-07-14 Thread Dan OD
New submission from Dan OD : MANIFEST.in example: recursive-include ../../this *.that fails to include files with "warning: no files found matching '*.that' under directory '../../this'" and also include ../../this *.that fails with "warning: no files

[issue3774] tkinter Menu.delete bug

2008-11-03 Thread Dan OD
Dan OD <[EMAIL PROTECTED]> added the comment: Sorry to drag this up again, but if no-one has any complaints it would be a huge help if gpolo's patch could be checked in. Thanks ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue4076] Cannot build non-framework tkinter Python on Mac OS X.5

2008-10-09 Thread Dan OD
Dan OD <[EMAIL PROTECTED]> added the comment: Confusion - apologies - please remove this report. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue4076] Cannot build non-framework tkinter Python on Mac OS X.5

2008-10-08 Thread Dan OD
New submission from Dan OD <[EMAIL PROTECTED]>: On a Mac running OS X 10.5: As per previous releases, I have set up _tkinter in Modules/Setup.dist with a unix X11 Tcl/Tk build variables. I then run ./configure && make This builds _tkinter with (wrongly) the Mac Tcl framewo

[issue3774] tkinter Menu.delete bug

2008-10-01 Thread Dan OD
Dan OD <[EMAIL PROTECTED]> added the comment: gpolo's patch issue3774_2.diff does seem to fix this bug, but it's not in the SVN trunk - could this be done before 2.6 final? Thanks! ___ Python tracker <[EMAIL PROTECTED]> <http://

[issue3774] tkinter Menu.delete bug

2008-09-16 Thread Dan OD
Dan OD <[EMAIL PROTECTED]> added the comment: It may be because I'm calling delete incorrectly (I don't think so - see below) but I'm getting an error File "C:\CCPN\ccpn\python\memops\gui\Menu.py", line 127, in deleteMenuItems self.delete(0, Tkinter.END

[issue3774] tkinter Menu.delete bug

2008-09-12 Thread Dan OD
Dan OD <[EMAIL PROTECTED]> added the comment: Thanks guys - I was running an old build. revision 65971 fixed this as Hirokazu mentioned. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3774] tkinter Menu.delete bug

2008-09-12 Thread Dan OD
Dan OD <[EMAIL PROTECTED]> added the comment: Please forgive my rookie bug filing: I'm getting this bug / crash sometimes when Menu.delete() is called too It seems to be because self.index( ) sometimes returns None which is of course un-iterable and delete() tries to iterate throu