- 17 Tem, 2003 18 kayıt (commit)
-
-
Jeremy Hylton yazdı
I don't think the fix here is very good, but I'm not sure what would be better. In particular, we should not be defining _SGIAPI, but lots of things break if we remove it.
-
Skip Montanaro yazdı
-
Jeremy Hylton yazdı
-
Michael W. Hudson yazdı
PyOS_InputHook and PyOS_ReadlineFunctionPointer). The inaccuracies were causing problems in framework builds on Mac OS X.
-
Fred Drake yazdı
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
building a fair portion of the documentation as info.
-
Fred Drake yazdı
documented here, and according to Tim, should never have been there - misc. cleanups for consistency
-
Just van Rossum yazdı
-
Tim Peters yazdı
-
Raymond Hettinger yazdı
-
Jeremy Hylton yazdı
I tested against VC 7.0 and it caused no problems there.
-
Fred Drake yazdı
- add a convenience target to create the package list directly
-
Fred Drake yazdı
- convert tabs to spaces
-
Fred Drake yazdı
-
Fred Drake yazdı
objects get made - improve the description of attribute retrieval from classes and class instances - add brief documentation of static method and class method objects.
-
Fred Drake yazdı
SF patch #764594.
-
Fred Drake yazdı
paper-size hook. SF patch #772550.
-
- 16 Tem, 2003 22 kayıt (commit)
-
-
Neil Schemenauer yazdı
module had been compiled. It gives too many spurious warnings.
-
Neil Schemenauer yazdı
module had been compiled. It gives too many spurious warnings.
-
Skip Montanaro yazdı
C yet anyway.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Add reminder list of things to document; mention sys.getcheckinterval() and socket.timeout exception
-
Andrew M. Kuchling yazdı
-
Skip Montanaro yazdı
the info conversion the \comment LaTeX macro mapped to a Texinfo @ignore macro. Unfortunately, py2texi.el is not smart enough to avoid generating links to the @ignore'd section, which causes makeinfo to croak. Exposing this text is probably not the most correct thing to do, as this documentation really belongs in the C API manual. This does get the info files generated, however, which is a more practical goal considering the impending release of 2.3rc1.
-
Raymond Hettinger yazdı
Prompted by a discussion on comp.lang.python.
-
Raymond Hettinger yazdı
skip over functions with private names (as indicated by the underscore naming convention). The old default created too much of a risk that user tests were being skipped inadvertently. Note, this change could break code in the unlikely case that someone had intentionally put failing tests in the docstrings of private functions. The breakage is easily fixable by specifying the old behavior when calling testmod() or Tester(). The more likely case is that the silent failure was unintended and that the user needed to be informed so the test could be fixed.
-
Fred Drake yazdı
these make sense even without that processing chain.
-
Fred Drake yazdı
conversion to support. Keep the content as normal content, with a note that this applies starting in Python 2.3.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
The !PyType_Check(base) check snuck in as part of rev 2.215, but was unrelated to the SF patch that is mentioned in the checkin comment. The test is currently unnecessary because base is set to the return value of best_bases(), which returns a type or NULL.
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
by controling the font.
-
Fred Drake yazdı
- added missing period - added markup so it's easier to tell which names are special
-
Andrew MacIntyre yazdı
- more clean up of the generated import library definiton (.DEF file) following checking of patch 770521, and tightening of the sed regexps. - use -O3 even with gcc 2.8.1 - worth nearly 10% with 2.3; worth nothing with 2.2.x. - clean up a couple of whitespace issues introduced by a cut'n'paste.
-
Fred Drake yazdı
-
Raymond Hettinger yazdı
were in the wrong file. Moved out of libstring.tex and into libstdtypes.tex.
-
Raymond Hettinger yazdı
unittest environment. Since his extension finds docstrings in private functions, it exposed a bug in the difflib doctests.
-
Raymond Hettinger yazdı
Note, these tests were not getting exercised because doctest skips over private functions.
-
Raymond Hettinger yazdı
-