[issue1725] -1e-1000 converted incorrectly

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: On Windows -1E-1000 returns 0.0, too. We may need to fix it in your own code and set the sign bit ourself. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1725

[issue1567] Patch for new API method _PyImport_ImportModuleNoLock(char *name)

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: The patch does't replace all PyImport_ImportModule() calls with the new function. It replaces only the calls which may occure more than once and have a fixed name like time. I've renamed the function to PyImport_ImportModuleNoBlock(). It should explain

[issue1567] Patch for new API method _PyImport_ImportModuleNoLock(char *name)

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: Removed file: http://bugs.python.org/file/import_nolock.diff __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1567 __ ___ Python-bugs-list

[issue1640] Enhancements for mathmodule

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: Guido van Rossum added the comment: One nit: you added a blank line to the end of test_math.py. This will cause the checkin to fail. :-) *grr* stupid white space check hook One bigger issue: the sign() function doesn't seem

[issue1640] Enhancements for mathmodule

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: Hm, OK, but then passing a zero of some other type (e.g. int) should also return +1 as the sign. I also think the function's name should be changed, because I (and I assume many others) have grown up with a sign() function

[issue1640] Enhancements for mathmodule

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: Good idea. Since you seem to like providing patches, can you create one for math.copysign()? Don't forget it's copysign() on Unix but _copysign() on Windows. #if defined(MS_WINDOWS) || defined(HAVE_COPYSIGN) #ifdef MS_WINDOWS FUNC2

[issue1640] Enhancements for mathmodule

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: Well, the Python API in the math module should always be called copysign(). :-) And what to do if neither is present? Are there any systems without it? takes care of it. It's a macro to define a function which accepts two floats

[issue1567] Patch for new API method _PyImport_ImportModuleNoLock(char *name)

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Guido van Rossum wrote: The only thing that really worries me here is the possibility of relative import. I'm thinking that relative import is really never meant to be when called from C, so perhaps it would be sufficient to modify the call to __import__

[issue1730] Documentation corrections for os module

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- assignee: - georg.brandl keywords: +patch nosy: +georg.brandl priority: - low __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1730

[issue1728] distutils.cmd breaks inspect

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: The issue is probably related to http://bugs.python.org/issue1665 -- nosy: +tiran __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1728

[issue1727] VC6 build patch for python3000

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +patch, py3k priority: - low __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1727 __ ___ Python-bugs-list mailing list

[issue1591] popen2.Popen3 class (Unix) documentation misleading / confusing

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- priority: - low versions: +Python 2.6 -Python 2.1.1, Python 2.1.2, Python 2.2, Python 2.2.1, Python 2.2.2, Python 2.2.3, Python 2.3, Python 2.4 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1591

[issue761863] readline module that checks signals

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: In Python 2.6 the readline module does check for signals. -- nosy: +tiran resolution: - out of date status: open - closed Tracker [EMAIL PROTECTED] http://bugs.python.org/issue761863

[issue906405] Build fails on XP w/mingw

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: The bug report is old and I haven't heard from problems with mingw recently. Please open a new bug report if it still fails for 2.5 and newer. -- nosy: +tiran resolution: - out of date status: open - closed

[issue681515] smtpd.py move setuid, allow dashes

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: The patch is outdated, about 5 years old and not in unified diff format. Please create a new patch if you are still interested in the feature. -- nosy: +tiran resolution: - out of date status: open - closed

[issue891930] configure argument --libdir is ignored

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: The Python configure and make system could use a general overhaul but simply replacing lib/ with lib64/ isn't the right way. The topic should be discussed on python-dev and maybe PEPed, too. -- nosy: +tiran resolution: - invalid status: open - closed

[issue1235] CGIHTTPRequestHandler.run_cgi() does not run on Windows if sys.executable contains blanks

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: The quoting issue on Windows can easily be fixed by using subprocess instead of popen() -- nosy: +tiran priority: - low versions: +Python 2.5, Python 2.6, Python 3.0 -Python 2.3 __ Tracker [EMAIL PROTECTED] http

