]> granicus.if.org Git - python/log
python
19 years agoRecord a drop request by Ken Manheimer.
Raymond Hettinger [Fri, 8 Apr 2005 19:09:19 +0000 (19:09 +0000)]
Record a drop request by Ken Manheimer.

19 years agoRecord a drop request by Moshe Zadka.
Raymond Hettinger [Fri, 8 Apr 2005 18:36:14 +0000 (18:36 +0000)]
Record a drop request by Moshe Zadka.

19 years agotest_default_encoding_issues(): Fully restore sys.setdefaultencoding.
Tim Peters [Fri, 8 Apr 2005 18:00:59 +0000 (18:00 +0000)]
test_default_encoding_issues():  Fully restore sys.setdefaultencoding.

test_site often failed under "regrtest.py -r", because this xmlrpc test
left sys with a setdefaultencoding attribute, but loading site.py removes
that attribute and test_site.py verifies the attribute is gone.  Changed
this test to get rid of sys.setdefaultencoding if it didn't exist when
this test started.

Don't know whether this is a bugfix (backport) candidate.

19 years agoInfo about Eric Price.
Tim Peters [Fri, 8 Apr 2005 17:16:28 +0000 (17:16 +0000)]
Info about Eric Price.

19 years agoUpdate permissions log for Reedy, Holden, Haring, and Cole.
Raymond Hettinger [Fri, 8 Apr 2005 03:19:09 +0000 (03:19 +0000)]
Update permissions log for Reedy, Holden, Haring, and Cole.

19 years agoIn a threads-disabled build, typing Ctrl-C into a raw_input() crashed,
Michael W. Hudson [Thu, 7 Apr 2005 10:11:19 +0000 (10:11 +0000)]
In a threads-disabled build, typing Ctrl-C into a raw_input() crashed,
because (essentially) I didn't realise that PY_BEGIN/END_ALLOW_THREADS
actually expanded to nothing under a no-threads build, so if you somehow
NULLed out the threadstate (e.g. by calling PyThread_SaveThread) it would
stay NULLed when you return to Python.  Argh!

Backport candidate.

19 years agoSF bug #1178269 Clarify when isMappingType/isSequenceType is True.
Raymond Hettinger [Thu, 7 Apr 2005 05:36:17 +0000 (05:36 +0000)]
SF bug #1178269 Clarify when isMappingType/isSequenceType is True.

19 years agoSF bug #1178255: 256 should read 255 in operator module docs
Raymond Hettinger [Thu, 7 Apr 2005 04:38:04 +0000 (04:38 +0000)]
SF bug #1178255: 256 should read 255 in operator module docs

19 years agoMake that a C, not a C++, comment.
Michael W. Hudson [Wed, 6 Apr 2005 13:05:18 +0000 (13:05 +0000)]
Make that a C, not a C++, comment.

19 years agoAdd a comment explaining the import of longintrepr.h.
Michael W. Hudson [Wed, 6 Apr 2005 11:27:40 +0000 (11:27 +0000)]
Add a comment explaining the import of longintrepr.h.

19 years agoBy popular demand from Linux-heads(!), renamed developers to developers.txt.
Tim Peters [Wed, 6 Apr 2005 00:59:02 +0000 (00:59 +0000)]
By popular demand from Linux-heads(!), renamed developers to developers.txt.

19 years agoBegin a log of developer permissions.
Raymond Hettinger [Tue, 5 Apr 2005 22:35:15 +0000 (22:35 +0000)]
Begin a log of developer permissions.

19 years agoSF bug #1168983: ftplib.py string index out of range
Raymond Hettinger [Tue, 5 Apr 2005 04:31:09 +0000 (04:31 +0000)]
SF bug #1168983:  ftplib.py string index out of range

* resp[:1] in '123' # after Py2.2, this allowed blank responses to pass.
* replace <> with !=
* provide a usage message for empty command line calls

Backport candidate.

19 years agoFix typos.
Walter Dörwald [Mon, 4 Apr 2005 21:42:22 +0000 (21:42 +0000)]
Fix typos.

19 years agoFix for SF bug #1175396: readline() will now read one more character, if
Walter Dörwald [Mon, 4 Apr 2005 21:38:47 +0000 (21:38 +0000)]
Fix for SF bug #1175396: readline() will now read one more character, if
the last character read is "\r" (and size is None, i.e. we're allowed to
call read() multiple times), so that we can return the correct line ending
(this additional character might be a "\n").

