[issue7817] Pythonw.exe fails to start

2010-01-30 Thread Dan
New submission from Dan <10equa...@gmail.com>: Pythonw.exe refuses to start on my Windows 7 x64 computer. I don't get any kind of error message (i.e. "pythonw.exe has stopped working"), it simply doesn't open. python.exe works fine. Attached is a Windows Debugge

[issue7817] Pythonw.exe fails to start

2010-01-30 Thread Dan
Dan <10equa...@gmail.com> added the comment: I forgot to mention that this is with a brand new install of Python 3.1.1, and a complete uninstall / reinstall did nothing. -- ___ Python tracker <http://bugs.python.org/

[issue7817] Pythonw.exe fails to start

2010-01-31 Thread Dan
Dan <10equa...@gmail.com> added the comment: Well now I feel really dumb. I was under the impression that pythonw.exe was a GUI version of python.exe, which I though was console-only since up until now I had only tried running it from the command prompt. Problem solved, thanks for you

[issue6541] SpooledTemporaryFile breakages

2010-03-17 Thread Dan
Changes by Dan : -- nosy: +danohuiginn ___ Python tracker <http://bugs.python.org/issue6541> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue4683] urllib2.HTTPDigestAuthHandler fails on third hostname?

2008-12-18 Thread Dan
Dan added the comment: Reasonable idea, Daniel, but changing self.retried makes no difference. What does solve Chris' problem (which I can reproduce, btw) is preventing the nonce_count from incrementing. i.e. comment out the line : self.nonce_count +=

[issue4683] urllib2.HTTPDigestAuthHandler fails on third hostname?

2008-12-18 Thread Dan
Dan added the comment: Actually, this does look more like an urllib2 bug. According to RFC 2617, the nonce count should represent the number of requests sent with a particular nonce. But we don't reset the nonce count when we start using a new nonce. That discrepancy in nonce counts caus

[issue33125] Windows 10 ARM64 platform support

2019-08-29 Thread Dan
Dan added the comment: Hi, I've just noticed this but a couple of months ago I managed to compile Python 2.7 on win32 ARM64 including the said ssl, tk, ctypes modules. You can download from here and test - https://mega.nz/#F!PclhDIRB!-yhBZ6UM7S596ijNU3dx0A You will need to install the

[issue33125] Windows 10 ARM64 platform support

2019-11-15 Thread Dan
Dan added the comment: Steve, the 2.7 build I've posted includes native tk, do you need the necessary patches? -- ___ Python tracker <https://bugs.python.org/is

[issue33125] Windows 10 ARM64 platform support

2019-11-19 Thread Dan
Dan added the comment: According to this - https://wiki.tcl-lang.org/page/Building+with+Visual+Studio+2017 the issue will be fixed in the next version (8.6.10). TLDR explanation: Tcl/Tk has variables with names that are now reserved keywords in VS2017, meaning that it can't be build

[issue41956] Regression in HTMLParser on malformed tags

2020-10-06 Thread Dan
New submission from Dan : The attached HTML document (pulled from a Samsung printer web interface) contains the following invalid HTML tag: (invalid because of ,="") In Python 3.x completely stops the HTML parser, preventing any further tags from being parsed. This does not happen

[issue35390] ctypes not possible to pass NULL c_void_p in structure by reference