[issue1279] os.system() oddity under Windows XP SP2

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: It might happen when the program hasn't terminated yet. You have to make sure the program has terminated before you read the file. Subprocess and its wait() should help. -- nosy: +tiran resolution: - wont fix status: open - closed

[issue896330] pyconfig.h is not placed in --includedir

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: I'm able to reproduce the bug with 2.6 -- nosy: +tiran priority: normal - low severity: normal - minor versions: +Python 2.6, Python 3.0 -Python 2.2 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue896330

[issue1243] option.dest not set when callback called with optparse

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- priority: - normal versions: -Python 2.3, Python 2.4 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1243 __ ___ Python-bugs-list

[issue1687] plistlib.py restricts integer to Python int when writing

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Fixed in trunk r59688 Should it be backported to 2.5? -- nosy: +tiran resolution: - fixed status: open - pending versions: +Python 2.6, Python 3.0 -Python 2.3, Python 2.4 __ Tracker [EMAIL PROTECTED] http

[issue815646] thread unsafe file objects cause crash

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue815646 ___ Python-bugs-list mailing list Unsubscribe

[issue775964] fix test_grp failing on RedHat 6.2

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +patch versions: +Python 2.5 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue775964 ___ Python-bugs-list

[issue683658] PyErr_Warn may cause import deadlock

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Is this still an issue for 2.5? If Python 2.5 may still dead lock then somebody should back port my PyImport_ImportModuleNoBlock() function. -- nosy: +tiran priority: normal - high versions: +Python 2.5 -Python 2.3

[issue731991] find correct socklen_t type

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Martin, should the patch be ported and applied in 2.5 and 2.6? -- assignee: - loewis nosy: +tiran versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue731991

[issue770280] PyMarshal_ReadLastObjectFromFile

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Is the patch still interesting for Python 2.6? -- nosy: +tiran resolution: - remind status: open - pending versions: +Python 2.6 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue770280

[issue774751] slow socket binding netinfo lookups

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Skip, I'm going over ancient bug reports. Has the problem been fixed? -- assignee: - skip.montanaro nosy: +tiran versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org

[issue813453] restrictions in _tkinter built with threaded tk undocumented

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Tkinter versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue813453

[issue1481296] long(float('nan'))!=0L

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Fixed in r59689 trunk Backport it to 2.5? -- nosy: +tiran resolution: - fixed status: open - pending versions: +Python 2.5 -Python 2.3 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1481296

[issue945861] dir(object) does not list __name__

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: __name__ comes from object's meta class type just as other attributes like __bases__. It's a bit surprising at first. -- nosy: +tiran resolution: - wont fix status: open - closed Tracker [EMAIL PROTECTED] http

[issue1081879] Pydoc can't find browser (bug+solution!)

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- priority: normal - low versions: +Python 2.5, Python 2.6 -Python 2.3 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1081879

[issue614555] Rewrite _reduce and _reconstructor in C

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue614555 ___ Python-bugs-list mailing

[issue1234] semaphore errors on AIX 5.2

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: -Python 2.3, Python 2.4 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1234 __ ___ Python-bugs-list mailing list Unsubscribe

[issue774751] slow socket binding netinfo lookups

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Closed as requested. Side note: I don't recall having the bug during my Zope and Plone development time on Mac OS X 10.3 (PPC). -- resolution: postponed - out of date status: open - closed Tracker [EMAIL

[issue779218] 2.3c2 test_pwd fails on Mac OS X 10.2.6

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- resolution: - duplicate status: open - closed superseder: - fix test_grp failing on RedHat 6.2 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue779218

[issue828743] bdist_rpm failure when no setup.py

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- priority: normal - low type: - rfe versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue828743

[issue730473] Add Py_AtInit() startup hook for extenders

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Where is the new patch? :) -- nosy: +tiran type: - rfe versions: +Python 2.6 -Python 2.3 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue730473

