- 12 May, 2008 25 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
which clears them at the end.
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Eric Smith yazdı
-
Ronald Oussoren yazdı
This patch removes the dependency on the Carbon package from urllib. The mac-specific code for getting proxy configuration is now writting in Python using ctypes and uses the SystemConfiguration framework instead of InternetConfig. Also provides a mac-specific implementation of proxy_bypass.
-
Ronald Oussoren yazdı
The 'mac' platform (that is, os.name == 'mac') was used for the MacOS 9 port, which is no longer supported (as of Python 2.4 IIRC).
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Alexandre Vassalotti yazdı
was renamed.
-
Alexandre Vassalotti yazdı
Renamed socketserver module in its own documentation. Renamed documentation references.
-
Alexandre Vassalotti yazdı
Deprecated old name.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Brett Cannon yazdı
-
- 11 May, 2008 15 kayıt (commit)
-
-
Brett Cannon yazdı
-
Alexandre Vassalotti yazdı
-
Alexandre Vassalotti yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
``Completer.complete()`` method are now caught and ignored.
-
Georg Brandl yazdı
-
Alexandre Vassalotti yazdı
Modified TestStdlibRenames to support platform specific renames. Added test for PixMapWrapper rename warning. Added note to documentation about PixMapWrapper rename.
-
Andrew M. Kuchling yazdı
-
Alexandre Vassalotti yazdı
Added note to documentation about Queue rename.
-
Eric Smith yazdı
Adds 'n' as a format specifier for integers, to mirror the same specifier which is already available for floats. 'n' is the same as 'd', but inserts the current locale-specific thousands grouping. I added this as a stringlib function, but it's only used by str type, not unicode. This is because of an implementation detail in unicode.format(), which does its own str->unicode conversion. But the unicode version will be needed in 3.0, and it may be needed by other code eventually in 2.6 (maybe decimal?), so I left it as a stringlib implementation. As long as the unicode version isn't instantiated, there's no overhead for this.
-
Alexandre Vassalotti yazdı
Use the 3.0 module name to avoid spurious warnings.
-
Andrew M. Kuchling yazdı
-