summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add support for FreeBSD 7.Hye-Shik Chang2005-07-178-3/+550
|
* Added an option to the scanner to generated marked-up HTML from the inputJack Jansen2005-07-171-6/+161
| | | | | file. This should make it a lot easier (I hope) to get the regular expressions right.
* bug [ 1238170 ] threading.Thread uses {} as default argumentGeorg Brandl2005-07-152-1/+6
|
* textwrap now processes text chucks at O(n) speed instead of O(n**2).Raymond Hettinger2005-07-152-9/+16
| | | | Patch #1209527 (Contributed by Connelly).
* Brett requests that Flovis's permissions be dropped.Raymond Hettinger2005-07-141-0/+2
|
* RFE [ 1216944 ] Add Error Code Dictionary to urllib2Georg Brandl2005-07-144-0/+65
|
* Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source fileWalter Dörwald2005-07-121-27/+45
| | | | with a PEP 263 encoding declaration results in long decoded line.
* Fix for #1236090: FSSpec.as_pathname() crashes.Jack Jansen2005-07-122-2/+93
| | | | | | Turns out patch #1035255 was incomplete, it only patched _Filemodule.c and not filesupport.py. So regenerating caused as_pathname() to go into an infinite loop.
* Oops.Georg Brandl2005-07-121-1/+1
|
* bug [ 1232768 ] Mistakes in online docs under "5.3 Pure Embedding"Georg Brandl2005-07-121-6/+4
|
* Fix:Michael W. Hudson2005-07-123-8/+36
| | | | | | | [ 1229429 ] missing Py_DECREF in PyObject_CallMethod Add a test in test_enumerate, which is a bit random, but suffices (reversed_new calls PyObject_CallMethod under some circumstances).
* bug [ 1235266 ] debug info file descriptor of tarfile is inconsistentGeorg Brandl2005-07-121-1/+1
|
* SF bug 1185883: PyObject_Realloc can't safely take over a block currentlyTim Peters2005-07-102-35/+40
| | | | | | | | | | managed by C, because it's possible for the block to be smaller than the new requested size, and at the end of allocated VM. Trying to copy over nbytes bytes to a Python small-object block can segfault then, and there's no portable way to avoid this (we would have to know how many bytes starting at p are addressable, and std C has no means to determine that). Bugfix candidate. Should be backported to 2.4, but I'm out of time.
* Whitespace normalization.Tim Peters2005-07-107-29/+29
|
* bug 1234979 additionGeorg Brandl2005-07-091-2/+2
|
* bug [ 1234979 ] Lock.acquire treats only 1 as TrueGeorg Brandl2005-07-082-1/+4
|
* bug [ 969757 ] function and method objects confounded in TutorialGeorg Brandl2005-07-081-1/+1
|
* Handle argref so it can be overridden more easily in a subclass.Jack Jansen2005-07-081-1/+1
|
* Note Floris's last name.Raymond Hettinger2005-07-081-2/+2
|
* Add permissions for the Summer of Code project.Raymond Hettinger2005-07-081-0/+7
|
* Fix "upload" command garbling and truncating files on Windows. If it's aPhillip J. Eby2005-07-071-1/+1
| | | | binary file, use 'rb'!
* Link to #1233049 for building against openssl 0.9.8.Martin v. Löwis2005-07-061-0/+1
|
* Fix bugMichael W. Hudson2005-07-052-0/+5
| | | | | | | | | | | [ 1232517 ] OverflowError in time.utime() causes strange traceback A needed error check was missing. (Actually, this error check may only have become necessary in fairly recent Python, not sure). Backport candidate.
* Allow for (optional) const declaration.Jack Jansen2005-07-054-20/+43
|
* Add test for hash commutativity.Raymond Hettinger2005-07-051-0/+10
|
* fixed tag generation to avoid null tagsPiers Lauder2005-07-051-2/+2
|
* bug #1177468: don't cache /dev/urandom file descriptor in os.urandomGeorg Brandl2005-07-042-8/+7
|
* Revert patch for 1162912.Georg Brandl2005-07-041-3/+0
|
* Updated (and regenerated) for name change in tp_init method arguments:Jack Jansen2005-07-0329-1791/+1802
| | | | they are now _self, _args and _kwds.
* Factored out the code that creates argument lists and formats for PyArg_ParseJack Jansen2005-07-031-19/+26
| | | | and Py_BuildValue.
* Sigh, changed the argument names in the tp_init function: to make them beJack Jansen2005-07-031-7/+7
| | | | | more in line with other methods "self" and "args" had to be renamed "_self" and "_args". Did "_kwds" too, for consistency.
* bug [ 1162912 ] typesseq-mutable lacks note on combined key/cmp usageGeorg Brandl2005-07-031-0/+3
|
* Add doctest for examples in libweakref.tex to test_weakref.Georg Brandl2005-07-022-2/+90
|
* patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror)Georg Brandl2005-07-021-11/+11
|
* bug [ 1228904 ] weakref example brokenGeorg Brandl2005-07-021-5/+2
|
* Patch [ 1230615 ] Patch for (Doc) #1168746Georg Brandl2005-07-021-11/+14
| | | | Bug [ 1204734 ] incorrect description of __getattribute__
* Cross reference the set built-ins with the sets module.Raymond Hettinger2005-07-011-0/+8
|
* Provide a comparison to the builtin set types.Raymond Hettinger2005-07-011-2/+32
|
* Teach texcheck about \textbarRaymond Hettinger2005-07-011-0/+1
|
* Added methods mkvaluePreCheck and getargsPreCheck, which are called (forJack Jansen2005-07-013-1/+22
| | | | each variable) before calling Py_BuildValue and PyArg_Parse.
* More info on rounding modes. Add sections for floating point notes.Raymond Hettinger2005-07-011-7/+12
|
* More factorization: added a method getrvforcallit(). This allows a C++Jack Jansen2005-06-301-8/+8
| | | | | bridge to combine declaration and assignment to the return value temporary, allowing us to handle functions returning const values.
* Apparently some compiler gives a warning onMichael W. Hudson2005-06-301-1/+1
| | | | | | float y = x; when x is a double. Go figure.
* SF bug #1224347: int/long unification and hex()Raymond Hettinger2005-06-294-14/+11
| | | | Hex longs now print with lowercase letters like their int counterparts.
* Added optional suppport for storage modifiers (virtual/static/inline/etc)Jack Jansen2005-06-293-2/+20
| | | | and conditional generation of objects and methods.
* More factorization to help C++ support.Jack Jansen2005-06-286-18/+51
|
* Note that files are iterable.Raymond Hettinger2005-06-281-0/+15
|
* * Show the keyword argument form of dict().Raymond Hettinger2005-06-271-2/+12
| | | | * Note that dict works with the "in" keyword.
* add note that os.EX_* constants are subject to availability on the hostFred Drake2005-06-271-0/+3
| | | | platform
* Adapt output file to new Cookie JS output.Georg Brandl2005-06-271-4/+4
|