[issue837577] cryptic os.spawnvpe() return code

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Neal? -- nosy: +tiran priority: normal - low severity: normal - minor title: cryptic os.spawnvpe() return code - cryptic os.spawnvpe() return code type: - rfe versions: +Python 2.6 -Python 2.3 Tracker [EMAIL

[issue1005895] curses for win32

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Windows versions: +Python 2.6 -Python 2.3 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1005895 _ ___ Python-bugs

[issue1548687] C modules reloaded on certain failed imports

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5 -Python 2.3 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1548687 _ ___ Python-bugs-list mailing list

[issue1433886] pointer aliasing causes core dump, with workaround

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Should we fix the general issue in Python 3.0 now that Python 3.0 is fast apace? CAN we fix it? -- nosy: +tiran versions: +Python 3.0 -Python 2.3 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1433886

[issue1732] Doc build fails with a KeyError

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: You have to update the tools with make update. I had some issues with the update so I removed the tools directory followed by svn up and make update. -- nosy: +tiran resolution: - invalid status: open - closed

[issue953599] asyncore misses socket closes when poll is used

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue953599 ___ Python-bugs-list mailing list Unsubscribe: http

[issue1598083] Top-level exception handler writes to stdout unsafely

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1598083 _ ___ Python-bugs-list mailing list Unsubscribe

[issue932563] logging: need a way to discard Logger objects

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue932563 ___ Python-bugs-list mailing list Unsubscribe: http

[issue1193610] Expat Parser to supply document locator in incremental parse

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5, Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1193610 _ ___ Python-bugs-list mailing list

[issue1733] Maybe PC/VS7.1/pythoncore.vcproj is missing Modules/md5module.c

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Fixed in r59708 Thanks again! I don't have VC 6 and VS 7.1 on my machine to test the build directories and your fixes. I hope they are fine. It looks ok :) -- nosy: +tiran resolution: - fixed status: open - closed

[issue1713] posixpath.ismount() claims symlink to a mountpoint is a mountpoint.

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Fixed in r59709 (trunk) and r59710 (2.5) -- resolution: accepted - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1713

[issue1727] VC6 build patch for python3000

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: I've applied a fraction of your patch in r59711 but the part for PC/VS6 didn't apply. It may be a newline problem. Can you send me the files in a zip or tar archive, please? -- nosy: +tiran __ Tracker [EMAIL PROTECTED

[issue1735] tarfile.TarFile.extractall not setting directory permissions correctly

2008-01-04 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +patch priority: - high versions: +Python 3.0 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1735 __ ___ Python-bugs-list

[issue1687] plistlib.py restricts integer to Python int when writing

2008-01-04 Thread Christian Heimes
Changes by Christian Heimes: -- priority: - normal resolution: fixed - remind versions: -Python 2.6, Python 3.0 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1687

[issue1567] Patch for new API method _PyImport_ImportModuleNoLock(char *name)

2008-01-04 Thread Christian Heimes
Changes by Christian Heimes: -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1567 __ ___ Python-bugs-list mailing list

[issue1527] Problem with static libs on Windows

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Already fixed in svn -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1527 __ ___ Python

[issue889544] win32 raw socket support

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: I've implemented the WSAIoctl wrapper myself and added a working example for a network sniffer. IPPROTO_RAW is wrong, it must be IPPROTO_IP. -- nosy: +tiran resolution: - fixed status: open - closed Tracker

[issue1736] Three bugs of FCICreate (PC/_msi.c)

2008-01-04 Thread Christian Heimes
Changes by Christian Heimes: -- assignee: - loewis components: +Windows keywords: +patch, py3k nosy: +loewis priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1736

[issue846388] Check for signals during regular expression matches

2008-01-04 Thread Christian Heimes
Changes by Christian Heimes: -- type: - rfe versions: +Python 2.5, Python 2.6 -Python 2.4 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue846388 ___ Python-bugs

[issue1737] Windows installer issue (ObjectBrowser.py)

2008-01-04 Thread Christian Heimes
Changes by Christian Heimes: -- assignee: - loewis nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1737 __ ___ Python-bugs-list mailing list Unsubscribe

[issue1727] VC6 build patch for python3000

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Committed in 59720 Thanks Hiro! I still wonder why you are still using VS6 :) -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1727

[issue1089358] need siginterrupt() on Linux - impossible to do timeouts

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Next time please give the patch a more meaningful name than patch :) -- components: +Interpreter Core keywords: +patch nosy: +tiran versions: +Python 2.5, Python 2.6 _ Tracker [EMAIL PROTECTED] http

