]> granicus.if.org Git - python/log
python
21 years agoAdded socket.getservbyport(), and make its second argument and that of
Barry Warsaw [Mon, 28 Jun 2004 00:50:43 +0000 (00:50 +0000)]
Added socket.getservbyport(), and make its second argument and that of
getservbyname() optional.  Update the tests and the docs.

21 years agoAdd missing backslash for PyDateTimeAPI->Delta_FromDelta() macro.
Brett Cannon [Mon, 28 Jun 2004 00:48:30 +0000 (00:48 +0000)]
Add missing backslash for PyDateTimeAPI->Delta_FromDelta() macro.

21 years agoraise the module minor version.
Gregory P. Smith [Sun, 27 Jun 2004 23:36:37 +0000 (23:36 +0000)]
raise the module minor version.

21 years agoSF patch / bug #967763
Gregory P. Smith [Sun, 27 Jun 2004 23:32:34 +0000 (23:32 +0000)]
SF patch / bug #967763
Fix memory leaks revealed by valgrind and ensuing code inspection.

In the existing test suite valgrind revealed two memory leaks (DB_get
and DBC_set_range).  Code inspection revealed that there were many other
potential similar leaks (many on odd code error paths such as passing
something other than a DBTxn object for a txn= parameter or in the face
of an out of memory error).  The most common case that would cause a
leak was when using recno or queue format databases with integer keys,
sometimes only with an exception exit.

21 years agoAdd code for a range function that uses generators.
Brett Cannon [Sun, 27 Jun 2004 23:17:35 +0000 (23:17 +0000)]
Add code for a range function that uses generators.

Cleaned up existing code by abstracting code to parse arguments.  Also removed
any unneeded operations (such as calling 'int' on a division when using floor
division also works).  Fixed a bug where the values  returned by
OldStyleRange could be short by one value.  Added more documentation.

Testing code also has a basic sanity check.

21 years agoFix SF bug # 897820 - we can no longer use the DB_TRUNCATE flag when
Gregory P. Smith [Sun, 27 Jun 2004 22:56:42 +0000 (22:56 +0000)]
Fix SF bug # 897820 - we can no longer use the DB_TRUNCATE flag when
opening the DB to implement legacy interface flag='n' support as
BerkeleyDB 4.2.52 no longer allows it in transaction protected
environments.  Do the os.unlink ourselves.

21 years agosizeof(char) is 1, by definition, so get rid of that expression in
Tim Peters [Sun, 27 Jun 2004 17:24:49 +0000 (17:24 +0000)]
sizeof(char) is 1, by definition, so get rid of that expression in
places it's just noise.

21 years agoPatch #923098: Share interned strings in marshal.
Martin v. Löwis [Sun, 27 Jun 2004 16:51:46 +0000 (16:51 +0000)]
Patch #923098: Share interned strings in marshal.

21 years agoPatch #966493: Cleanup generator/eval_frame exposure.
Martin v. Löwis [Sun, 27 Jun 2004 15:43:12 +0000 (15:43 +0000)]
Patch #966493: Cleanup generator/eval_frame exposure.

21 years agoMention Py_RETURN_NONE when introducing the idiom of how to have a function
Brett Cannon [Sun, 27 Jun 2004 04:28:00 +0000 (04:28 +0000)]
Mention Py_RETURN_NONE when introducing the idiom of how to have a function
return Py_None.

21 years ago* Silence a test failure that resulted when test_site was run by
Raymond Hettinger [Sun, 27 Jun 2004 03:02:18 +0000 (03:02 +0000)]
* Silence a test failure that resulted when test_site was run by
  regrtest.py after it ran test_frozen.  This test was really only
  designed to be run immediately after startup.  Afterwards, other
  modules could be loaded when had not been fixed-up by site.py
  Took the chicken way out and only tested those modules known to
  be imported by site.py.

* Normalized whitespace.

21 years agoSF bug #980419: int left-shift causes memory leak
Raymond Hettinger [Sat, 26 Jun 2004 23:22:57 +0000 (23:22 +0000)]
SF bug #980419: int left-shift causes memory leak

21 years agoClarify sentence at end of Intermezzo section stating that PyMODINIT_FUNC will
Brett Cannon [Sat, 26 Jun 2004 23:10:32 +0000 (23:10 +0000)]
Clarify sentence at end of Intermezzo section stating that PyMODINIT_FUNC will
be discussed later by saying it is the function return type of the sample code
to make spotting it easier.