If the stream is temporarily exhausted, we might return the wrong line ending
(if the last character read is "\r" and the next one (after the byte stream
provides more data) is "\n", but at least the atcr member ensure that we
get the correct number of lines (i.e. this "\n" will not be treated as
another line ending.)

19 years agoFill docstrings for module and functions, extracted from the tex
Hye-Shik Chang [Mon, 4 Apr 2005 16:32:07 +0000 (16:32 +0000)]
Fill docstrings for module and functions, extracted from the tex
documentation.  (Patch #1173245, Contributed by Jeremy Yallop)

19 years agoMake a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to define
Hye-Shik Chang [Mon, 4 Apr 2005 15:49:02 +0000 (15:49 +0000)]
Make a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to define
a default value of recursion limit from build systems.  1000 levels
are still too high for some 64bit systems.

19 years agoFix testcase for 64bit BSD systems: long is 8 bytes for those systems
Hye-Shik Chang [Mon, 4 Apr 2005 15:21:04 +0000 (15:21 +0000)]
Fix testcase for 64bit BSD systems: long is 8 bytes for those systems
so there's no need to pad after off_t members.  And a small typo fix.

19 years agoAdded threadName to LogRecord
Vinay Sajip [Thu, 31 Mar 2005 20:18:06 +0000 (20:18 +0000)]
Added threadName to LogRecord

19 years agoAdded threadName and now using re-entrant lock
Vinay Sajip [Thu, 31 Mar 2005 20:16:55 +0000 (20:16 +0000)]
Added threadName and now using re-entrant lock

19 years agoSince PyPI only accepts UTF-8 encoded data now, make sure that the data is
Walter Dörwald [Thu, 31 Mar 2005 13:57:38 +0000 (13:57 +0000)]
Since PyPI only accepts UTF-8 encoded data now, make sure that the data is
properly encoded and include the encoding in the Content-Type header.

19 years agoNEWS entries for the bugs I fixed yesterday.
Michael W. Hudson [Thu, 31 Mar 2005 09:35:44 +0000 (09:35 +0000)]
NEWS entries for the bugs I fixed yesterday.

19 years agoI suppose a bug report or even a fix would be a better response, but
Michael W. Hudson [Wed, 30 Mar 2005 16:41:55 +0000 (16:41 +0000)]
I suppose a bug report or even a fix would be a better response, but
commit a yelp about a noted flaw the error messages for METH_KEYWORDS
functions under some circumstances.

19 years agoFix for rather inaccurately titled bug
Michael W. Hudson [Wed, 30 Mar 2005 16:32:10 +0000 (16:32 +0000)]
Fix for rather inaccurately titled bug

1165306 ] Property access with decorator makes interpreter crash

Don't allow the creation of unbound methods with NULL im_class, because
attempting to call such crashes.

Backport candidate.

19 years agoMinor wording fix.
Michael W. Hudson [Wed, 30 Mar 2005 16:25:34 +0000 (16:25 +0000)]
Minor wording fix.

19 years agoFixes for
Michael W. Hudson [Wed, 30 Mar 2005 11:21:53 +0000 (11:21 +0000)]
Fixes for

1166660 ] The readline module can cause python to segfault

It seems to me that the code I'm rewriting here attempted to call any
user-supplied hook functions using the thread state of the thread that
called the hook-setting function, as opposed to that of the thread
that is currently executing.  This doesn't work, in general.

Fix this by using the PyGILState API (It wouldn't be that hard to
define a dummy version of said API when #ifndef WITH_THREAD, would
it?).

Also, check the conversion to integer of the return value of a hook
function for errors (this problem was mentioned in the ipython bug
report linked to in the above bug).

19 years agoBe a bit more accurate.
Michael W. Hudson [Wed, 30 Mar 2005 10:09:12 +0000 (10:09 +0000)]
Be a bit more accurate.

19 years agoI don't think it's particularly accurate to say Guido is maintaining
Michael W. Hudson [Wed, 30 Mar 2005 09:38:12 +0000 (09:38 +0000)]
I don't think it's particularly accurate to say Guido is maintaining
this module any more.

19 years agoadd 2.4.1 to the release history
Fred Drake [Tue, 29 Mar 2005 16:06:51 +0000 (16:06 +0000)]
add 2.4.1 to the release history

19 years agomerge from branch
Anthony Baxter [Tue, 29 Mar 2005 16:05:36 +0000 (16:05 +0000)]
merge from branch

