- 01 Oct, 2010 6 commits
-
-
R. David Murray authored
Bug report and fix by Thomas Guettler.
-
Brian Curtin authored
This fixes a regression noticed by bzr, introduced by issue #9324.
-
Alexander Belopolsky authored
before passing it to the system asctime. Patch by MunSic Jeong.
-
Hirokazu Yamamoto authored
-
Georg Brandl authored
-
R. David Murray authored
-
- 30 Sep, 2010 1 commit
-
-
Senthil Kumaran authored
-
- 29 Sep, 2010 22 commits
-
-
Brian Curtin authored
-
Mark Dickinson authored
Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's small enough to be converted to a float without overflow, log(n) is now computed as log(float(n)), and similarly for log10.
-
Mark Dickinson authored
-
Victor Stinner authored
-
Victor Stinner authored
And the codec name is normalized.
-
Victor Stinner authored
-
Victor Stinner authored
Redecode the filenames of: - all modules: __file__ and __path__ attributes - all code objects: co_filename attribute - sys.path - sys.meta_path - sys.executable - sys.path_importer_cache (keys) Keep weak references to all code objects until initfsencoding() is called, to be able to redecode co_filename attribute of all code objects.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added.
-
Brian Curtin authored
r85073 changed the importing in wintypes to not use *, so the previous usage here became even more incorrect.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Victor Stinner authored
* Convert unicode to wide character string before creating the PyCapsule object * Catch integer overflow * Avoid useless memset() * Prepare the support of surrogates
-
Victor Stinner authored
Allocate memory with PyMem_Alloc() instead of the PyBytes API. Prepare the surrogates support.
-
Victor Stinner authored
It simplifies the code and prepare the surrogates support.
-
Victor Stinner authored
Don't truncate path if it is too long anymore, and allocate fewer memory (but allocate it on the heap, not on the stack).
-
Victor Stinner authored
-
Victor Stinner authored
Use the same behaviour than Python 2.7.
-
Victor Stinner authored
lines variable was not set on IOError
-
R. David Murray authored
-
R. David Murray authored
Patch by Sandro Tosi.
-
- 28 Sep, 2010 11 commits
-
-
Antoine Pitrou authored
of the concrete objects layer, while the buffer protocol is part of the abstract objects layer.
-
Antoine Pitrou authored
instead.
-
Antoine Pitrou authored
-
R. David Murray authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
retry the select() loop instead of bailing out. This is because select() can incorrectly report a socket as ready for reading (for example, if it received some data with an invalid checksum).
-
Hirokazu Yamamoto authored
-
Hirokazu Yamamoto authored
-
Hirokazu Yamamoto authored
-
Hirokazu Yamamoto authored
-