21 years agoInstall Barry's smtpd.py daemon.
Skip Montanaro [Sat, 26 Jun 2004 22:29:42 +0000 (22:29 +0000)]
Install Barry's smtpd.py daemon.

21 years agoremove debugging print
Skip Montanaro [Sat, 26 Jun 2004 19:42:10 +0000 (19:42 +0000)]
remove debugging print

21 years agoAllow classes from other modules to be specified at startup. For example,
Skip Montanaro [Sat, 26 Jun 2004 19:18:49 +0000 (19:18 +0000)]
Allow classes from other modules to be specified at startup.  For example,
using the postfixproxy module from Spambayes you might start smtpd up like

    smtpd.py -c spambayes.postfixproxy.SpambayesProxy :8025 :8026

21 years agoAdd a comment with implementation notes.
Raymond Hettinger [Sat, 26 Jun 2004 04:42:06 +0000 (04:42 +0000)]
Add a comment with implementation notes.

21 years agoGet ceval.c to compile again by moving declarations before other statments.
Raymond Hettinger [Sat, 26 Jun 2004 04:34:33 +0000 (04:34 +0000)]
Get ceval.c to compile again by moving declarations before other statments.

21 years agoModules/getpath.c now compiles properly under OS X when using the
Brett Cannon [Sat, 26 Jun 2004 04:03:06 +0000 (04:03 +0000)]
Modules/getpath.c now compiles properly under OS X when using the
--disable-framework build; header file was protected in an #if using the wrong
macro to check.

Closes bug #978645.

21 years agoMassive performance improvement for C extension and builtin tracing code
Nicholas Bastin [Fri, 25 Jun 2004 23:31:06 +0000 (23:31 +0000)]
Massive performance improvement for C extension and builtin tracing code

21 years agoMake distutils "install --home" support all platforms.
Fred Drake [Fri, 25 Jun 2004 23:02:59 +0000 (23:02 +0000)]
Make distutils "install --home" support all platforms.

21 years agoCosmetic spacing fix.
Raymond Hettinger [Fri, 25 Jun 2004 22:24:35 +0000 (22:24 +0000)]
Cosmetic spacing fix.

21 years agoFix leak found by Eric Huss.
Raymond Hettinger [Fri, 25 Jun 2004 22:20:33 +0000 (22:20 +0000)]
Fix leak found by Eric Huss.

21 years agoFix leak found by Eric Huss.
Raymond Hettinger [Fri, 25 Jun 2004 22:17:39 +0000 (22:17 +0000)]
Fix leak found by Eric Huss.

21 years agoadd boilerplate so the test modules can be run as scripts
Fred Drake [Fri, 25 Jun 2004 19:04:21 +0000 (19:04 +0000)]
add boilerplate so the test modules can be run as scripts

21 years agoMove NOP to end of code transformation.
Raymond Hettinger [Thu, 24 Jun 2004 09:25:39 +0000 (09:25 +0000)]
Move NOP to end of code transformation.

21 years agomove the note about the bsddb185 module above the "See also" box; that
Fred Drake [Thu, 24 Jun 2004 06:03:59 +0000 (06:03 +0000)]
move the note about the bsddb185 module above the "See also" box; that
should always go last in the relevant section's main content, but
before child sections

21 years agoAdd compilation of timemodule.c with datetimemodule.c to get
Brett Cannon [Thu, 24 Jun 2004 01:38:47 +0000 (01:38 +0000)]
Add compilation of timemodule.c with datetimemodule.c to get
__PyTime_DoubleToTimet().

21 years agoChange comment from C++ style to C.
Brett Cannon [Thu, 24 Jun 2004 00:48:44 +0000 (00:48 +0000)]
Change comment from C++ style to C.

21 years agoLess ugly #ifdefs for C profiling fix
Nicholas Bastin [Tue, 22 Jun 2004 15:37:51 +0000 (15:37 +0000)]
Less ugly #ifdefs for C profiling fix

21 years agoOne forgotten C profiling #ifdef
Nicholas Bastin [Tue, 22 Jun 2004 04:18:47 +0000 (04:18 +0000)]
One forgotten C profiling #ifdef

21 years agoMaking C profiling a configure option (at least temporarily)
Nicholas Bastin [Tue, 22 Jun 2004 03:51:38 +0000 (03:51 +0000)]
Making C profiling a configure option (at least temporarily)

21 years agoInstall two code generation optimizations that depend on NOP.
Raymond Hettinger [Mon, 21 Jun 2004 16:31:15 +0000 (16:31 +0000)]
Install two code generation optimizations that depend on NOP.
Reduces the cost of "not" to almost zero.

