- 09 Tem, 2000 16 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
the standard for Python implementation.
-
Fred Drake yazdı
-
Barry Warsaw yazdı
`break's. This first missing break caused a memory leak when case 3 fell through case 2 in the following example: import os os.chmod('/missing', 0600)
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Make the indentation and brace placement internally consistent.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
legit warnings).
-
Fred Drake yazdı
-
Fred Drake yazdı
-
- 08 Tem, 2000 24 kayıt (commit)
-
-
Fred Drake yazdı
-
Fredrik Lundh yazdı
staring at the diffs before checking this one in. let me know asap if it breaks things on your platform. -- ANSI-fying (patch #100763 by Peter Schneider-Kamp, minus the indentation changes and minus the changes the broke the windows build)
-
Fredrik Lundh yazdı
(patch #100762 by Peter Schneider-Kamp, minus the indentation changes) -- added INT_PTR workaround to make it build under VC 5.0
-
Fredrik Lundh yazdı
bill's more complete solution.
-
Fredrik Lundh yazdı
- some more spacification...
-
Fredrik Lundh yazdı
- ansified, reindentified, spacified, nullified
-
Fredrik Lundh yazdı
Barry Scott). it appears to solve the problem on NT and 2000, but not on Windows 95. in other words, it's better than before, but not per- fect. I'll leave the patch open for now.
-
Fredrik Lundh yazdı
strings, instead of the default encoding. (see "minidom" thread for discussion, and also patch #100706)
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Use PyArg_ParseTuple() to get better error messages. Add docstrings all around.
-
Skip Montanaro yazdı
-
Andrew M. Kuchling yazdı
Fix some incorrect module names
-
Skip Montanaro yazdı
-
Fred Drake yazdı
Converted to PyArg_ParseTuple() with method names to get better error messages.
-
Fred Drake yazdı
-
Fred Drake yazdı
Convert to four-space indents.
-
Fred Drake yazdı
Clarify some of the details of readline-related configuration.
-
Fred Drake yazdı
Convert to using PyArg_ParseTuple() as appropriate to allow method names in error messages. Re-indent to four-space indentation.
-
Fred Drake yazdı
hackery (/**/), leaving only new-style preprocessor hackery (##).
-
Tim Peters yazdı
This was a convenient excuse to create the pyport.h file recently discussed! Please use new Py_ARITHMETIC_RIGHT_SHIFT when right-shifting a signed int and you *need* sign-extension. This is #define'd in pyport.h, keying off new config symbol SIGNED_RIGHT_SHIFT_ZERO_FILLS. If you're running on a platform that needs that symbol #define'd, the std tests never would have worked for you (in particular, at least test_long would have failed). The autoconfig stuff got added to Python after my Unix days, so I don't know how that works. Would someone please look into doing & testing an auto-config of the SIGNED_RIGHT_SHIFT_ZERO_FILLS symbol? It needs to be defined if & only if, e.g., (-1) >> 3 is not -1.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Tim Peters yazdı
contains 16 bits. Not true on Cray J90.
-