- 29 Tem, 2011 5 kayıt (commit)
-
-
Éric Araujo yazdı
- Use shortcut dist.version instead of going through metadata; - Use %r throughout to display project names and paths.
-
Éric Araujo yazdı
-
Éric Araujo yazdı
This will help scripts calling pysetup know if a command failed. Printing/logging was also made more consistent, and a few things were cleaned up. In particular, the error/Ctrl-C handling was moved from the _run function up to the main function. The run action is not fixed yet; it returns the dist.Distribution instance, which is needed by test_uninstall and not trivial to fix.
-
Éric Araujo yazdı
“pysetup list” or “pysetup list --all” will continue to return 0 if no distribution is found (it’s not an error), but “pysetup list some.project” will now exit with 1 if no matching installed distribution is found. Based on a patch by Kelsey Hightower.
-
Éric Araujo yazdı
-
- 28 Tem, 2011 9 kayıt (commit)
-
-
Éric Araujo yazdı
The tests don’t use an internal distutils function anymore, and use regular assertEqual with sorted lists instead of a convoluted manual diff.
-
Éric Araujo yazdı
-
Éric Araujo yazdı
-
Éric Araujo yazdı
-
Éric Araujo yazdı
Also remove an extra docstring.
-
Éric Araujo yazdı
-
Éric Araujo yazdı
Adding Sandro Tosi to Doc/ACKS for this patch and all his work on the docs mailing list and on the bug tracker.
-
Éric Araujo yazdı
R. David Murray and I think that it’s more useful to have these files show up in the output of “hg status”, to let the user know that some merged file have to be checked before commit. If you want to ignore these files in your clones, it’s possible to do so from another ignore file; see the bug report for directions. I’m leaving the .gitignore file alone, as I don’t know how git users work with merges and conflicts.
-
Éric Araujo yazdı
-
- 27 Tem, 2011 12 kayıt (commit)
-
-
Éric Araujo yazdı
The public names (Thread, Condition, etc.) used to be factory functions returning instances of hidden classes (_Thread, _Condition, etc.), because (if Guido recalls correctly) this code pre-dates the ability to subclass extension types. It is now possible to inherit from Thread and other classes, without having to import the private underscored names like multiprocessing did. A doc update will follow: a patch is under discussion on the issue.
-
Éric Araujo yazdı
This function used to live as pipes.quote, where it was undocumented but used anyway. (An alias still exists for backward compatibility.) The tests have been moved as is, but the code of the function was changed to use a regex instead of a loop with string comparisons (at Ian Bicking’s suggestion). I’m terrible at regexes, so any feedback is welcome.
-
Senthil Kumaran yazdı
merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject.
-
Senthil Kumaran yazdı
-
Ross Lagerwall yazdı
-
Ross Lagerwall yazdı
given as a low fd, it gets overwritten.
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Ned Deily yazdı
when opening a long file. With Tk 8.5, the first line was hidden.
-
Ned Deily yazdı
when opening a long file. With Tk 8.5, the first line was hidden.
-
Senthil Kumaran yazdı
merge from 3.2 - Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or obsfuscates) Connection: Close header.
-
Senthil Kumaran yazdı
Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or obsfuscates) Connection: Close header.
-
- 26 Tem, 2011 14 kayıt (commit)
-
-
Antoine Pitrou yazdı
(I had the wrong impression that the problem didn't exist here)
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
Ned Deily yazdı
link file name.
-
Ned Deily yazdı
link file name.
-
Éric Araujo yazdı
I moved the NEWS entry for the reindent fix to the right release section.
-
Éric Araujo yazdı
-
Jason R. Coombs yazdı
Issue #10639: reindent.py tool now accepts a --newline option to specify the newline to be used in the output of converted files.
-
Jason R. Coombs yazdı
reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered.
-
Éric Araujo yazdı
-
Éric Araujo yazdı
I would have put io and ctypes fixes into Extension Modules, but I respected the choice of Antoine or Victor and left them in Library.
-