21 years agoadd a couple of tests for the build_scripts command
Fred Drake [Mon, 21 Jun 2004 16:15:22 +0000 (16:15 +0000)]
add a couple of tests for the build_scripts command

21 years agoSF patch 876130: add C API to datetime module, from Anthony Tuininga.
Tim Peters [Sun, 20 Jun 2004 22:41:32 +0000 (22:41 +0000)]
SF patch 876130:  add C API to datetime module, from Anthony Tuininga.
The LaTeX is untested (well, so is the new API, for that matter).
Note that I also changed NULL to get spelled consistently in concrete.tex.
If that was a wrong thing to do, Fred should yell at me.

21 years agoPatch #975885: print file name in err msg in quiet mode
Martin v. Löwis [Sun, 20 Jun 2004 20:59:56 +0000 (20:59 +0000)]
Patch #975885: print file name in err msg in quiet mode

21 years agoImprove the documented advice on how to best use heapq.heapreplace().
Raymond Hettinger [Sun, 20 Jun 2004 09:07:53 +0000 (09:07 +0000)]
Improve the documented advice on how to best use heapq.heapreplace().

21 years agoUse PyArg_UnpackTuple() where possible.
Raymond Hettinger [Sun, 20 Jun 2004 04:23:19 +0000 (04:23 +0000)]
Use PyArg_UnpackTuple() where possible.

21 years agoBug 975996: Add _PyTime_DoubleToTimet to C API
Tim Peters [Sun, 20 Jun 2004 02:50:16 +0000 (02:50 +0000)]
Bug 975996:  Add _PyTime_DoubleToTimet to C API
New include file timefuncs.h exports private API function
_PyTime_DoubleToTimet() from timemodule.c.  timemodule should export
some other functions too (look for painful bits in datetimemodule.c).

Added insane-argument checking to datetime's assorted fromtimestamp()
and utcfromtimestamp() methods.  Added insane-argument tests of these
to test_datetime, and insane-argument tests for ctime(), localtime()
and gmtime() to test_time.

21 years agoshutil.move() will raise an exception when trying to move a directory into
Brett Cannon [Sat, 19 Jun 2004 21:11:35 +0000 (21:11 +0000)]
shutil.move() will raise an exception when trying to move a directory into
itself.

Closes bug #919012  .  Thanks Johannes Gijsbers.