19 years agoUpdate NEWS for patch 1171735 (Darwin 8 build fixes)
Bob Ippolito [Tue, 29 Mar 2005 13:47:59 +0000 (13:47 +0000)]
Update NEWS for patch 1171735 (Darwin 8 build fixes)

19 years agoMove exception finalisation later in the shutdown process - this
Anthony Baxter [Tue, 29 Mar 2005 13:36:16 +0000 (13:36 +0000)]
Move exception finalisation later in the shutdown process - this
fixes the crash seen in bug #1165761

19 years agoSF patch 1167316: doctest.py fails self-test if run directly.
Tim Peters [Mon, 28 Mar 2005 23:50:54 +0000 (23:50 +0000)]
SF patch 1167316:  doctest.py fails self-test if run directly.

Patch by Ilya Sandler.

Bugfix candidate.

19 years agopatch [1171735] - Darwin 8's headers disable functionality when
Bob Ippolito [Mon, 28 Mar 2005 23:23:47 +0000 (23:23 +0000)]
patch [1171735] - Darwin 8's headers disable functionality when
POSIX is enabled.  This prevents the toolbox glue, all of Carbon,
and various other non-POSIX features from compiling.  The POSIX
symbols are  still used by default, so turning off the #define
doesn't hurt.

Additionally, linker flags have changed for Darwin 8, and are
different for Darwin 8/gcc4 (default) and Darwin 8/gcc3.3.

Approved by Anthony

19 years agoMention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.
Martin v. Löwis [Mon, 28 Mar 2005 15:29:28 +0000 (15:29 +0000)]
Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.
Will backport to 2.4.

19 years agoAdd 0 to _POSIX_SEMAPHORES. Will backport to 2.4.
Martin v. Löwis [Mon, 28 Mar 2005 12:34:20 +0000 (12:34 +0000)]
Add 0 to _POSIX_SEMAPHORES. Will backport to 2.4.

19 years agoConditionally export a few more AFMT_* macros: AFMT_U16_NE, AFMT_S32_LE,
Greg Ward [Mon, 28 Mar 2005 02:40:46 +0000 (02:40 +0000)]
Conditionally export a few more AFMT_* macros: AFMT_U16_NE, AFMT_S32_LE,
AFMT_S32_BE, AFMT_MPEG.

19 years agoSF #1169212: merge from 2.4 branch: fix silly typo in explaining AFMT
Greg Ward [Mon, 28 Mar 2005 02:34:59 +0000 (02:34 +0000)]
SF #1169212: merge from 2.4 branch: fix silly typo in explaining AFMT
macros: U16 is unsigned and S16 is signed.  Duh.  Clarify surrounding
text a bit and refer to OSS docs.

19 years agoWhitespace normalization.
Tim Peters [Mon, 28 Mar 2005 01:08:02 +0000 (01:08 +0000)]
Whitespace normalization.

19 years agoTwo lines in this file had unbalanced parentheses -- couldn't possibly
Tim Peters [Mon, 28 Mar 2005 01:05:48 +0000 (01:05 +0000)]
Two lines in this file had unbalanced parentheses -- couldn't possibly
work (SyntaxErrors at compile time).

I slammed in what looked like the obvious fixes, but someone who
understands this file should check my work.

19 years agoFix whitespace.
Raymond Hettinger [Sun, 27 Mar 2005 20:19:05 +0000 (20:19 +0000)]
Fix whitespace.

19 years agoSF patch #1171417: bug fix for islice() in docs
Raymond Hettinger [Sun, 27 Mar 2005 20:11:44 +0000 (20:11 +0000)]
SF patch #1171417:  bug fix for islice() in docs

19 years ago* Fix decimal's handling of foreign types. Now returns NotImplemented
Raymond Hettinger [Sun, 27 Mar 2005 10:47:39 +0000 (10:47 +0000)]
* Fix decimal's handling of foreign types.  Now returns NotImplemented
  instead of raising a TypeError.  Allows other types to successfully
  implement __radd__() style methods.
* Remove future division import from test suite.
* Remove test suite's shadowing of __builtin__.dir().

19 years agoSF bug #1770766: weakref proxy has incorrect __nonzero__ behavior.
Raymond Hettinger [Sun, 27 Mar 2005 03:04:54 +0000 (03:04 +0000)]
SF bug #1770766:  weakref proxy has incorrect __nonzero__ behavior.

