2002-08-21 |
Fred Drake | Clarify that even though some of the relevant specifica... |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Raymond Hettinger | Now that __init__ transforms set elements, we know... |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Raymond Hettinger | Add regression test for proper construction of sets... |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Raymond Hettinger | Replace all cases of "while 1" with "while True". |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Raymond Hettinger | Sped ._update() method by factoring try/except out... |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Guido van Rossum | Ouch. The test suite *really* needs work!!!!! There... |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Guido van Rossum | Add Raymond H to the list of authors; add some XXX... |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Raymond Hettinger | Fast size check for sub/super set tests |
commit | commitdiff | tree | snapshot |
2002-08-21 |
Raymond Hettinger | Optimize try/except ordering in sets.py. |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Raymond Hettinger | Minor typo |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Guido van Rossum | Rename popitem() to pop(). (An idea from SF patch... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Guido van Rossum | Move __init__ from BaseSet into Set and ImmutableSet... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Guido van Rossum | Typo repair. Please include in any backports. |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Guido van Rossum | Add a note reminding the reader that sets are not seque... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Guido van Rossum | SF patch 595846 by Brett Cannon: Update environ for... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Tim Peters | long_format(), long_lshift(): Someone on c.l.py is... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Guido van Rossum | Fix some endcase bugs in unicode rfind()/rindex() and... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Michael W.... | Comment typo repair. |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Michael W.... | My patch #597221. Use f_lasti more consistently. |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Barry Warsaw | Bump version number to 2.3 |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Barry Warsaw | Added tests for SF patch #597593, syntactically invalid... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Barry Warsaw | get_content_type(), get_content_maintype(), get_content... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Barry Warsaw | _dispatch(): Use get_content_maintype() and get_content... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Tim Peters | getinstclassname(): Squash new compiler wng in assert... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Fred Drake | Clarify the endpos argument to the rx.match() method. |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Barry Warsaw | test_three_lines(): Test case reported by Andrew McNama... |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Andrew M. Kuchling | Cover the sets module. |
commit | commitdiff | tree | snapshot |
2002-08-20 |
Andrew M. Kuchling | Create two subsections of the "Core Language Changes... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Neal Norwitz | Add versionadded for operator.pow |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Fred Drake | Extend some comments on the order of values in the... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | SF patch 576101, by Oren Tirosh: alternative implementa... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Add a warning comment to the LOAD_GLOBAL inline code. |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Another ugly inlining hack, expanding the two PyDict_Ge... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Call me anal, but there was a particular phrase that... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Another modest speedup in PyObject_GenericGetAttr(... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Make PyDescr_IsData() a macro. It's too simple to... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Michael W.... | Check in my ultra-shortlived patch #597220. |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Inline call to _PyObject_GetDictPtr() in PyObject_Gener... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Fix typo in __slots__ of ImmutableSet. |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | News about sets. (There's no documentation; if someone... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Set classes and their unit tests, from sandbox. |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Guido van Rossum | Simple but important optimization for descr_check(... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Raymond Hettinger | Fix spelling errors and note the addition of operator... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Jack Jansen | Merged the MacPython thanks list into the general ackno... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Raymond Hettinger | Added __pow__(a,b) to the operator module. Completes... |
commit | commitdiff | tree | snapshot |
2002-08-19 |
Tim Peters | SF bug 595919: popenN return only text mode pipes |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Raymond Hettinger | Add Steve Purcell for unittest.py |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Jack Jansen | Refuse to run if the last bit of the destination path... |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Raymond Hettinger | Modify splituser() method to allow an @ in the userinfo... |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Andrew MacIntyre | OS/2 EMX behaves like Windows where file permissions... |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Andrew MacIntyre | update contact info |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Andrew MacIntyre | Prep for 2.3: |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Andrew MacIntyre | make port notes current |
commit | commitdiff | tree | snapshot |
2002-08-18 |
Andrew MacIntyre | Build process updates: |
commit | commitdiff | tree | snapshot |
2002-08-17 |
Guido van Rossum | Get rid of _once(); inlining it takes less code. :-) |
commit | commitdiff | tree | snapshot |
2002-08-17 |
Guido van Rossum | Patch by Zack W to make test_noinherit() more robust... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Neal Norwitz | Get this to compile again if Py_USING_UNICODE is not... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Neal Norwitz | Drop the number of test files to 100 for all the tests |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Jeremy Hylton | Inline fast_cfunction() in new call_function(). |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Remove the outdated PLAN.txt file. |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Jeremy Hylton | Move body of CALL_FUNCTION opcode into helper function. |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Squash a few calls to the hideously expensive PyObject_... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Streamline the fast track for CFunction calls a bit... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Jack Jansen | Regenerated with PyDoc_STR() around docstrings. |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Jack Jansen | iUse PyDoc_STR() around docstrings. |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | A nice little speed-up for filter(): |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Fix SF bug 595838 -- buffer in type_new() should not... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Tim Peters | SF bug 594996: OverflowError in random.randrange |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Tim Peters | Newly-relaxed limits on random.randrange(). Also added... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Mention warnings about defining None. |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Add warnings for arguments named None. All set. ... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Tim Peters | check_events(): This was failing under -O, due to... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Add warning for None used as keyword argument name... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Add warnings for assignment or deletion of variables... |
commit | commitdiff | tree | snapshot |
2002-08-16 |
Guido van Rossum | Minor cleanup of parsename() and parsestr(): the 'struc... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Barry Warsaw | base64.decodestring('') should return '' instead of... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Jack Jansen | Fixed the bugs in the constant definitions, and in... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Jack Jansen | After generating the Python file with definitions try... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Jack Jansen | Try to cater for a source tree checked out with MacCVS... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Tim Peters | Illustrating by example one good reason not to trust... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Tim Peters | k_mul() comments: In honor of Dijkstra, made the proof... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Tim Peters | long_mul(): Simplified exit code. In particular,... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Michael W.... | This is my patch |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Guido van Rossum | Add notes about universal newlines. |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Guido van Rossum | Fix typo. It's --with-universal-newlines, not |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Skip Montanaro | Slight reordering of directories searched for BerkDB... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Skip Montanaro | forgot the best part - the new tests... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Skip Montanaro | provide less mysterious error messages when seeing... |
commit | commitdiff | tree | snapshot |
2002-08-15 |
Andrew M. Kuchling | Add 'in' change |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Guido van Rossum | Add news about Fred's change to Py_InitModule4(). |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Jeremy Hylton | Reflow long lines. |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Fred Drake | Py_InitModule() and friends now accept NULL for the... |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Fred Drake | Py_InitModule4(): Accept NULL for the 'methods' argume... |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Jeremy Hylton | Docstring nits: The module is neither proposed nor... |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Martin v. Löwis | Added Hisao Suzuki. |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Guido van Rossum | More changes of DeprecationWarning to FutureWarning. |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Jeremy Hylton | Explain use of currentThread() in _Condition methods. |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Guido van Rossum | The filterwarnings() call here should be updated to... |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Jeremy Hylton | Explain a little more. |
commit | commitdiff | tree | snapshot |
2002-08-14 |
Jeremy Hylton | Explain a minor mystery. |
commit | commitdiff | tree | snapshot |
next |