]> granicus.if.org Git - python/shortlog
python
2002-08-07 Guido van RossumDocument that heappop() and heapreplace() raise IndexEr...
2002-08-07 Raymond HettingerApply character{} markup.
2002-08-07 Martin v. LöwisReplace abort with Py_FatalError.
2002-08-07 Raymond HettingerDescribed responsibilty of weakly referenced extension...
2002-08-07 Raymond HettingerDescribe nested scopes in the tutorial. Closes SF...
2002-08-07 Guido van RossumOops. I accidentally commented out some tests.
2002-08-07 Jack JansenRegenerated with OSA class inheritance and fix for...
2002-08-07 Jack JansenFixed incorrect logic in determining whether we should...
2002-08-07 Raymond HettingerDocumented os.fsync and os.fdatasync. Closes SF bug...
2002-08-07 Guido van Rossum"Unbuffered" mode of class _fileobject wasn't actually...
2002-08-07 Jack Jansen- If an OSA identifier is a Python reserved word we...
2002-08-07 Fred DrakeClarify that the bool instances are acceptable return...
2002-08-07 Martin v. LöwisUse Py_FatalError instead of abort.
2002-08-07 Jack JansenDon't be over-enthusiastic with the ascii() calls:...
2002-08-07 Jack JansenDonovan Preston's patch #538395, with some mods by me.
2002-08-07 Jack JansenQuote the arguments, they may contain strings.
2002-08-07 Fred DrakeFix up some more markup problems.
2002-08-07 Fred DrakeChange the markup a bit more; the parameter was not...
2002-08-07 Martin v. LöwisFix PEP 263 code --without-unicode. Fixes #591943.
2002-08-07 Steve HoldenFix markup errors.
2002-08-06 Raymond HettingerExpanded the unittests for the new width sensitive...
2002-08-06 Raymond HettingerDocument handling of raw-unicode-escapes. Closes SF...
2002-08-06 Tim Petersinternal_connect(): Windows. When sock_timeout >...
2002-08-06 Jack JansenAdded a note about the inability to specify a pathname...
2002-08-06 Jack JansenChanged a sentence that confused some people.
2002-08-06 Neal NorwitzMake more functions static
2002-08-06 Neal NorwitzMake readahead functions static
2002-08-06 Guido van RossumFix SF bug 574207 (chained __slots__ dealloc segfault).
2002-08-06 Fred DrakeFix the markup so it doesn't break formatting.
2002-08-06 Guido van RossumAdd testcase for SF bug 574207 (chained __slots__ deall...
2002-08-06 Fred DrakeAdded references to the email package.
2002-08-06 Barry WarsawAdded a test for PyUnicode_Contains() taking into accou...
2002-08-06 Barry WarsawPyUnicode_Contains(): The memcmp() call didn't take...
2002-08-06 Skip Montanaroget rid of GETNAMEV macro - use GETITEM directly
2002-08-06 Guido van RossumAdd a coding cookie, because of the møøse quote.
2002-08-06 Guido van RossumUpdate the URL for getting zlib, and update the minimal...
2002-08-06 Guido van RossumBump the LOOPS count. 50,000 iterations takes about...
2002-08-06 Guido van RossumAdd some fine points: METH_KEYWORDS implies METH_VARARG...
2002-08-06 Guido van RossumMark xreadlines deprecated. Don't use f.xreadlines...
2002-08-06 Guido van RossumRemove mention of deprecated xreadlines method.
2002-08-06 Barry WarsawDescribe new "str1 in str2" behavior.
2002-08-06 Guido van RossumDocument file.next(). Mark xreadlines obsolete (both...
2002-08-06 Barry WarsawCommitting patch #591250 which provides "str1 in str2...
2002-08-06 Guido van RossumFiles are now their own iterator. The xreadlines metho...
2002-08-06 Steve HoldenAdd comment about os.path.walk()'s behavior with symbol...
2002-08-06 Guido van RossumAdd next and __iter__ to the list of file methods that...
2002-08-06 Guido van RossumSF patch 580331 by Oren Tirosh: make file objects their...
2002-08-06 Jack JansenIn the altbininstall target, which is the first subtarg...
2002-08-06 Jack JansenPatch #567296 by Pim Buurman, slightly modified by...
2002-08-06 Jack JansenWrapper around _IBCarbon.
2002-08-06 Andrew M. KuchlingMention list.sort()
2002-08-05 Neal NorwitzSF patch #591305 Documentation err in bytecode defs
2002-08-05 Fred DrakeWe only need to check for StopIteration here.
2002-08-05 Jack JansenPatch by Ronald Oussoren: if there's a .lproj in the...
2002-08-05 Jack JansenIn copy() don't try to obtain an FSSpec until we know...
2002-08-05 Jack JansenBe a lot less verbose by default.
2002-08-05 Jack JansenBetter output for errors, and some progress reports.
2002-08-05 Jack JansenFixed the last two bgen-based modules to be buildable...
2002-08-05 Jeremy HyltonInitial prototype of framer: a tool to build the frame...
2002-08-05 Jeremy HyltonRemove function definition from cStringIO.h.
2002-08-05 Fred DrakeSince the errno module is needed by os._execvpe(),...
2002-08-05 Guido van RossumSF patch 590294: os._execvpe security fix (Zack Weinberg).
2002-08-05 Guido van RossumSF patch 590294: os._execvpe security fix (Zack Weinberg).
2002-08-05 Jack JansenEnable building of Carbon toolbox modules with unix...
2002-08-05 Jack JansenGot rid of staticforward.
2002-08-05 Jack JansenThis can now run under unix-Python too. You have to...
2002-08-05 Jack JansenFixed to run better in unix-Python, and to cater for...
2002-08-05 Fred DrakeTypo: "now" --> "the new"
2002-08-05 Martin v. LöwisIDLE support for PEP 263.
2002-08-05 Jack JansenMoved bgenlocations to the Mac/Lib directory. Not perfe...
2002-08-05 Martin v. LöwisPatch #590913: PEP 263 support.
2002-08-05 Martin v. LöwisUse ascii_letters to avoid UnicodeErrors.
2002-08-05 Guido van RossumAdd a small description of PEP 263.
2002-08-05 Jack JansenAdded a cast to shut up a compiler warning.
2002-08-05 Jack JansenRenamed Py_Main to PyMac_Main as it has a different...
2002-08-05 Jack JansenAdded _IBCarbon module.
2002-08-05 Raymond HettingerSF 582071 clarified the .split() method's docstring...
2002-08-05 Raymond HettingerNote that True and False are pickable objects
2002-08-05 Kurt B. KaiserGvR provided solution to the socket rebinding timeout...
2002-08-05 Martin v. LöwisAdd 1 to lineno in deprecation warning. Fixes #590888.
2002-08-05 Martin v. LöwisTest whether a Cyrillic text correctly appears in a...
2002-08-04 Tim PetersWe don't really need the name of the test in the "test...
2002-08-04 Tim PetersOops! Forgot the closing paren.
2002-08-04 Tim PetersFinally got around to figuring out and documenting...
2002-08-04 Jack JansenBuild the _IBCarbon module.
2002-08-04 Jack JansenThe definitions for IBCarbonRuntime.h
2002-08-04 Jack JansenUpdated to something that works on my system, and regen...
2002-08-04 Jack JansenSpecify pathnames in a way that works on both OS9 and...
2002-08-04 Jack JansenUse universal newline input when scanning header files.
2002-08-04 Jack JansenDonovan Preston's interface to IBCarbon, allowing you...
2002-08-04 Jack JansenChanges to the OSX section:
2002-08-04 Jack JansenUse the -n option of ln in stead of -h, as it also...
2002-08-04 Skip Montanarosmall speedup for constant and name access
2002-08-04 Martin v. LöwisMake pgen compile with pydebug. Duplicate normalized...
2002-08-04 Martin v. LöwisGroup statements properly.
2002-08-04 Tim PetersRepaired a fatal compiler error in the debug build...
2002-08-04 Tim PetersSquash compiler wng about signed-vs-unsigned mismatch.
2002-08-04 Tim PetersSped the usual case for sorting by calling PyObject_Ric...
2002-08-04 Martin v. LöwisPatch #534304: Implement phase 1 of PEP 263.
2002-08-04 Martin v. LöwisAdd encoding declaration.
next