[issue482531] python directory not added to PATH

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: This bug is about 6 years old. Please discuss the matter on the python dev mailing list if you are still interested in the problem. -- nosy: +tiran resolution: - wont fix status: open - closed Tracker [EMAIL

[issue490264] Portable compiler option specification

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: This bug is about 6 years old. Please discuss the matter on the python dev mailing list if you are still interested in the problem and come up with a patch. -- nosy: +tiran resolution: - out of date status: open - closed

[issue734115] Packaging without disturbing an existing installation

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: This patch should be considered for Python 2.6 and newer. -- keywords: +patch nosy: +tiran priority: normal - low versions: +Python 2.6, Python 3.0 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue734115

[issue699594] refcount problem involving debugger

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: The bug report is about 5 years old and probably outdated. Please open a new one if you see the bug again. -- nosy: +tiran resolution: - out of date status: open - closed Tracker [EMAIL PROTECTED] http

[issue706392] faster _socket.connect variant desired

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Consider and discuss the patch for Python 2.6 or close it. -- keywords: +patch nosy: +tiran priority: normal - low versions: +Python 2.6, Python 3.0 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue706392

[issue1009929] PyErr_Clear() vs. AsynchronousException

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: The problem was solved with the new BaseException class -- nosy: +tiran resolution: - fixed status: open - closed _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1009929

[issue990749] os constants missing

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: The docs claim are wrong. -- nosy: +tiran resolution: - fixed status: open - closed Tracker [EMAIL PROTECTED] http://bugs.python.org/issue990749

[issue812369] module shutdown procedure based on GC

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Consider this patch for 2.6 and discuss it at the bug day. -- nosy: +tiran versions: +Python 2.6, Python 3.0 -Python 2.4 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue812369

[issue813922] Zero Configuration Networking?

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: I agree with Jack! Please work on an extension package and provide patches if you need extra socket code in the core. -- nosy: +tiran resolution: - out of date status: open - closed Tracker [EMAIL PROTECTED] http

[issue618593] Windows binary missing IPv6 support

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Python 2.5 and newer support IPv6 on Windows. -- nosy: +tiran resolution: - fixed status: open - closed Tracker [EMAIL PROTECTED] http://bugs.python.org/issue618593

[issue452144] How to install some stuff to /usr/sbin

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: The feature request is several years old. Please create a new request with a working patch if you still want to get the feature into Python 2.6+ -- nosy: +tiran resolution: - out of date status: open - closed

[issue842171] Digital Unix build fails to create ccpython.o

2008-01-04 Thread Christian Heimes
Christian Heimes added the comment: Digital Unix is no longer officially supported. If somebody needs Python on the system please open a new bug and provide some patches. -- nosy: +tiran resolution: - out of date status: open - closed Tracker

[issue759525] inspect.getmembers broken (?)

2008-01-04 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Documentation versions: +Python 2.5, Python 2.6, Python 3.0 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue759525

[issue616247] More documentation for the imp module

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- priority: normal - low versions: +Python 2.6, Python 3.0 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue616247 ___ Python-bugs

[issue577295] Print line number of string if at EOF

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: The bug report is several years old and nobody was interested in adding this minor feature in about 5 years. -- nosy: +tiran resolution: - out of date status: open - closed Tracker [EMAIL PROTECTED] http

[issue750423] event handling support

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: The topic must be discussed on python-de and planed with PEP as already explained by Jeff. -- nosy: +tiran resolution: - invalid status: open - closed Tracker [EMAIL PROTECTED] http://bugs.python.org/issue750423

[issue793069] Add --remove-source option

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Should the feature be added in 2.6? I'm -0 on it. -- keywords: +patch nosy: +tiran versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue793069

[issue452973] Tcl event loop callback woes

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: The bug report is several years old and probably outdated. Please create a new issue if you are still interested in the problem. -- nosy: +tiran resolution: - out of date status: open - closed Tracker [EMAIL

[issue979658] Improve HTML documentation of a directory

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: What do you think about the feature, Georg? -- assignee: ping - georg.brandl nosy: +georg.brandl, tiran type: - rfe versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue979658

[issue1053369] ftplib: add support for MDTM command

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- priority: normal - low type: - rfe versions: +Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1053369 _ ___ Python

[issue1018492] Solaris: reentrancy issues

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Check this for 2.6 or close it. -- nosy: +tiran versions: +Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1018492

[issue828450] sdist generates bad MANIFEST on Windows

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Windows versions: +Python 2.5, Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue828450 ___ Python-bugs-list

[issue648658] xmlrpc can't do proxied HTTP

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue648658 ___ Python-bugs-list mailing list Unsubscribe: http

[issue1052098] Seting defaultencoding through an environment variable

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- status: open - closed _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1052098 _ ___ Python-bugs-list mailing list Unsubscribe

[issue960325] require feature configure option

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Build -None priority: normal - low versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue960325

[issue481171] Hang using files named prn.txt, etc

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Let's discuss it for 2.6 -- components: +Interpreter Core, Windows -None nosy: +tiran versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue481171

[issue617979] need easy way of decoding a literal

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Closed as requested by the OP four years ago. -- nosy: +tiran resolution: - wont fix status: open - closed Tracker [EMAIL PROTECTED] http://bugs.python.org/issue617979

[issue900949] plat-mac/videoreader.py not working on OS X

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5, Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue900949 ___ Python-bugs-list mailing list

[issue626452] Support RFC 2111 in email package

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Does the email sig group still work on the topic? -- nosy: +tiran versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue626452

[issue787113] zipimport on meta_path fails with mutual importers

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Documentation, Library (Lib) -None versions: +Python 2.5, Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue787113

[issue883969] distutils doesn't see user-directories set via VisStudio 7.1

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Python uses VS 2008 now -- nosy: +tiran resolution: - out of date status: open - closed Tracker [EMAIL PROTECTED] http://bugs.python.org/issue883969

[issue694339] Dedenting with Shift+Tab

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- priority: normal - low versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue694339 ___ Python-bugs-list mailing

[issue602245] os.popen() negative error code IOError

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5, Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue602245 ___ Python-bugs-list mailing list

[issue963845] There ought to be a way to uninstall

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Maintainers of RPM, deb or ports have already a way to detect files. distutils doesn't aim to be a full package manager. It's a tool to make the installation of Python software easier. Please work the the distutils team and create an uninstaller if you

[issue691291] codecs.open(filename, 'U', 'UTF-16') corrupts text

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Checks this for 2.6 -- components: +Library (Lib) -None nosy: +tiran versions: +Python 2.6 Tracker [EMAIL PROTECTED] http://bugs.python.org/issue691291

[issue964949] Ctrl-C causes odd behaviour

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- resolution: - duplicate status: open - closed superseder: - Ctrl-C will exit out of Python interpreter in Windows Tracker [EMAIL PROTECTED] http://bugs.python.org/issue964949

[issue1166378] No os.spawn*p* on Windows

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: The subprocess is the successor of the various exec, popen and spawn functions. -- nosy: +tiran resolution: - out of date status: open - closed _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1166378

[issue1173134] improvement of the script adaptation for the win32 platform

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- priority: normal - low type: - rfe versions: +Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1173134 _ ___ Python

[issue1222585] C++ compilation support for distutils

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: Isn't it already fixed? Need to check it at the upcoming bug day. -- nosy: +tiran versions: +Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1222585

[issue1145231] No os.statvfs on FreeBSD

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: My FreeBSD 6.2 machine has os.statvfs. -- nosy: +tiran resolution: - works for me status: open - closed _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1145231

[issue1203650] Allow larger programs to be frozen under Win32

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: The command line argument size is limited on Windows. One has to use a file instead of an argument list if the list exceeds a limit. IIRC the limit is rather low ( 1024 or even 512). -- components: +Windows nosy: +tiran priority: normal - low type

<    2   3   4   5   6   7   8   9   10   11   >