2018-12-03 Thread Dan
New submission from Dan : I have a C struct typedef struct Effect { void* ptr; } Effect; where when I allocate the memory, the void* gets initialized to NULL, and pass back a pointer: Effect* get_effect(){ Effect* pEffect = malloc(sizeof(*pEffect)); pEffect->ptr = N

[issue35390] ctypes not possible to pass NULL c_void_p in structure by reference

2018-12-04 Thread Dan
Dan added the comment: Thank you both, that's really helpful. Yes, I agree eryksun, I was saying that pointers to c_double and other normal pointer objects work fine, but that if you change to void* and c_void_p in my example it doesn't work. The private field seems like a

[issue35390] ctypes not possible to pass NULL c_void_p in structure by reference

2018-12-05 Thread Dan
Change by Dan : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue35390> ___ ___ Python-bugs-list mailing list

[issue32223] distutils doesn't correctly read UTF-8 content from config files

2017-12-05 Thread Dan
New submission from Dan : On Windows, distutils doesn't correctly read UTF-8 content from config files (setup.cfg). Seems like the issue is located on the line reading the files via the ConfigParser; simply adding 'encoding="UTF-8"' as argument fixes the problem f

[issue32223] distutils doesn't correctly read UTF-8 content from config files

2017-12-05 Thread Dan
Change by Dan : Added file: https://bugs.python.org/file47320/setup.py ___ Python tracker <https://bugs.python.org/issue32223> ___ ___ Python-bugs-list mailing list Unsub

[issue32223] distutils doesn't correctly read UTF-8 content from config files

2017-12-05 Thread Dan
Dan added the comment: I've attached the files. Run using 'python setup.py sdist'. The resulting PKG-INFO will contain incorrect data: Summary: délivrance Author: Dan Tès The expected output is: Summary: délivrance

[issue32223] distutils doesn't correctly read UTF-8 content from config files

2017-12-05 Thread Dan
Change by Dan : Added file: https://bugs.python.org/file47319/setup.cfg ___ Python tracker <https://bugs.python.org/issue32223> ___ ___ Python-bugs-list mailing list Unsub

[issue4683] urllib2.HTTPDigestAuthHandler fails on third hostname?

2009-09-01 Thread Dan
Dan added the comment: Attaching a patch. I don't have a test to go with it, except for the one submitted with the bug report. -- keywords: +patch Added file: http://bugs.python.org/file14815/nonce_count.diff ___ Python tracker

[issue1662581] the re module can perform poorly: O(2**n) versus O(n**2)

2009-10-21 Thread Dan
Dan added the comment: Here's an easy way to trigger the poor performance. Tested with 2.5, 2.6, and 2.7: re.compile( '(\s+.*)*x' ).search( 'a ' * 30 ) -- nosy: +witten ___ Python tracker <http://

[issue12641] Remove -mno-cygwin from distutils

2013-02-23 Thread Dan
Dan added the comment: Guys, this looks really bad and inconveniences a lot of users. You install the latest MinGW and Distutils from their default location, try using them on **anything that requires compilation**, and get the cryptic gcc -mno-cygwin error (after having to edit the obscure

[issue12641] Remove -mno-cygwin from distutils

2013-02-26 Thread Dan
Dan added the comment: Nice partial work-around. I think it's quite clear that the decision makers for this bug have not been making rational decisions for a year and a half, so we can't really expect change. This being the open-source world, the only recourse is publicizing the is

[issue12641] Remove -mno-cygwin from distutils

2013-02-28 Thread Dan
Dan added the comment: That's bull, Eric. This is not about a corner case in cygwin. This is about mingw, which is the **main free software that builds executables on Windows**. You know, for when you don't want to require your users to install Visual Studio. Additionally, bo

[issue12641] Remove -mno-cygwin from distutils

2013-02-28 Thread Dan
Dan added the comment: There's an additional aspect. Even though I don't use Windows as a development platform, I care about being able to propose Python to clients as a cross-platform technology (instead of, say, Java). Having an essential piece of Python infrastructure fail mi

[issue23031] pdb crashes when jumping over "with" statement

2014-12-11 Thread Dan
New submission from Dan: -> print(1) (Pdb) jump 6 Segmentation fault -- components: Library (Lib) files: pdb_segfault.py messages: 232481 nosy: DSP priority: normal severity: normal status: open title: pdb crashes when jumping over "with" statement type: behavior version

[issue23031] pdb crashes when jumping over "with" statement

2014-12-11 Thread Dan
Dan added the comment: Sorry, it happens in: 2.7.3 |EPD 7.3-2 (64-bit)| (default, Apr 11 2012, 17:52:16) \n[GCC 4.1.2 20080704 (Red Hat 4.1.2-44)] Works as expected in 2.7.8 and 3.3.2 2.7.8 (default, Jun 30 2014, 16:03:49) [MSC v.1500 32 bit (Intel)] 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00

[issue23031] pdb crashes when jumping over "with" statement

2014-12-13 Thread Dan
Changes by Dan : -- resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/issue23031> ___ ___ Python-bugs-list

[issue23833] email.header.Header folding modifies headers that include semi-colons

2015-03-31 Thread Dan
New submission from Dan: When adding or replacing a header with email.header.Header, folding of long lines will add a space after any semi-colon encountered in the string. Setting maxlinelen to something longer than the string (no folding required), no spaces are added after semi-colons

[issue46350] re.sub, re.Match.expand, etc doesn't allow x, u, U, or N escapes in the template

2022-01-11 Thread Dan Snider
New submission from Dan Snider : The docs use the phrase "unknown escapes of ASCII letters are reserved for future use and treated as errors". That seems ambiguous enough to question why "\x", "\u", "\U", and "\N{}" escapes aren't expand

[issue46752] Introduce task groups to asyncio and change task cancellation semantics

2022-02-16 Thread Dan Halbert
Dan Halbert added the comment: For your TODO list (not sure how else to communicate this): I agree with the de-emphasis of gather(). I think adding another version of gather() that cancels all the remaining tasks if one fails would also be good, unless you think it is completely redundant

[issue46791] Allow os.remove to defer to rmdir

2022-02-18 Thread Dan Snider
New submission from Dan Snider : It appears sometime recently-ish that POSIX updated remove to the following: #include int remove(const char *path); If path does not name a directory, remove(path) shall be equivalent to  unlink(path). If path names a directory, remove(path) shall be

[issue46872] Odd handling of signal raised if an illegal syscall is attempted on Android

2022-02-27 Thread Dan Snider
New submission from Dan Snider : On Android, the following calls generate a SIGSYS signal that is neither blocked by pthread_sigmask(SIG_BLOCK, {SIGSYS}) nor ignored after its handler is set to SIG_IGN: (os.chroot(path)) os.setgid(rgid) os.setuid(ruid) (os.setegid(gid

[issue1103] Typo in dummy_threading documentation

2007-09-04 Thread Dan Thomasset
New submission from Dan Thomasset: I believe that "thread" be "threading" in the line "...imported when the thread module is not provided..."? >From http://docs.python.org/lib/module-dummythreading.html -- components: Documentation messages: 55645

[issue1103] Typo in dummy_threading documentation

2007-09-04 Thread Dan Thomasset
Dan Thomasset added the comment: Ahh, my mistake then. I misunderstood what was going on. Thanks, Dan On 9/4/07, Martin v. Löwis <[EMAIL PROTECTED]> wrote: > > > Martin v. Löwis added the comment: > > Why do you think so? The documentation is correct as it stands; > d

[issue1362] Simple mistake in http://docs.python.org/tut/node6.html

2007-10-29 Thread Dan M
New submission from Dan M: In section 4.6 it says: Writing the value None is normally suppressed by the interpreter if it would be the only value written. When it should say: Writing the value None is normally displayed by the interpreter if it would be the only value written. Or less wordy

[issue1362] Simple mistake in http://docs.python.org/tut/node6.html

2007-10-30 Thread Dan M
Dan M added the comment: Yes, it is normally suppressed. The problem is the condition when it is suppressed. The documentation states that it's suppressed when it's the only value to be written. It is suppressed when it's *not* the only value to be written. -or- (removing the

[issue4147] xml.dom.minidom toprettyxml: omit whitespace for text-only elements

2011-10-01 Thread Dan Kenigsberg
Dan Kenigsberg added the comment: Here's another take on fixing this bug, with an accompanying unit test. Personally, I'm monkey-patching xml.dom.minidom in order to avoid it, but please consider fixing it properly upstream. -- Added file: http://bugs.python.org/file232

[issue4147] xml.dom.minidom toprettyxml: omit whitespace for text-only elements

2011-10-02 Thread Dan Kenigsberg
Dan Kenigsberg added the comment: Oh dear. Thanks, Enzio, for pointing out that former patch is wrong. It is also quite naive, since the whole NATURE of toprettyprint() is to add whitespace to Text nodes. Tomas Lee's http://bugs.python.org/file11832/minidom-toprettyxml-01.patch ma

[issue4147] xml.dom.minidom toprettyxml: omit whitespace for text-only elements

2011-10-02 Thread Dan Kenigsberg
Dan Kenigsberg added the comment: btw, http://www.w3.org/TR/xml/#sec-white-space is a bit vague on how should a parser deal with whitespace, and seems to allow non-preservation of text nodes. Preserving "simple" text nodes is allowed, too, and is more polite to applications r

[issue6715] xz compressor support

2011-10-02 Thread Dan Stromberg
Dan Stromberg added the comment: On Sun, Oct 2, 2011 at 3:49 PM, Nadeem Vawda wrote: > > Nadeem Vawda added the comment: > > Thanks for investigating the Windows situation. > > > - liblzma can't be compiled by Visual Studio: too many C99 isms, mostly > > varia

[issue4147] xml.dom.minidom toprettyxml: omit whitespace for text-only elements

2011-11-15 Thread Dan Kenigsberg
Dan Kenigsberg added the comment: Technically, adjacent Text nodes are not illegal, but preserving this oddity in pretty-print is impossible. It is perfectly fine to pretty-print only the simple case of len()==1. -- ___ Python tracker <h

[issue1521950] shlex.split() does not tokenize like the shell

2011-11-24 Thread Dan Christian
Dan Christian added the comment: Of course, that's how it's used. That's all it can do right now. I was was splitting and combining commands (using ;, &&, and ||) and then running the resulting (mega) one liners over ssh. It still gets run by a shell, but I was specify

[issue1521950] shlex.split() does not tokenize like the shell

2011-11-25 Thread Dan Christian
Dan Christian added the comment: I've attached a diff to test_shlex.py and a script that I used to verify what the shells actually do. Both are relative to Python-3.2.2/Lib/test I'm completely ignoring the quotes issue for now. That should probably be an enhancement. I don't

[issue1521950] shlex.split() does not tokenize like the shell

2011-11-25 Thread Dan Christian
Dan Christian added the comment: I just realized that I left out a major case. The shell will also split (). I think this is now complete. If you do "man bash" and skip down to DEFINITONS it lists all the control characters. I've attached updated versions of ref_shlex.py and

[issue1521950] shlex.split() does not tokenize like the shell

2011-11-26 Thread Dan Christian
Dan Christian added the comment: On Sat, Nov 26, 2011 at 7:12 AM, Éric Araujo wrote: > Your script passes with dash, which is probably the most POSIX-compliant > shell we can find.  (bash has extensions, zsh/csh don’t use the POSIX shell > language, so I think the behavior of dash

[issue1521950] shlex.split() does not tokenize like the shell

2011-11-26 Thread Dan Christian
Dan Christian added the comment: > Sure :)  That’s why I suggest using dash for quick tests and rely on the work > of other people who did read the POSIX spec.  I’ll have to check it too > before committing a patch. The point of ref_shlex.py is that all shells act the same for com

[issue13647] Python SSL stack doesn't securely validate certificate (as client)

2011-12-23 Thread Dan Kaminsky
Dan Kaminsky added the comment: >> There is a new "match_hostname" that doesn't implement all the >> required, standard SSL/TLS Client security checks that should be done. >Indeed, as the name indicates, it just checks the hostname. >Please detail what the

[issue13647] Python SSL stack doesn't securely validate certificate (as client)

2011-12-23 Thread Dan Kaminsky
Dan Kaminsky added the comment: On Fri, Dec 23, 2011 at 4:14 AM, Antoine Pitrou wrote: > > Antoine Pitrou added the comment: > > > You need to check expiration date of the cert in question, and I > > suppose invocation date as well. > > You need to look at each of

[issue11449] tarfile tries to file_.tell() even when creating a new archive

2011-06-01 Thread Dan Stromberg
Dan Stromberg added the comment: Yes, I just needed to use 'w|' instead of 'w'. Thanks! -- resolution: -> works for me status: open -> closed ___ Python tracker <http

[issue10527] multiprocessing.Pipe problem: "handle out of range in select()"

2011-06-14 Thread Dan Kenigsberg
Dan Kenigsberg added the comment: I would rate this issue as a performance bug, not a mere feature request. If the python process has more than 1023 open file descriptors, multiprocessing.Pipe.poll() becomes unusable. This is a serious barrier to using multiprocessing in a complex server

[issue9253] argparse: optional subparsers

2011-07-01 Thread Dan Sully
Changes by Dan Sully : -- nosy: +dsully ___ Python tracker <http://bugs.python.org/issue9253> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1602133] non-framework python fails to define os.environ properly

2011-07-26 Thread Dan Colish
Dan Colish added the comment: I can also confirm this patch is required to build py2cairo on OSX with Python2.7.2 when --enable-framework is not used. -- nosy: +dcolish ___ Python tracker <http://bugs.python.org/issue1602

[issue1521950] shlex.split() does not tokenize like the shell

2010-09-03 Thread Dan Christian
Dan Christian added the comment: It's been a while since I looked at this.  I'm not really in a position to contribute code/tests right now; but I can comment. I don't think POSIX mode existed when I first reported this, but that's where it makes sense.  I think all PO

[issue4661] email.parser: impossible to read messages encoded in a different encoding

2010-09-23 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue4661> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9954] include sqlite3.exe in PythonXX/Scripts

2010-09-26 Thread Dan L
New submission from Dan L : since sqlite3 is included in the standard library, it would be useful to have access to the command line tool that's part of sqlite. Including the command-line binary for each respective OS in the respective Scripts or bin folder would allow python users to c

[issue9997] function named 'top' gets unexpected namespace/scope behaviour

2010-09-30 Thread Dan Uznanski
Changes by Dan Uznanski : -- nosy: +dan.uznanski ___ Python tracker <http://bugs.python.org/issue9997> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10369] tarfile requires an actual file on disc; a file-like object is insufficient

2010-11-08 Thread Dan Stromberg
New submission from Dan Stromberg : The tarfile module's gettarinfo callable insists on stat'ing the file in question, preventing one from dynamically generating file content by passing a file-like object for addfile's fileobj argument. I believe the attached patch fixes

[issue11449] tarfile tries to file_.tell() even when creating a new archive

2011-03-08 Thread Dan Stromberg
New submission from Dan Stromberg : The attached file demonstrates the problem in 2.5, 2.5, 2.7, 3.0, 3.1 and 3.2. In short, I believe when you're creating a new tar archive (say, to a pipe), there should be no need for a file_.tell() (which blows up when it's a pipe). I have a work

[issue6715] xz compressor support

2011-04-07 Thread Dan Stromberg
Dan Stromberg added the comment: I don't know that much about compression, but I wonder if a threadsafe compression module would enable parallel forms of compression? If yes, then multithreaded might be a big benefit, in light of multicore taking off. EG: http://www.compression.ca/p

[issue6715] xz compressor support

2011-05-15 Thread Dan Stromberg
Dan Stromberg added the comment: Interesting thing to consider: maybe it'd be better to add support for libarchive, which includes xz support among other things. http://code.google.com/p/libarchive/ -- ___ Python tracker <http://bugs.py

[issue10471] include documentation in python docs and under python -h for other commandline options

2010-11-20 Thread Dan L
New submission from Dan L : there are options such as 'python -tt -bb' that are undocumented at http://docs.python.org/using/cmdline and that don't show up when you type python -h. ( Doubling t and b turns tabs or bytes warnings into errors. ) I don't know if they sho

[issue6715] xz compressor support

2010-11-25 Thread Dan Stromberg
Dan Stromberg added the comment: While I realize Python extension modules are pretty much the norm in CPython, it'd be pretty cool if xz support could be written overtop of ctypes. ctypes seems to be emerging as the way of doing FFI across different python implementations. I&#x

[issue6715] xz compressor support

2010-11-25 Thread Dan Stromberg
Dan Stromberg added the comment: I agree that ctypes is a bit more brittle - both ctypes and c extension modules can yield segfaults, but at least the c extension module is likely to give an error or warning when you rebuild it. However, I'm getting the impression that: 1) In pypy,

[issue11166] No exit when daemon thread is running.

2011-02-09 Thread Dan Mahn
New submission from Dan Mahn : I have a python-based test script that creates a daemon thread. The foreground basically runs a loop of commands, while the daemon thread sends some UDP data on the network. To stop the script, I use Control-C. This is running under 64-bit Windows (Vista

[issue11166] No exit when daemon thread is running.

2011-02-18 Thread Dan Mahn
Dan Mahn added the comment: Seems to be fixed in RC3 -- ___ Python tracker <http://bugs.python.org/issue11166> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11247] e

2011-02-18 Thread Dan Mahn
Changes by Dan Mahn : -- nosy: dmahn priority: normal severity: normal status: open title: e ___ Python tracker <http://bugs.python.org/issue11247> ___ ___ Pytho

[issue11247] Error sending packets to multicast IPV4 address

2011-02-18 Thread Dan Mahn
New submission from Dan Mahn : Can't send UDP packet to multicast address. See traceback. s.sendto( bytearray, ("227.5.6.7", 6543)) socket.error: [Errno 10065] A socket operation was attempted to an unreachable host -- components: +None title: e -> Error

[issue11247] Error sending packets to multicast IPV4 address

2011-02-18 Thread Dan Mahn
Dan Mahn added the comment: This has occurred in RC3 -- ___ Python tracker <http://bugs.python.org/issue11247> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3374] Bisect upgrades: key/cmp/reverse, parameterized handedness

2008-07-16 Thread Dan Uznanski
New submission from Dan Uznanski <[EMAIL PROTECTED]>: Attached find a unified diff that upgrades the bisect module in two important ways: 1. bisect and friends now understand cmp, key, and reverse, the same way that list.sort does. 2. bisect and insort now have parameterized hand

[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

[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-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-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://

[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

[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

[issue7758] cPickle segfault on invalid data

2010-01-22 Thread Dan Helfman
New submission from Dan Helfman : The following code causes Python to segfault: >>> import cPickle >>> import cStringIO as io >>> cPickle.load( io.StringIO( '0' ) ) Note that if the string is changed from '0' to '1', then the crash

[issue7758] cPickle.load() segfault on invalid data

2010-01-22 Thread Dan Helfman
Changes by Dan Helfman : -- title: cPickle segfault on invalid data -> cPickle.load() segfault on invalid data ___ Python tracker <http://bugs.python.org/iss

[issue7803] setup hangs on disk space requirements

2010-01-29 Thread Dan Simmons
New submission from Dan Simmons : I tried to install windows binary and the setup hanged up on 'determining disk space requirements' I waited over two hours for this to finish, and the light blinked in a syncrinised pattern that led me to believe something was wrong. So I have since

[issue7803] setup hangs on disk space requirements

2010-01-29 Thread Dan Simmons
Dan Simmons added the comment: I think the beginers guide needs to be updated to let us know what type of download to use. x86-64 or binary. 64 bit works so is that the right one for me. I'm trying to get this graphics.py to work that came with a book. It stops working when I run a m

[issue7803] setup hangs on disk space requirements

2010-01-29 Thread Dan Simmons
Changes by Dan Simmons : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue7803> ___ ___ Python-bugs-list mailing list Unsubscri

[issue7803] setup hangs on disk space requirements

2010-01-29 Thread Dan Simmons
Dan Simmons added the comment: It seemed to work after I restarted it. It was stuck on the process of getting disk space requirements, the computer was processing something but the light on the console that tells you something is being processed was blinking once every second in a obvious

[issue5712] tkinter - askopenfilenames returns string instead of tuple in windows 2.6.1 release

2010-03-11 Thread Dan Halbert
Changes by Dan Halbert : -- nosy: +dhalbert ___ Python tracker <http://bugs.python.org/issue5712> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7885] test_distutils fails if Python built in separate directory

2010-03-31 Thread Dan Dever
Dan Dever added the comment: Adding version 2.6 This fails for me with 2.6.5 in the same way. -- nosy: +dedded versions: +Python 2.6 ___ Python tracker <http://bugs.python.org/issue7

[issue8349] os.environ.get returns incorrect data

2010-04-08 Thread Dan Brandow
New submission from Dan Brandow : I have a Windows 7 64 bit machine, which means it has a few different environment variables concerning the program files location: PROGRAMFILES=C:\Program Files (x86) ProgramFiles(x86)=C:\Program Files (x86) Note that both env variables have "(x86)"

[issue4147] xml.dom.minidom toprettyxml: omit whitespace for text-only elements

2010-04-25 Thread Dan Kenigsberg
Changes by Dan Kenigsberg : -- nosy: +danken ___ Python tracker <http://bugs.python.org/issue4147> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4908] Implement PEP 376

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue4908> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8312] Add post/pre hooks for distutils commands

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8312> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8324] add a distutils test command

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8324> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8255] step-by-step tutorial

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8255> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8254] write a configure command

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8254> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8252] add a metadata section in setup.cfg

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8252> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8250] Implement pkgutil APIs as described in PEP 376

2010-04-30 Thread Dan Buch
New submission from Dan Buch : is this a dupe of 4908? -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8250> ___ ___ Python-bugs-list mailin

[issue5302] Allow package_data globs match directories

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue5302> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8253] add a resource+files section in setup.cfg

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8253> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8357] Add a --show-installation-paths in the install command

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8357> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8591] update mkpkg to latest coding standards

