Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Combined several entries. | Raymond Hettinger | 2004-12-07 | 1 | -6/+2 |
| | |||||
* | Eliminate the deprecated option to return None instead of a tuple of ↵ | Raymond Hettinger | 2004-12-07 | 1 | -0/+6 |
| | | | | arguments in __reduce__(). | ||||
* | Change code in setup.py for parsing LDFLAGS and CPPFLAGS to use optparse | Brett Cannon | 2004-12-07 | 1 | -0/+2 |
| | | | | | instead of getopt. Required making use of gettext._ as optional (optparse changed OK'ed by Greg Ward in private email). | ||||
* | setup.py now uses the library directories specified in LDFLAGS (``-L`` | Brett Cannon | 2004-12-07 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | directories) and the include directories specified in CPPFLAGS (``-I`` directories) for compiling the extension modules. This has led to the core being compiled with the values in the shell's CPPFLAGS. It has also removed the need for special casing to use Fink and DarwinPorts under darwin since the needed directories can now be specified in LDFLAGS and CPPFLAGS (e.g., DarwinPorts users can now do ``LDFLAGS=-L/opt/local/lib; CPPFLAGS=-I/opt/local/include; ./configure`` for everything to work properly). Parsing the values in the environment variables is done with getopt. While optparse would have been a nicer solution it cannot be used because of dependency issues at execution time; optparse uses gettext which uses struct which will not have been compiled when the code is imported. If optparse ever makes its importation of gettext optional by catching ImportError and setting _() to an identity function then it can be used. | ||||
* | Removed deprecated tzparse module. | Raymond Hettinger | 2004-12-05 | 1 | -0/+2 |
| | |||||
* | Added optional None arguments to itertools.islice(). | Raymond Hettinger | 2004-12-05 | 1 | -0/+4 |
| | |||||
* | Removed the deprecated bin parameter from the pickle module. | Raymond Hettinger | 2004-12-05 | 1 | -0/+2 |
| | |||||
* | Remove the deprecated statcache module. | Raymond Hettinger | 2004-12-05 | 1 | -0/+2 |
| | |||||
* | Removed deprecated method arguments from the shelve module. | Raymond Hettinger | 2004-12-05 | 1 | -0/+2 |
| | |||||
* | Removed deprecated method from pstats. | Raymond Hettinger | 2004-12-05 | 1 | -0/+2 |
| | |||||
* | Removed deprecated use_statcache argument. | Raymond Hettinger | 2004-12-05 | 1 | -0/+2 |
| | |||||
* | SF bug #1078905: Docs for unittest run() methods are misleading | Raymond Hettinger | 2004-12-04 | 1 | -0/+4 |
| | |||||
* | Remove the deprecated whrandom module. | Raymond Hettinger | 2004-12-04 | 1 | -0/+2 |
| | |||||
* | Remove PyRange_New(). | Raymond Hettinger | 2004-12-03 | 1 | -0/+2 |
| | |||||
* | SF patch #1077353: add key= argument to min and max | Raymond Hettinger | 2004-12-03 | 1 | -1/+4 |
| | | | | (First draft of patch contributed by Steven Bethard.) | ||||
* | Add key= argument to heapq.nsmallest() and heapq.nlargest(). | Raymond Hettinger | 2004-12-02 | 1 | -0/+40 |
| | |||||
* | whoops! | Anthony Baxter | 2004-11-30 | 1 | -2/+2 |
| | |||||
* | doodedoodedoo on the way to 2.4 final | Anthony Baxter | 2004-11-30 | 1 | -39/+3 |
| | |||||
* | Hye-Shik Chang's fix for Bug 875692. | Kurt B. Kaiser | 2004-11-23 | 1 | -0/+13 |
| | | | | | | | | | Improve signal handling, especially when using threads, by forcing an early re-execution of PyEval_EvalFrame() "periodic" code when things_to_do is not cleared by Py_MakePendingCalls(). M Misc/NEWS M Python/ceval.c | ||||
* | 2.4rc1 | Anthony Baxter | 2004-11-18 | 1 | -1/+1 |
| | |||||
* | Mark PyRange_New() as deprecated. | Raymond Hettinger | 2004-11-18 | 1 | -1/+2 |
| | |||||
* | SF bug 1065388: calendar day/month name lookup too slow | Tim Peters | 2004-11-13 | 1 | -0/+11 |
| | | | | | | __getitem__() methods: compute only the new spellings needed to satisfy the given indexing object. This is purely an optimization (it should have no effect on visible semantics). | ||||
* | test_doctest.py test_pdb_set_trace_nested(): A new test from Jim Fulton | Tim Peters | 2004-11-08 | 1 | -1/+4 |
| | | | | | | | | | showing that doctest's pdb.set_trace() support was dramatically broken. doctest.py _OutputRedirectingPdb.trace_dispatch(): Return a local trace function instead of (implicitly) None. Else interaction with pdb was bizarre, noticing only 'call' events. Amazingly, the existing set_trace() tests didn't care. | ||||
* | SF bug 1061968: threads: segfault or Py_FatalError at exit | Tim Peters | 2004-11-08 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | PyGILState_Ensure(): The fix in 2.4a3 for bug 1010677 reintroduced thread shutdown race bug 225673. Repaired by (once again) ensuring the GIL is held whenever deleting a thread state. Alas, there's no useful test case for this shy bug. Four years ago, only Guido could provoke it, on his box, and today only Armin can provoke it on his box. I've never been able to provoke it (but not for lack of trying!). This is a critical fix for 2.3.5 too, since the fix for 1010677 got backported there already and so also reintroduced 225673. I don't intend to backport this fix. For whoever (if anyone) does, there are other thread fixes in 2.4 that need backporting too, and I bet they need to happen first for this patch to apply cleanly. | ||||
* | Add comment about removal of CoreServices/CoreFoundation compilation against | Brett Cannon | 2004-11-07 | 1 | -1/+3 |
| | | | | | the core on OS X (also specifically mention removal of PyMac_GetAppletScriptFile() ). | ||||
* | Essentially SF patch 1061679: add missing __all__ to pickletools.py. | Tim Peters | 2004-11-06 | 1 | -0/+2 |
| | | | | Harmless. | ||||
* | post-release | Anthony Baxter | 2004-11-04 | 1 | -39/+55 |
| | |||||
* | Fix bug 1052242. Also includes rewrite of test case using unittest and | Skip Montanaro | 2004-11-04 | 1 | -0/+11 |
| | | | | avoiding use of popen. | ||||
* | release shenanigans | Anthony Baxter | 2004-11-03 | 1 | -1/+1 |
| | |||||
* | SF patch #1056967, changes the semantics of Template.safe_substitute() to not | Barry Warsaw | 2004-11-01 | 1 | -0/+4 |
| | | | | raise a ValueError for dangling delimiters (the delimiter itself is returned). | ||||
* | SF 1055820: weakref callback vs gc vs threads | Tim Peters | 2004-10-30 | 1 | -0/+11 |
| | | | | | | | | In cyclic gc, clear weakrefs to unreachable objects before allowing any Python code (weakref callbacks or __del__ methods) to run. This is a critical bugfix, affecting all versions of Python since weakrefs were introduced. I'll backport to 2.3. | ||||
* | Patch #1044395: Allow configure option --enable-shared in FreeBSD. | Hye-Shik Chang | 2004-10-26 | 1 | -2/+2 |
| | | | | (Submitted by James William Pye, Patch revised by Jiwon Seo) | ||||
* | SF #737473: Show up-to-date source code in tracebacks always. | Hye-Shik Chang | 2004-10-26 | 1 | -0/+3 |
| | | | | | And add an optional argument 'filename' to linecache.checkcache() to enable checking caches per-file. | ||||
* | SF bug #1054139: serious string hashing error in 2.4b1 | Raymond Hettinger | 2004-10-26 | 1 | -1/+1 |
| | | | | | _PyString_Resize() readied strings for mutation but did not invalidate the cached hash value. | ||||
* | SF bug #1052503: pdb runcall should accept keyword arguments | Raymond Hettinger | 2004-10-24 | 1 | -0/+2 |
| | |||||
* | SF bug #1048870: call arg of lambda not updating | Raymond Hettinger | 2004-10-24 | 1 | -1/+4 |
| | |||||
* | Move to version 2 of the PSF license, approved by the Board earlier today. | Tim Peters | 2004-10-23 | 1 | -2/+22 |
| | |||||
* | Fix minor reST error in Misc/NEWS. | Brett Cannon | 2004-10-22 | 1 | -0/+1 |
| | | | | Applies patch #1051866. Thanks Felix Wiemann. | ||||
* | Add item | Andrew M. Kuchling | 2004-10-20 | 1 | -0/+2 |
| | |||||
* | SF bug #902037: relative on-disk SYSTEM id handling is incorrect | Raymond Hettinger | 2004-10-20 | 1 | -0/+3 |
| | |||||
* | SF patch #1038388: __main__ for whichdb.py | Raymond Hettinger | 2004-10-20 | 1 | -0/+2 |
| | | | | (Contributed by Oleg Broytmann.) | ||||
* | Delete empty sections in beta1 news | Andrew M. Kuchling | 2004-10-19 | 1 | -15/+0 |
| | |||||
* | Add item | Andrew M. Kuchling | 2004-10-19 | 1 | -0/+2 |
| | |||||
* | Add support for %U and %W to contribute to calculating the date when the year | Brett Cannon | 2004-10-18 | 1 | -1/+2 |
| | | | | | | and day of the week are specified. Closes bug #1045381. | ||||
* | Add sections for 2.4b2 | Brett Cannon | 2004-10-18 | 1 | -0/+61 |
| | |||||
* | release shenanigans | Anthony Baxter | 2004-10-15 | 1 | -1/+1 |
| | |||||
* | Patch 1046644 - improved distutils support for SWIG. | Anthony Baxter | 2004-10-14 | 1 | -0/+5 |
| | |||||
* | Patch 983206: distutils obeys LDSHARED env var. Removed the code in | Anthony Baxter | 2004-10-13 | 1 | -0/+3 |
| | | | | | Python's own setup.py that did the same thing (and tested on Solaris, where LDSHARED is needed...) | ||||
* | 969574 | Anthony Baxter | 2004-10-13 | 1 | -0/+3 |
| | |||||
* | Fix PEP number | Andrew M. Kuchling | 2004-10-12 | 1 | -1/+1 |
| |