21 years agoAdd news item about raising ValueError when timemodule.c code that uses
Brett Cannon [Sat, 19 Jun 2004 20:50:47 +0000 (20:50 +0000)]
Add news item about raising ValueError when timemodule.c code that uses
timestamps will lose precision thanks to time_t < double (bug #919012).

21 years agoRaise ValueError when value being stored in a time_t variable will result in
Brett Cannon [Sat, 19 Jun 2004 20:48:43 +0000 (20:48 +0000)]
Raise ValueError when value being stored in a time_t variable will result in
more than a second of precision.  Primarily affects ctime, localtime, and
gmtime.

Closes bug #919012 thanks to Tim Peters' code.

Tim suggests that the new funciton being introduced, _PyTime_DoubletoTimet(),
should be added to the internal C API and then used in datetime where
appropriate.  Not being done now for lack of time.

21 years agoAdded normalization for Windows system name. Closes SF #945665.
Marc-André Lemburg [Sat, 19 Jun 2004 17:17:00 +0000 (17:17 +0000)]
Added normalization for Windows system name. Closes SF #945665.

21 years agoChange pydoc.stripid() be able to match against 64-bit addresses by having
Brett Cannon [Sat, 19 Jun 2004 01:22:48 +0000 (01:22 +0000)]
Change pydoc.stripid() be able to match against 64-bit addresses by having
regex match from 6 to 16 characters.

21 years agopydoc.stripid() is now case-insensitive for its regex to support platforms that
Brett Cannon [Sat, 19 Jun 2004 01:02:51 +0000 (01:02 +0000)]
pydoc.stripid() is now case-insensitive for its regex to support platforms that
have pointer addresses in uppercase.

Closes bug #934282.  Thanks Robin Becker.

21 years agofix typo
Fred Drake [Fri, 18 Jun 2004 21:28:28 +0000 (21:28 +0000)]
fix typo

21 years agoIf self.packages is None (this can happen, I saw it), return
Sjoerd Mullender [Fri, 18 Jun 2004 20:39:11 +0000 (20:39 +0000)]
If self.packages is None (this can happen, I saw it), return
immediately (since None is not a sequence you can iterate over).

21 years agoDisabling end-of-loop code not reached warning on SunPro
Nicholas Bastin [Fri, 18 Jun 2004 19:57:13 +0000 (19:57 +0000)]
Disabling end-of-loop code not reached warning on SunPro

21 years agoRebuild the wininst.exe files.
Thomas Heller [Fri, 18 Jun 2004 18:30:27 +0000 (18:30 +0000)]
Rebuild the wininst.exe files.

21 years agoThe wininst.exe is no longer compressed with UPX.
Thomas Heller [Fri, 18 Jun 2004 18:29:46 +0000 (18:29 +0000)]
The wininst.exe is no longer compressed with UPX.

21 years agoFix an obvious typo (It *is* a typo, or not?)
Thomas Heller [Fri, 18 Jun 2004 17:31:23 +0000 (17:31 +0000)]
Fix an obvious typo (It *is* a typo, or not?)

21 years agoWhen loading the Python dll to run the postinstall script, try to load
Thomas Heller [Fri, 18 Jun 2004 17:03:38 +0000 (17:03 +0000)]
When loading the Python dll to run the postinstall script, try to load
it from the install directory (as reported by the registry) in case it
is not found on the default Loadlibrary search path.

Fixes SF 935091: bdist_winist post-install script fails on non-admin Python

Already backported.

21 years agoThe 'distributing python modules' manual now has an index.
Thomas Heller [Fri, 18 Jun 2004 08:27:36 +0000 (08:27 +0000)]
The 'distributing python modules' manual now has an index.

21 years agoFix typo - the module is named distutils.util.
Thomas Heller [Fri, 18 Jun 2004 06:55:28 +0000 (06:55 +0000)]
Fix typo - the module is named distutils.util.

21 years agoallow developers to more easily build a profiling version of the interpreter
Skip Montanaro [Fri, 18 Jun 2004 02:47:22 +0000 (02:47 +0000)]
allow developers to more easily build a profiling version of the interpreter
and modules by configuring with the --enable-profiling flag.

21 years agoUse getopt where possible, so this supports option letters that get
Fred Drake [Thu, 17 Jun 2004 22:04:17 +0000 (22:04 +0000)]
Use getopt where possible, so this supports option letters that get
jammed together on thos platforms.

21 years agoAdd apparently missing word for InvalidStateError definition.
Brett Cannon [Thu, 17 Jun 2004 21:34:05 +0000 (21:34 +0000)]
Add apparently missing word for InvalidStateError definition.

Closes bug #973901.  Thanks Brian Gough.

21 years agofix bug: list of data files was initialized too soon in build_py
Fred Drake [Thu, 17 Jun 2004 20:16:19 +0000 (20:16 +0000)]
fix bug: list of data files was initialized too soon in build_py

21 years agomove support code to a helper module to ease re-use
Fred Drake [Thu, 17 Jun 2004 20:14:50 +0000 (20:14 +0000)]
move support code to a helper module to ease re-use

21 years ago- add link to the downloadable package in the generated email
Fred Drake [Thu, 17 Jun 2004 18:36:54 +0000 (18:36 +0000)]
- add link to the downloadable package in the generated email
- misc. changes

21 years agoFixed end-of-loop code not reached warning when using SunPro C
Nicholas Bastin [Thu, 17 Jun 2004 18:27:18 +0000 (18:27 +0000)]
Fixed end-of-loop code not reached warning when using SunPro C

21 years agomake the tarball available for download instead of throwing it away
Fred Drake [Thu, 17 Jun 2004 17:19:12 +0000 (17:19 +0000)]
make the tarball available for download instead of throwing it away

21 years agosilly typo
Michael W. Hudson [Thu, 17 Jun 2004 15:55:53 +0000 (15:55 +0000)]
silly typo

21 years agoadd missing closing quote.
Michael W. Hudson [Thu, 17 Jun 2004 13:29:11 +0000 (13:29 +0000)]
add missing closing quote.

21 years agoPerformance tweak: allow stack_pointer and oparg to be register variables.
Armin Rigo [Thu, 17 Jun 2004 10:22:40 +0000 (10:22 +0000)]
Performance tweak: allow stack_pointer and oparg to be register variables.
SF patch #943898

21 years agoComment that getfilesystemencoding returns mbcs even on NT+. Fixes #964870.
Martin v. Löwis [Wed, 16 Jun 2004 04:53:46 +0000 (04:53 +0000)]
Comment that getfilesystemencoding returns mbcs even on NT+. Fixes #964870.

21 years agoReverse argument order for nsmallest() and nlargest().
Raymond Hettinger [Tue, 15 Jun 2004 23:53:35 +0000 (23:53 +0000)]
Reverse argument order for nsmallest() and nlargest().
Reads better when the iterable is a generator expression.

21 years agoReturn unicode strings from _getfullpathname even on W9X. Fixes #924703 .
Martin v. Löwis [Tue, 15 Jun 2004 18:49:58 +0000 (18:49 +0000)]
Return unicode strings from _getfullpathname even on W9X. Fixes #924703 .

21 years agoRemove CRLF from project files.
Martin v. Löwis [Tue, 15 Jun 2004 18:18:19 +0000 (18:18 +0000)]
Remove CRLF from project files.

21 years agoadd a test that actually installs some scripts
Fred Drake [Tue, 15 Jun 2004 16:55:46 +0000 (16:55 +0000)]
add a test that actually installs some scripts

21 years agoOne unit test for distutils is not much, but is more than we had yesterday.
Fred Drake [Tue, 15 Jun 2004 15:49:46 +0000 (15:49 +0000)]
One unit test for distutils is not much, but is more than we had yesterday.
We need to write more; hopefully the barrier is a little lower now.

21 years agoSF bug #973092: inspect.getframeinfo bug if 'context' is to big
Raymond Hettinger [Tue, 15 Jun 2004 11:22:53 +0000 (11:22 +0000)]
SF bug #973092:  inspect.getframeinfo bug if 'context' is to big

Make sure the start argument is not negative.

21 years agoadd a pointer to the Distutils Cookbook
Fred Drake [Mon, 14 Jun 2004 22:07:50 +0000 (22:07 +0000)]
add a pointer to the Distutils Cookbook

21 years agoPatch #826074: cmath.log optional base argument, fixes #823209
Raymond Hettinger [Mon, 14 Jun 2004 07:40:10 +0000 (07:40 +0000)]
Patch #826074: cmath.log optional base argument, fixes #823209
(Contributed by Andrew Gaul.)

21 years agoBack out #957240.
Martin v. Löwis [Mon, 14 Jun 2004 04:58:42 +0000 (04:58 +0000)]
Back out #957240.

21 years agoRemove a function no longer in use.
Raymond Hettinger [Mon, 14 Jun 2004 04:24:41 +0000 (04:24 +0000)]
Remove a function no longer in use.

21 years agoTeach pythoncore project about new pystrtod.c for VC7.1. This was done
Tim Peters [Mon, 14 Jun 2004 01:05:46 +0000 (01:05 +0000)]
Teach pythoncore project about new pystrtod.c for VC7.1.  This was done
a long time ago for VC6.

21 years agoSF bug #970042, lockf() signature uses len, doc refers to length (use length, same...
Neal Norwitz [Sun, 13 Jun 2004 21:11:03 +0000 (21:11 +0000)]
SF bug #970042, lockf() signature uses len, doc refers to length (use length, same as docstring)

21 years agoSF patch #969180, hotshot incorrectly computes elapsed time by Jason
Neal Norwitz [Sun, 13 Jun 2004 20:45:11 +0000 (20:45 +0000)]
SF patch #969180, hotshot incorrectly computes elapsed time by Jason
Beardsley.

If the seconds are different, we still need to calculate the differences
between milliseconds.

Also, on a Gentoo Linux (2.6.5) dual Athlon MP box with glibc 2.3,
time can go backwards.  This probably happens when the process switches
the CPU it's running on.  Time can also go backwards when running NTP.
If we detect a negative time delta (ie, time went backwards), return
a delta of 0.  This prevents an illegal array access elsewhere.
I think it's safest to *not* update prev_timeofday in this case, so we
return without updating.

Backport candidate.

21 years agoRemove compiler warning
Neal Norwitz [Sun, 13 Jun 2004 20:32:17 +0000 (20:32 +0000)]
Remove compiler warning

21 years agoMake private function static
Neal Norwitz [Sun, 13 Jun 2004 20:31:49 +0000 (20:31 +0000)]
Make private function static

21 years agoRemove warning (static not being first) when building with -W
Neal Norwitz [Sun, 13 Jun 2004 20:31:17 +0000 (20:31 +0000)]
Remove warning (static not being first) when building with -W

21 years agoRemove warning about implicit declaration of strcmp()
Neal Norwitz [Sun, 13 Jun 2004 20:29:55 +0000 (20:29 +0000)]
Remove warning about implicit declaration of strcmp()

21 years agoFixup error exits in nlargest() and nsmallest().
Raymond Hettinger [Sun, 13 Jun 2004 15:36:56 +0000 (15:36 +0000)]
Fixup error exits in nlargest() and nsmallest().

21 years agoApply heapq.nlargest() to find best matches.
Raymond Hettinger [Sun, 13 Jun 2004 09:57:33 +0000 (09:57 +0000)]
Apply heapq.nlargest() to find best matches.

21 years agoRemove unnecessary GC support. Sets cannot have cycles.
Raymond Hettinger [Sun, 13 Jun 2004 08:20:46 +0000 (08:20 +0000)]
Remove unnecessary GC support.  Sets cannot have cycles.

21 years agoAdd heapq to list of __all__ checks.
Raymond Hettinger [Sun, 13 Jun 2004 05:46:14 +0000 (05:46 +0000)]
Add heapq to list of __all__ checks.

21 years agoInstall C version of heapq.nsmallest().
Raymond Hettinger [Sun, 13 Jun 2004 05:26:33 +0000 (05:26 +0000)]
Install C version of heapq.nsmallest().

21 years agoInstall C version of heapq.nlargest().
Raymond Hettinger [Sat, 12 Jun 2004 22:48:46 +0000 (22:48 +0000)]
Install C version of heapq.nlargest().
Maxheap version of heapq.smallest() is forthcoming.

21 years agonote a really bad test (no time to fix now)
Michael W. Hudson [Sat, 12 Jun 2004 16:30:32 +0000 (16:30 +0000)]
note a really bad test (no time to fix now)

21 years agoImprove the memory performance and speed of heapq.nsmallest() by using
Raymond Hettinger [Sat, 12 Jun 2004 08:33:36 +0000 (08:33 +0000)]
Improve the memory performance and speed of heapq.nsmallest() by using
an alternate algorithm when the number of selected items is small
relative to the full iterable.

21 years agoMinor wording and spacing nits.
Raymond Hettinger [Sat, 12 Jun 2004 07:59:40 +0000 (07:59 +0000)]
Minor wording and spacing nits.

21 years agoComplete the list of weakreferencable objects.
Raymond Hettinger [Sat, 12 Jun 2004 06:56:44 +0000 (06:56 +0000)]
Complete the list of weakreferencable objects.

21 years ago* Factor out PyObject_SelfIter().
Raymond Hettinger [Sat, 12 Jun 2004 05:17:55 +0000 (05:17 +0000)]
* Factor out PyObject_SelfIter().
* Change a XDECREF to DECREF (adding an assertion just to be sure).

21 years agoAdd support for package data.
Fred Drake [Fri, 11 Jun 2004 21:50:33 +0000 (21:50 +0000)]
Add support for package data.

This is basically the support for package data from Phillip Eby's
setuptools package.  I've changed it only to fit it into the core
implementation rather than to live in subclasses, and added
documentation.

21 years agolightly modified version of my patch
Michael W. Hudson [Fri, 11 Jun 2004 18:09:28 +0000 (18:09 +0000)]
lightly modified version of my patch
[ 971323 ] make test_signal less annoying
after some comments on IRC from a highly opinionated australian who
wishes to remain anonymous.

21 years agoBug 957381: rpmbuild builds a -debuginfo rpm on recent Redhat and Fedora releases.
Anthony Baxter [Fri, 11 Jun 2004 17:16:46 +0000 (17:16 +0000)]
Bug 957381: rpmbuild builds a -debuginfo rpm on recent Redhat and Fedora releases.
Ignore it, rather than breaking.

Will backport.

(and r1.1000 for Misc/NEWS!)

21 years agofix a poorly worded error message
Anthony Baxter [Fri, 11 Jun 2004 15:57:49 +0000 (15:57 +0000)]
fix a poorly worded error message

21 years agoFix for bug #966623 - classes created with type() in an exec(, {}) don't
Anthony Baxter [Fri, 11 Jun 2004 14:41:18 +0000 (14:41 +0000)]
Fix for bug #966623 - classes created with type() in an exec(, {}) don't
have a __module__. Test for this case.

Bugfix candidate, will backport.

21 years agodump HAVE_FOPENRF stuff - obsolete
Skip Montanaro [Fri, 11 Jun 2004 04:49:03 +0000 (04:49 +0000)]
dump HAVE_FOPENRF stuff - obsolete