2010-05-01 Thread Dan Buch
New submission from Dan Buch : On first glance, `distutils2.mkpkg` does not reflect the latest and greatest in Python coding standards. I'd like to take a stab at PEP-(7|8)'ing the whole thing, although I know there are other issues open to add features to the module, so I don

[issue8591] update mkpkg to latest coding standards

2010-05-01 Thread Dan Buch
Dan Buch added the comment: I probably shouldn't have dropped the PEP8 bomb so much as stated that I feel the module could use some updating. It's my (very much potentially wrong) understanding that `distutils2.mkpkg` isn't considered library code so much as the guts of a

[issue8604] Alias for distutils.file_util.write_file in e.g. shutils

2010-05-03 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8604> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8591] update mkpkg to latest coding standards

2010-05-06 Thread Dan Buch
Dan Buch added the comment: bump. Would it be more helpful if I were to submit a patch, too, or is doing so prior to guidance from the driver (Tarek) frowned upon? -- ___ Python tracker <http://bugs.python.org/issue8

[issue8638] Remove suggestion for name mangling from the tutorial

2010-05-06 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8638> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8653] urlparse.urlparse/urlsplit doc missing

2010-05-07 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker <http://bugs.python.org/issue8653> ___ ___ Python-bugs-list mailing list Unsubscribe:

  1   2   3   4   5   >