]> granicus.if.org Git - python/shortlog
python
2001-09-20 Guido van RossumAdd optional docstrings to getset descriptors. Fortuna...
2001-09-20 Guido van RossumChange testdescr.py to use the test_main() approach.
2001-09-20 Fred DrakeChange the PyUnit-based tests to use the test_main...
2001-09-20 Guido van RossumAdd optional docstrings to member descriptors. For...
2001-09-20 Fred DrakeFill in a few more descriptions for xml.parsers.expat.
2001-09-20 Tim PetersDocument new file() constructor, with the body of open...
2001-09-20 Fred DrakeDocument all the Py*_CheckExact() functions.
2001-09-20 Guido van RossumPyLocale_setlocale(): silence compiler warning about...
2001-09-20 Marc-André... Fix Unicode .join() method to raise a TypeError for...
2001-09-20 Marc-André... Update test output after the unicode() change.
2001-09-20 Jeremy HyltonUpdate description of Tools/compiler
2001-09-20 Jeremy HyltonRemove setup.py, unnecessary since compiler package...
2001-09-20 Jeremy HyltonMoved to Tools/compiler along with astgen.py
2001-09-20 Guido van Rossum_PyObject_GetDictPtr(): when the offset is negative...
2001-09-20 Marc-André... Note about enhancements to unicode().
2001-09-20 Marc-André... Python part of the UTF-7 codec by Brian Quinlan.
2001-09-20 Marc-André... Implement the changes proposed in patch #413333. unicod...
2001-09-20 Marc-André... Patch #435971: UTF-7 codec by Brian Quinlan.
2001-09-20 Marc-André... Patch #462635 by Andrew Kuchling correcting bugs in...
2001-09-20 Tim PetersSF bug [#463093] File methods need doc strings.
2001-09-20 Barry Warsawrun_suite(): Oops, update a docstring.
2001-09-20 Barry Warsawrun_suite(): Factor this out of run_unittest() for...
2001-09-20 Tim PetersSince inspect.isfunction(obj) is a precondition for...
2001-09-20 Tim PetersEnsure that isfunction(obj) and (the new) ismethoddescr...
2001-09-20 Guido van RossumNews about compiler and pydoc.
2001-09-20 Guido van RossumAFAICT pydoc/inspect do the right thing again.
2001-09-20 Tim PetersAfter much thrashing, I believe this is a truly minimal...
2001-09-20 Tim PetersInstall the compiler package under Lib.
2001-09-20 Jeremy HyltonThe compiler package is now part of the standard library.
2001-09-19 Martin v. LöwisPatch #461321: Support None as a timeout in poll2 and...
2001-09-19 Martin v. LöwisPatch #462849: Pass Unicode objects to file's .write...
2001-09-19 Guido van RossumKeep tabnanny happy.
2001-09-19 Marc-André... Fixed search function error reporting in the encodings...
2001-09-19 Marc-André... Docs and News item for the codecs.py additions.
2001-09-19 Marc-André... Added new helpers for easy access to codecs. Docs will...
2001-09-19 Marc-André... Fix for bug #462737.
2001-09-19 Martin v. LöwisInclude ctype.h after Python.h.
2001-09-19 Martin v. LöwisPatch to bug #461753: Allow None in ExternalEntityParse...
2001-09-19 Martin v. LöwisPatch to bug #461754: CDATA should not undergo entity...
2001-09-19 Guido van RossumAdd additional coercion support for "self subtypes...
2001-09-19 Guido van RossumEnable two checks for comparing a complex to a complex...
2001-09-19 Guido van Rossumcomplex_coerce(): add explicit PyComplex_Check() test...
2001-09-18 Tim PetersEnable some comparison tests that failed before. Still...
2001-09-18 Guido van RossumAdd a similar test for rich comparisons.
2001-09-18 Fredrik Lundhfixed #449964: sre.sub raises an exception if the templ...
2001-09-18 Guido van RossumHopefully fix 3-way comparisons. This unfortunately...
2001-09-18 Guido van RossumGet rid of a superfluous space after "--" in the messag...
2001-09-18 Andrew M. Kuchling[Patch #462258] On Cygwin, don't build Tkinter unless...
2001-09-18 Andrew M. KuchlingFix typo in comment
2001-09-18 Martin v. LöwisProperly repr classes without module names.
2001-09-18 Guido van RossumTest for the safety check in wrap_cmpfunc().
2001-09-18 Guido van Rossumwrap_cmpfunc(): added a safety check for the __cmp__...
2001-09-18 Fredrik Lundhan SRE bugfix a day keeps Guido away...
2001-09-18 Fred DrakeFix minor usage and consistency nits.
2001-09-18 Guido van RossumAll the news that fits, we print.
2001-09-18 Guido van RossumSF bug #417176 (Martijn Pieters): MultiFile.read()...
2001-09-18 Guido van Rossumsoftspace(): be prepared to catch AttributeError as...
2001-09-18 Tim PetersThis module didn't work at all anymore -- blew up with...
2001-09-18 Guido van RossumUndo some (but not all) of the more lenient acceptance of
2001-09-18 Guido van RossumRedo the PyMethod attributes using a dir()-friendly...
2001-09-18 Guido van Rossum- Some tests that check that assignments are not allowe...
2001-09-18 Guido van RossumSort the headers in PYTHON_HEADERS alphabetically....
2001-09-18 Tim PetersWhitespace normalization.
2001-09-18 Tim PetersMake test_socketserver require the network resource.
2001-09-18 Tim PetersI don't expect test_socketserver to get skipped on...
2001-09-18 Tim Peterstype_new(): Didn't compile anymore, due to change...
2001-09-17 Tim PetersRework akin to test_threaded_import, so that this can...
2001-09-17 Guido van RossumRewrite function attributes to use the generic routines...
2001-09-17 Jeremy HyltonTrack changes to compiler API
2001-09-17 Jeremy HyltonAPI change:
2001-09-17 Jeremy HyltonRe-created after change to astgen to calculate hardest_...
2001-09-17 Jeremy HyltonFix calculation of hardest_arg.
2001-09-17 Jeremy HyltonLast set of change to get regression tests to pass
2001-09-17 Guido van RossumAdd support for restricting access based on restricted...
2001-09-17 Jeremy HyltonAdd -p option to invoke Python profiler
2001-09-17 Jeremy HyltonOnly print attributes that start with co_.
2001-09-17 Jeremy HyltonHandle more syntax errors.
2001-09-17 Jeremy HyltonAdd utility to set filename attribute on all nodes
2001-09-17 Fredrik LundhBrian Quinlan's XML-RPC server framework.
2001-09-17 Jeremy Hyltonsupport true division
2001-09-17 Andrew M. Kuchling[Patch #462255, from Jason Tishler] Re-enables building...
2001-09-17 Guido van RossumSF patch #461781 by Chris Lawrence: os.path.realpath...
2001-09-17 Guido van RossumAdd cross-compilation defaults to most AC_TRY_RUN value...
2001-09-17 Tim PetersPyObject_Dir(): Merge in __members__ and __methods__...
2001-09-16 Tim Petersmerge_class_dict(): Clear the error if __bases__ doesn...
2001-09-16 Tim PetersIn a world with a growing number of subclassable types...
2001-09-16 Tim PetersImprove handling of docstrings. I had feared this...
2001-09-15 Tim PetersFixed typo in new 'p' description.
2001-09-15 Tim PetersSF bug [#461674] struct 'p' format doesn't work (maybe)
2001-09-15 Tim PetersSince we had a bug with multiplication of dynamic long...
2001-09-15 Guido van RossumA fix for SF bug #461546 (bug in long_mul).
2001-09-15 Tim PetersThe 'p' (Pascal string) pack code acts unreasonably...
2001-09-14 Jeremy HyltonAdd code generator for yield stmt
2001-09-14 Jeremy Hyltonlimit prefix test for lambda
2001-09-14 Jeremy Hyltondel no longer necessary now that new module is gone
2001-09-14 Jeremy HyltonVarious sundry changes for 2.2 compatibility
2001-09-14 Jeremy HyltonThe object-being sliced in an assignment to a slice...
2001-09-14 Jeremy Hyltonthe new new doesn't define CO_xxx as the old new did
2001-09-14 Jeremy Hyltonthe names attribute of Global is not a node
2001-09-14 Tim PetersUpdate the warning about transporting marshals across...
next