19 years agoAdd missing socket import
Martin v. Löwis [Thu, 24 Mar 2005 19:40:57 +0000 (19:40 +0000)]
Add missing socket import

19 years agoFunction signatures for tp_descr_get and tp_descr_set.
Thomas Heller [Thu, 24 Mar 2005 07:45:53 +0000 (07:45 +0000)]
Function signatures for tp_descr_get and tp_descr_set.

19 years agominor cleanup
Fred Drake [Thu, 24 Mar 2005 07:00:05 +0000 (07:00 +0000)]
minor cleanup

19 years agoclean up the underscore mess for the typeset formats so that subscripts
Fred Drake [Thu, 24 Mar 2005 06:21:37 +0000 (06:21 +0000)]
clean up the underscore mess for the typeset formats so that subscripts
work in math displays (thanks to Bo Peng on the Doc-SIG)

19 years agoMake SRPMs pyversion 'any'.
Martin v. Löwis [Wed, 23 Mar 2005 22:16:22 +0000 (22:16 +0000)]
Make SRPMs pyversion 'any'.

19 years agoMake dist_files a triple, with the Python target version included,
Martin v. Löwis [Wed, 23 Mar 2005 18:54:36 +0000 (18:54 +0000)]
Make dist_files a triple, with the Python target version included,
so that bdist_wininst can specify 'any'.

19 years agoFix typo.
Walter Dörwald [Wed, 23 Mar 2005 10:38:59 +0000 (10:38 +0000)]
Fix typo.

19 years agoMake the signature detached.
Martin v. Löwis [Tue, 22 Mar 2005 23:02:54 +0000 (23:02 +0000)]
Make the signature detached.

19 years agoAdd tests for tuple, list and UserList that initialize the object from
Walter Dörwald [Tue, 22 Mar 2005 22:43:28 +0000 (22:43 +0000)]
Add tests for tuple, list and UserList that initialize the object from
various iterables.

(Copied from test_deque.py as suggested by Jim Jewett in SF bug #1166274)

19 years agoFix registration of output file.
Martin v. Löwis [Tue, 22 Mar 2005 22:23:29 +0000 (22:23 +0000)]
Fix registration of output file.

19 years agoDon't set the Python version for sdist uploads.
Martin v. Löwis [Tue, 22 Mar 2005 20:32:41 +0000 (20:32 +0000)]
Don't set the Python version for sdist uploads.

19 years agoUpload GPG signature.
Martin v. Löwis [Tue, 22 Mar 2005 15:51:14 +0000 (15:51 +0000)]
Upload GPG signature.

19 years agoFix typo.
Walter Dörwald [Tue, 22 Mar 2005 11:22:38 +0000 (11:22 +0000)]
Fix typo.

19 years agofix Python style guide conformance
Fred Drake [Tue, 22 Mar 2005 05:43:18 +0000 (05:43 +0000)]
fix Python style guide conformance

19 years ago- fix markup bugs
Fred Drake [Tue, 22 Mar 2005 04:09:37 +0000 (04:09 +0000)]
- fix markup bugs
- more consistent markup
- elaborate a couple of points

19 years agoAdd list tests that ensure that remove() removes the first occurrence.
Walter Dörwald [Mon, 21 Mar 2005 21:31:47 +0000 (21:31 +0000)]
Add list tests that ensure that remove() removes the first occurrence.
(Copied from test_deque.py as suggested by Jim Jewett in SF bug #1166274)

19 years agoActually add the implementation of the command.
Martin v. Löwis [Mon, 21 Mar 2005 21:00:59 +0000 (21:00 +0000)]
Actually add the implementation of the command.

19 years agoAdd the upload command. Make all dist commands register their
Martin v. Löwis [Mon, 21 Mar 2005 20:56:35 +0000 (20:56 +0000)]
Add the upload command. Make all dist commands register their
outputs with the distribution object.

19 years agoAdd comment about optional option for keeping indentation level from previous
Brett Cannon [Mon, 21 Mar 2005 20:41:51 +0000 (20:41 +0000)]
Add comment about optional option for keeping indentation level from previous
line.

19 years agocorrect ontosys url - closes 1167329
Skip Montanaro [Mon, 21 Mar 2005 19:39:16 +0000 (19:39 +0000)]
correct ontosys url - closes 1167329

19 years ago- rename check_provision() to split_revision()
Fred Drake [Mon, 21 Mar 2005 06:36:32 +0000 (06:36 +0000)]
- rename check_provision() to split_revision()
- fix indentation to conform to the Python style guide
- add more tests and documentation

19 years agofix obscure markup error, wrapping a long line
Fred Drake [Mon, 21 Mar 2005 05:51:01 +0000 (05:51 +0000)]
fix obscure markup error, wrapping a long line

19 years agofix environment broken in revision 1.6
Fred Drake [Mon, 21 Mar 2005 05:47:11 +0000 (05:47 +0000)]
fix environment broken in revision 1.6

19 years agoPEP 314 implementation (client side):
Fred Drake [Sun, 20 Mar 2005 22:19:47 +0000 (22:19 +0000)]
PEP 314 implementation (client side):
added support for the provides, requires, and obsoletes metadata fields

19 years agohelper code, mostly from Andy Harrington, for PEP 314 completion
Fred Drake [Sun, 20 Mar 2005 22:17:02 +0000 (22:17 +0000)]
helper code, mostly from Andy Harrington, for PEP 314 completion

19 years agoWrite part of PEP 309 section
Andrew M. Kuchling [Sun, 20 Mar 2005 21:42:04 +0000 (21:42 +0000)]
Write part of PEP 309 section

19 years agoDescribe how to get back lib-old; if this isn't the best way, please let me know
Andrew M. Kuchling [Sun, 20 Mar 2005 20:06:49 +0000 (20:06 +0000)]
Describe how to get back lib-old; if this isn't the best way, please let me know

19 years agoAdd item
Andrew M. Kuchling [Sun, 20 Mar 2005 19:52:18 +0000 (19:52 +0000)]
Add item

19 years agoDescribe various things
Andrew M. Kuchling [Sun, 20 Mar 2005 19:26:30 +0000 (19:26 +0000)]
Describe various things

19 years agofix two typos in python(1)
Matthias Klose [Sun, 20 Mar 2005 14:16:03 +0000 (14:16 +0000)]
fix two typos in python(1)

19 years agoFill-in missing argspec.
Raymond Hettinger [Sat, 19 Mar 2005 16:27:33 +0000 (16:27 +0000)]
Fill-in missing argspec.

19 years agoApply remove's mutation test after every equality test.
Raymond Hettinger [Sat, 19 Mar 2005 00:00:51 +0000 (00:00 +0000)]
Apply remove's mutation test after every equality test.

19 years agoAdd a remove() method to collections.deque objects.
Raymond Hettinger [Fri, 18 Mar 2005 21:20:23 +0000 (21:20 +0000)]
Add a remove() method to collections.deque objects.

19 years agoadd UnicodeReader and UnicodeWriter example classes
Skip Montanaro [Fri, 18 Mar 2005 16:56:37 +0000 (16:56 +0000)]
add UnicodeReader and UnicodeWriter example classes

19 years agoFix typo.
Walter Dörwald [Fri, 18 Mar 2005 10:28:24 +0000 (10:28 +0000)]
Fix typo.

19 years agoPatch #1163249 - Correctly handle _POSIX_SEMAPHORES == -1 to mean no
Anthony Baxter [Wed, 16 Mar 2005 04:15:07 +0000 (04:15 +0000)]
Patch #1163249 - Correctly handle _POSIX_SEMAPHORES == -1 to mean no
support for posix semaphores.

19 years agotypo
Skip Montanaro [Wed, 16 Mar 2005 03:51:56 +0000 (03:51 +0000)]
typo

19 years agoadd two more extensions:
Fred Drake [Tue, 15 Mar 2005 15:52:08 +0000 (15:52 +0000)]
add two more extensions:
- .wsdl --> Web Service Definition Language
- .xpdl --> XML Process Definition Language

19 years agoBug #1163325: "special" decimals aren't hashable
Raymond Hettinger [Tue, 15 Mar 2005 04:59:17 +0000 (04:59 +0000)]
Bug #1163325:  "special" decimals aren't hashable

19 years agoReuse componentids for *.dll across minor releases.
Martin v. Löwis [Tue, 15 Mar 2005 00:39:40 +0000 (00:39 +0000)]
Reuse componentids for *.dll across minor releases.
Indicate to the user when this is an upgrade installation.
Make CHM file non-advertised.
Backported to 2.4.

19 years agoConfigure bug reporting address.
Martin v. Löwis [Mon, 14 Mar 2005 21:23:33 +0000 (21:23 +0000)]
Configure bug reporting address.

19 years agoAdd default value for "whence" argument.
Walter Dörwald [Mon, 14 Mar 2005 19:25:41 +0000 (19:25 +0000)]
Add default value for "whence" argument.

19 years agoReset internal buffers when seek() is called. This fixes SF bug #1156259.
Walter Dörwald [Mon, 14 Mar 2005 19:06:30 +0000 (19:06 +0000)]
Reset internal buffers when seek() is called. This fixes SF bug #1156259.

19 years agoAdd more UUIDs. Update custom actions for Itanium.
Martin v. Löwis [Mon, 14 Mar 2005 17:20:13 +0000 (17:20 +0000)]
Add more UUIDs. Update custom actions for Itanium.
Backported to 2.4

19 years agoMade traceback unconditional, to avoid lock contention problems when logging errors...
Vinay Sajip [Sun, 13 Mar 2005 09:57:46 +0000 (09:57 +0000)]
Made traceback unconditional, to avoid lock contention problems when logging errors occur in a custom importer (SF path #1158052).

19 years agoAdded optional encoding argument to file handlers.
Vinay Sajip [Sun, 13 Mar 2005 09:56:36 +0000 (09:56 +0000)]
Added optional encoding argument to file handlers.

19 years agoAdded optional encoding argument to file handlers. Made traceback import unconditiona...
Vinay Sajip [Sun, 13 Mar 2005 09:54:31 +0000 (09:54 +0000)]
Added optional encoding argument to file handlers. Made traceback import unconditional, to avoid lock contention problems which occur when logging from custom importers (SF patch #1158052)

19 years agoPort bugfix from 2.4 maint.
Tim Peters [Sat, 12 Mar 2005 19:05:58 +0000 (19:05 +0000)]
Port bugfix from 2.4 maint.

Bug #1160802:  Can't build Zope on Windows w/ 2.4.1c1.

MSVCCompiler.initialize():  set self.initialized to True, as suggested
by AMK.  Else we keep growing the PATH endlessly, with each new C
extension built, until putenv() complains.

No change to NEWS because the patch that created this bug is also new
for 2.5a1 (so there's no change here to any code yet released from HEAD).

19 years agoPatch #1159931/bug #1143895: inspect.getsource failed when functions,
Johannes Gijsbers [Sat, 12 Mar 2005 16:37:11 +0000 (16:37 +0000)]
Patch #1159931/bug #1143895: inspect.getsource failed when functions,
etc., had comments after the colon, and some other cases. This patch
take a simpler approach that doesn't rely on looking for a ':'. Thanks
Simon Percivall!

20 years agoRevised the itertools quantifier recipes to match the performance of the
Raymond Hettinger [Fri, 11 Mar 2005 22:17:30 +0000 (22:17 +0000)]
Revised the itertools quantifier recipes to match the performance of the
new builtins.

20 years agoAdd two new functions, any() and all().
Raymond Hettinger [Fri, 11 Mar 2005 06:49:40 +0000 (06:49 +0000)]
Add two new functions, any() and all().

20 years agoTest partial() with bound/unbound methods.
Raymond Hettinger [Fri, 11 Mar 2005 06:48:49 +0000 (06:48 +0000)]
Test partial() with bound/unbound methods.

20 years agoApply itemgetter() instead of lambda.
Raymond Hettinger [Fri, 11 Mar 2005 06:46:45 +0000 (06:46 +0000)]
Apply itemgetter() instead of lambda.

20 years agoFix test for socket.getfqdn() to also include the name returned by
Brett Cannon [Fri, 11 Mar 2005 00:04:17 +0000 (00:04 +0000)]
Fix test for socket.getfqdn() to also include the name returned by
socket.gethostname() in the check for a valid return.

Also clarified docs (official and docstring) that the value from gethostname()
is returned if gethostbyaddr() doesn't do the job.

20 years agomerge from branches
Anthony Baxter [Thu, 10 Mar 2005 13:47:17 +0000 (13:47 +0000)]
merge from branches

20 years ago- fix generated Texinfo markup for \deprecated
Fred Drake [Thu, 10 Mar 2005 05:02:18 +0000 (05:02 +0000)]
- fix generated Texinfo markup for \deprecated
- add support for additional markup: \leq, \textbar, \textit
- add a comment about the non-support for the Euro character
(ported from release24-maint branch release 1.10.4.2)