]> granicus.if.org Git - python/log
python
19 years agogetpythonregpath(): Squash compiler warning about
Tim Peters [Thu, 16 Feb 2006 00:35:06 +0000 (00:35 +0000)]
getpythonregpath():  Squash compiler warning about
mixing signed and unsigned types in comparison.
Relatedly, `dataSize` is declared as DWORD, not as
int, so change relevant cast from (int) to (DWORD).

19 years agoRemove two unused Py_ssize_t variables (merge glitches, looks like.)
Thomas Wouters [Wed, 15 Feb 2006 23:10:32 +0000 (23:10 +0000)]
Remove two unused Py_ssize_t variables (merge glitches, looks like.)

19 years agoAvoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize
Thomas Wouters [Wed, 15 Feb 2006 23:08:56 +0000 (23:08 +0000)]
Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize
whitespace.

19 years agoAdded some more versionchanged markup.
Vinay Sajip [Wed, 15 Feb 2006 21:47:32 +0000 (21:47 +0000)]
Added some more versionchanged markup.

19 years agoRemove C99ism.
Martin v. Löwis [Wed, 15 Feb 2006 19:56:18 +0000 (19:56 +0000)]
Remove C99ism.

19 years agoDrop py:lastmerged.
Martin v. Löwis [Wed, 15 Feb 2006 18:58:59 +0000 (18:58 +0000)]
Drop py:lastmerged.

19 years agoMerge ssize_t branch.
Martin v. Löwis [Wed, 15 Feb 2006 17:27:45 +0000 (17:27 +0000)]
Merge ssize_t branch.

19 years agouse correct function in example
Fred Drake [Wed, 15 Feb 2006 06:55:57 +0000 (06:55 +0000)]
use correct function in example

19 years agoFind test failures consistently
Neal Norwitz [Wed, 15 Feb 2006 06:07:32 +0000 (06:07 +0000)]
Find test failures consistently

19 years agorandombits(): Stop compiler warning about mixing
Tim Peters [Wed, 15 Feb 2006 03:01:30 +0000 (03:01 +0000)]
randombits():  Stop compiler warning about mixing
signed with unsigned types in comparison.

19 years agoAdd _lsprof.
Martin v. Löwis [Tue, 14 Feb 2006 21:25:29 +0000 (21:25 +0000)]
Add _lsprof.

19 years agoAdd build support for AMD64.
Martin v. Löwis [Tue, 14 Feb 2006 20:42:55 +0000 (20:42 +0000)]
Add build support for AMD64.

19 years agoNew test code failed to close the file. This caused
Tim Peters [Tue, 14 Feb 2006 17:41:18 +0000 (17:41 +0000)]
New test code failed to close the file.  This caused
test_file to fail on Windows in reality (can't delete
a still-open file), but a new bare "except:" hid that
test_file failed on Windows, and leaving behind the
still-open TESTFN caused a cascade of bogus failures
in later tests.

So, close the file, and stop hiding failure to unlink.

19 years ago* Refcount leak. It was just a reference to Py_None, but still.
Armin Rigo [Tue, 14 Feb 2006 15:50:44 +0000 (15:50 +0000)]
* Refcount leak.  It was just a reference to Py_None, but still.

* Allow the 3rd argument to generator.throw() to be None.
  The 'raise' statement does the same, and anyway it follows the
  general policy that optional arguments of built-ins should, when
  reasonable, have a default value specifiable from Python.

19 years agoSupport 2.4 (released versions) better. (rsync was not working with adding the ...
Neal Norwitz [Tue, 14 Feb 2006 08:14:16 +0000 (08:14 +0000)]
Support 2.4 (released versions) better.  (rsync was not working with adding the *.  Only some files/dirs were copied, not everything.)

19 years agoDoc some user visible changes
Neal Norwitz [Mon, 13 Feb 2006 02:04:37 +0000 (02:04 +0000)]
Doc some user visible changes

19 years agoTry to improve name based on discussion on python-checkins with Jim Jewett
Neal Norwitz [Mon, 13 Feb 2006 00:35:21 +0000 (00:35 +0000)]
Try to improve name based on discussion on python-checkins with Jim Jewett

19 years agoSF patch #1397960: When mixing file-iteration and
Thomas Wouters [Sun, 12 Feb 2006 11:53:32 +0000 (11:53 +0000)]
SF patch #1397960: When mixing file-iteration and
readline/readlines/read/readinto, loudly break by raising ValueError, rather
than silently deliver data out of order or hitting EOF prematurely.

Probably not a bugfix candidate, even though it affects no 'working' code.

19 years agoRenamed _length_cue() to __length_hint__(). See:
Armin Rigo [Sat, 11 Feb 2006 21:32:43 +0000 (21:32 +0000)]
Renamed _length_cue() to __length_hint__().  See:
http://mail.python.org/pipermail/python-dev/2006-February/060524.html

19 years agoWhitespace normalization.
Tim Peters [Sat, 11 Feb 2006 18:32:21 +0000 (18:32 +0000)]
Whitespace normalization.

19 years agoEven more copyright year locations!
Georg Brandl [Sat, 11 Feb 2006 18:22:59 +0000 (18:22 +0000)]
Even more copyright year locations!

19 years agoPatch #428494: Prefer linking against ncursesw over ncurses library
Martin v. Löwis [Sat, 11 Feb 2006 15:55:14 +0000 (15:55 +0000)]
Patch #428494: Prefer linking against ncursesw over ncurses library

19 years agoUpdate general copyright years to 2006.
Georg Brandl [Sat, 11 Feb 2006 15:30:36 +0000 (15:30 +0000)]
Update general copyright years to 2006.

19 years agoIntroduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE.
Martin v. Löwis [Sat, 11 Feb 2006 09:27:05 +0000 (09:27 +0000)]
Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE.
Proposed by Tim Peters.

19 years agoExplain the clearing of the stack in a comment in Python/ceval.c's
Thomas Wouters [Fri, 10 Feb 2006 22:51:45 +0000 (22:51 +0000)]
Explain the clearing of the stack in a comment in Python/ceval.c's
call_function(), rather than commenting on the lack of an explanation in a
comment.

19 years agoOne more mod for support of C++ classes.
Jack Jansen [Fri, 10 Feb 2006 22:15:09 +0000 (22:15 +0000)]
One more mod for support of C++ classes.

19 years agoAvoid linking python with readline.
Martin v. Löwis [Fri, 10 Feb 2006 20:49:30 +0000 (20:49 +0000)]
Avoid linking python with readline.

19 years agoFor overriding C++ methods we also need to know whether a parameter
Jack Jansen [Fri, 10 Feb 2006 16:17:24 +0000 (16:17 +0000)]
For overriding C++ methods we also need to know whether a parameter
is an output parameter or not. Added support for that.

19 years agoThe default timer unit was incorrectly measured in milliseconds instead
Armin Rigo [Fri, 10 Feb 2006 13:19:53 +0000 (13:19 +0000)]
The default timer unit was incorrectly measured in milliseconds instead
of seconds, producing numbers 1000 times too large.  It would be nice to
write a test for this, but how...  (thanks mwh)

19 years agoAdded information on function name added to LogRecord, and the 'extra' keyword parameter.
Vinay Sajip [Thu, 9 Feb 2006 08:54:11 +0000 (08:54 +0000)]
Added information on function name added to LogRecord, and the 'extra' keyword parameter.

19 years agoAdded function name to LogRecord.
Vinay Sajip [Thu, 9 Feb 2006 08:48:36 +0000 (08:48 +0000)]
Added function name to LogRecord.

19 years agoPropagate exceptions from shutdown() if raiseExceptions is not set.
Vinay Sajip [Thu, 9 Feb 2006 08:34:14 +0000 (08:34 +0000)]
Propagate exceptions from shutdown() if raiseExceptions is not set.
Added 'extra' keyword argument handling to logging calls, as discussed on python-dev.

19 years agoAdded lock acquisition/release around shared data structure manipulation
Vinay Sajip [Thu, 9 Feb 2006 08:31:00 +0000 (08:31 +0000)]
Added lock acquisition/release around shared data structure manipulation

19 years agoBe a little less sensitive to failures. Only check for the result from
Neal Norwitz [Thu, 9 Feb 2006 05:08:56 +0000 (05:08 +0000)]
Be a little less sensitive to failures.  Only check for the result from
regrtest.py.  If we grep for just "fail", that finds bsddb deadlock
messages, which presumably are just warnings.  They don't cause
a test failure.

19 years agoAdd doc discussing how AST compiler is structured and designed.
Brett Cannon [Thu, 9 Feb 2006 02:43:14 +0000 (02:43 +0000)]
Add doc discussing how AST compiler is structured and designed.

It is out of date, though, thanks to lacking info on the arena API.  It also
should eventually be removed in favor of updating PEP 339.

19 years agoPort relevant patches for SF 1409455 to the trunk for email 3.0/Python 2.5.
Barry Warsaw [Wed, 8 Feb 2006 14:34:21 +0000 (14:34 +0000)]
Port relevant patches for SF 1409455 to the trunk for email 3.0/Python 2.5.
Will port to Python 2.4.

19 years agoAdded the cProfile module.
Armin Rigo [Wed, 8 Feb 2006 12:53:56 +0000 (12:53 +0000)]
Added the cProfile module.
Based on lsprof (patch #1212837) by Brett Rosen and Ted Czotter.
With further editing by Michael Hudson and myself.
History in svn repo: http://codespeak.net/svn/user/arigo/hack/misc/lsprof

* Module/_lsprof.c is the internal C module, Lib/cProfile.py a wrapper.
* pstats.py updated to display cProfile's caller/callee timings if available.
* setup.py and NEWS updated.
* documentation updates in the profiler section:
   - explain the differences between the three profilers that we have now
   - profile and cProfile can use a unified documentation, like (c)Pickle
   - mention that hotshot is "for specialized usage" now
   - removed references to the "old profiler" that no longer exists
* test updates:
   - extended test_profile to cover delicate cases like recursion
   - added tests for the caller/callee displays
   - added test_cProfile, performing the same tests for cProfile
* TO-DO:
   - cProfile gives a nicer name to built-in, particularly built-in methods,
     which could be backported to profile.
   - not tested on Windows recently!

19 years agoUpdate projected release date
Andrew M. Kuchling [Wed, 8 Feb 2006 11:36:09 +0000 (11:36 +0000)]
Update projected release date

19 years agoFixed an oversight and a misunderstanding of PEP253:
Jack Jansen [Tue, 7 Feb 2006 22:28:09 +0000 (22:28 +0000)]
Fixed an oversight and a misunderstanding of PEP253:
- Call tp_dealloc on the static baseclass, not dynamic (which leads to
  infinite loops with more than one baseclass)
- Call tp_new and tp_init on baseclasses (overridable)
-This line, and those below, will be ignored--

M    bgen/bgenObjectDefinition.py

19 years agoRemoved defensive test in Handler.close
Vinay Sajip [Tue, 7 Feb 2006 13:55:52 +0000 (13:55 +0000)]
Removed defensive test in Handler.close

19 years agoSaved and restored logging._handlerList at the same time as saving/restoring logging...
Vinay Sajip [Tue, 7 Feb 2006 13:44:48 +0000 (13:44 +0000)]
Saved and restored logging._handlerList at the same time as saving/restoring logging._handlers.

19 years agoAdd versionadded note for new methods
Neal Norwitz [Tue, 7 Feb 2006 07:23:26 +0000 (07:23 +0000)]
Add versionadded note for new methods

19 years agoBug #876637, prevent stack corruption when socket descriptor
Neal Norwitz [Tue, 7 Feb 2006 07:04:46 +0000 (07:04 +0000)]
Bug #876637, prevent stack corruption when socket descriptor
is larger than FD_SETSIZE.

This can only be acheived with ulimit -n SOME_NUMBER_BIGGER_THAN_FD_SETSIZE
which is typically only available to root.  Since this wouldn't normally
be run in a test (ie, run as root), it doesn't seem too worthwhile to
add a normal test.  The bug report has one version of a test.  I've
written another.  Not sure what the best thing to do is.

Do the check before calling internal_select() because we can't set
an error in between Py_BEGIN_ALLOW_THREADS and Py_END_ALLOW_THREADS.
This seemed the clearest solution, ie handle before calling internal_select()
rather than inside.  Plus there is at least one place outside
of internal_select() that needed to be handled.

Will backport.

19 years agoFix indentation (whitespace only).
Neal Norwitz [Tue, 7 Feb 2006 06:59:20 +0000 (06:59 +0000)]
Fix indentation (whitespace only).

19 years agoCheck return results for errors
Neal Norwitz [Tue, 7 Feb 2006 06:58:52 +0000 (06:58 +0000)]
Check return results for errors

19 years agoPatch #1412872: zipfile: use correct system type on unixy systems.
Martin v. Löwis [Sun, 5 Feb 2006 17:09:41 +0000 (17:09 +0000)]
Patch #1412872: zipfile: use correct system type on unixy systems.

19 years agoGet test_logging to not hang when running under regrtest.py -R ::
Neal Norwitz [Sun, 5 Feb 2006 08:21:08 +0000 (08:21 +0000)]
Get test_logging to not hang when running under regrtest.py -R ::

Not sure why/how _handlers/_handlerList is out of sync.  This could
indicate a deeper problem.

In test_logging, the only absolutely necessary change to get working
was tcpserver.abort = 1.  But we don't want to wait infinitely
to join the threads, so give a 2.0 second timeout.

There doesn't appear to be a need for a local abort variable
in serve_until_stopped, so just use the instance member.

Note the problem is only on HEAD, not in 2.4.

19 years agoPatch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same
Neal Norwitz [Sun, 5 Feb 2006 05:45:43 +0000 (05:45 +0000)]
Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same
on both Unix (SVR4 and BSD) and Windows.  Restores behaviour of passing -1
for anonymous memory on Unix.  Use MAP_ANONYMOUS instead of _ANON since
the latter is deprecated according to Linux (gentoo) man pages.

Should we continue to allow mmap.mmap(0, length) to work on Windows?
0 is a valid fd.

Will backport bugfix portions.

19 years agoWhitespace normalization
Neal Norwitz [Sun, 5 Feb 2006 03:36:57 +0000 (03:36 +0000)]
Whitespace normalization

19 years agoUse C-style comment
Neal Norwitz [Sun, 5 Feb 2006 02:07:19 +0000 (02:07 +0000)]
Use C-style comment

19 years agoResolves SF bug #1423972.
Barry Warsaw [Sat, 4 Feb 2006 23:32:26 +0000 (23:32 +0000)]
Resolves SF bug #1423972.

19 years agoSF bug 1415455, fix typo in module name
Neal Norwitz [Sat, 4 Feb 2006 23:00:48 +0000 (23:00 +0000)]
SF bug 1415455, fix typo in module name

19 years agoPatch #1422385: Changes to nis module to support multiple NIS domains
Martin v. Löwis [Sat, 4 Feb 2006 19:12:37 +0000 (19:12 +0000)]
Patch #1422385: Changes to nis module to support multiple NIS domains

19 years agoFix typo
Neal Norwitz [Sat, 4 Feb 2006 03:26:20 +0000 (03:26 +0000)]
Fix typo

19 years agoDrop C library for stat/fstat on Windows.
Martin v. Löwis [Fri, 3 Feb 2006 12:54:16 +0000 (12:54 +0000)]
Drop C library for stat/fstat on Windows.

19 years agoparsedate_tz(): Minor cleanup.
Barry Warsaw [Fri, 3 Feb 2006 04:44:52 +0000 (04:44 +0000)]
parsedate_tz(): Minor cleanup.

Port from Python 2.3/email 2.5: Add a test for the tm_yday field is 1 in the
return of parsedate().

19 years agoSF patch #1421726
Fredrik Lundh [Thu, 2 Feb 2006 21:58:55 +0000 (21:58 +0000)]
SF patch #1421726

fixed typo in language reference

19 years agoAs discussed on python-dev, silence three gcc-4.0.x warnings, using assert()
Thomas Wouters [Wed, 1 Feb 2006 21:32:04 +0000 (21:32 +0000)]
As discussed on python-dev, silence three gcc-4.0.x warnings, using assert()
to protect against actual uninitialized usage.

Objects/longobject.c: In function ‘PyLong_AsDouble’:
Objects/longobject.c:655: warning: ‘e’ may be used uninitialized in this function

Objects/longobject.c: In function ‘long_true_divide’:
Objects/longobject.c:2263: warning: ‘aexp’ may be used uninitialized in this function
Objects/longobject.c:2263: warning: ‘bexp’ may be used uninitialized in this function

19 years agoPatch #1413711: Certain patterns of differences were making difflib
Gustavo Niemeyer [Tue, 31 Jan 2006 18:34:13 +0000 (18:34 +0000)]
Patch #1413711: Certain patterns of differences were making difflib
touch the recursion limit. The applied patch inlines the recursive
__helper method in a non-recursive way.

19 years agoFix typo.
Martin v. Löwis [Mon, 30 Jan 2006 15:04:31 +0000 (15:04 +0000)]
Fix typo.

19 years agomaintain support for older python versions in this module so that it
Gregory P. Smith [Mon, 30 Jan 2006 00:22:08 +0000 (00:22 +0000)]
maintain support for older python versions in this module so that it
is ok for a standalone pybsddb source dist for use with <= 2.3.

19 years agofix test import for use in standalone pybsddb project bsddb3 module as well
Gregory P. Smith [Sun, 29 Jan 2006 23:54:38 +0000 (23:54 +0000)]
fix test import for use in standalone pybsddb project bsddb3 module as well
as python builtin bsddb.

19 years agoWhitespace normalization.
Tim Peters [Sun, 29 Jan 2006 22:50:26 +0000 (22:50 +0000)]
Whitespace normalization.

19 years agoTry a number of ports, in case 9020 is already in use.
Martin v. Löwis [Sun, 29 Jan 2006 20:10:38 +0000 (20:10 +0000)]
Try a number of ports, in case 9020 is already in use.

19 years agoExplicitly close the server socket.
Martin v. Löwis [Sun, 29 Jan 2006 19:55:18 +0000 (19:55 +0000)]
Explicitly close the server socket.

19 years agoadd bsddb.db.DBEnv.set_tx_timestamp mention
Gregory P. Smith [Sun, 29 Jan 2006 19:46:23 +0000 (19:46 +0000)]
add bsddb.db.DBEnv.set_tx_timestamp mention

19 years agoDelete aclocal.m4, and require autoconf 2.59, fixing
Martin v. Löwis [Sun, 29 Jan 2006 09:53:44 +0000 (09:53 +0000)]
Delete aclocal.m4, and require autoconf 2.59, fixing
#811160 in a different way.

19 years agoWork around a Solaris peculiarity that caused test_pty to sometimes fail: a
Thomas Wouters [Sat, 28 Jan 2006 12:05:54 +0000 (12:05 +0000)]
Work around a Solaris peculiarity that caused test_pty to sometimes fail: a
tty opened by os.openpty() isn't always a tty according to os.isatty(), when
it's tested inside the process that opened it. Doesn't affect actual
functionality, as using a tty this way is rarely, if ever, useful. Ignoring
the failure allows the test for actual functionality to continue.

Will backport to 2.4-maint.

19 years agoImproved handling of syntax errors.
Jeremy Hylton [Fri, 27 Jan 2006 15:18:39 +0000 (15:18 +0000)]
Improved handling of syntax errors.

Expand set of errors caught in set_context().  Some new errors, some
old error messages changed for consistency.

Fixed error checking in generator expression code.  The first set of
tests were impossible condition given the grammar.  In general, the
ast code uses REQ() for those sanity checks.

Fix some error handling for augmented assignments.  As comments in the
code explain, set_context() ought to work here, but I got unexpected
crashes when I tried it.  Should come back to this.

Add note to Grammar that yield expression is a special case.

Add doctest cases for SyntaxErrors raised by ast.c.

19 years agoAdd wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER
Gregory P. Smith [Fri, 27 Jan 2006 07:06:15 +0000 (07:06 +0000)]
Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER
(test cases and dbobj wrapping)

19 years agoAdd wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER
Gregory P. Smith [Fri, 27 Jan 2006 07:05:40 +0000 (07:05 +0000)]
Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER

19 years agoFix PyGC_Collect() to be exported from the built DLL on Windows. (Fix given
Barry Warsaw [Thu, 26 Jan 2006 18:59:06 +0000 (18:59 +0000)]
Fix PyGC_Collect() to be exported from the built DLL on Windows.  (Fix given
by Matt Messier).

19 years agoThere was a race condition where the connector would try to connect
Neal Norwitz [Wed, 25 Jan 2006 08:39:35 +0000 (08:39 +0000)]
There was a race condition where the connector would try to connect
before the listener was ready (on gentoo x86 buildslave).  This
caused the listener to not exit normally since nobody connected to it
(waited in accept()).  The exception was raised in the other thread
and the test failed.

This fix doesn't completely eliminate the race, but should make it
near impossible to trigger.  Hopefully it's good enough.

19 years agoRemove generated test db files
Neal Norwitz [Wed, 25 Jan 2006 07:20:47 +0000 (07:20 +0000)]
Remove generated test db files

19 years agomwh pointed out _Filemodule.c is generated. So to fix the memory leak
Neal Norwitz [Wed, 25 Jan 2006 05:42:22 +0000 (05:42 +0000)]
mwh pointed out _Filemodule.c is generated. So to fix the memory leak
this file (the source) must be fixed.

Why isn't there a comment at the top saying the file is generated and
why are both the source and generated file checked in?  Bootstrap problem?

Will backport.

19 years agoFix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env.
Neal Norwitz [Wed, 25 Jan 2006 05:21:55 +0000 (05:21 +0000)]
Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env.

Will backport.

19 years agotest_rude_shutdown(): Rewrote to use proper thread
Tim Peters [Tue, 24 Jan 2006 22:44:54 +0000 (22:44 +0000)]
test_rude_shutdown():  Rewrote to use proper thread
synchronization and termination.

19 years agoWhitespace normalization.
Tim Peters [Tue, 24 Jan 2006 22:44:08 +0000 (22:44 +0000)]
Whitespace normalization.

19 years agonote the bsddb extension module changes.
Gregory P. Smith [Tue, 24 Jan 2006 20:09:45 +0000 (20:09 +0000)]
note the bsddb extension module changes.

19 years agocommits sourceforge patch #1407992 by neil.norwitz.
Gregory P. Smith [Tue, 24 Jan 2006 19:55:02 +0000 (19:55 +0000)]
commits sourceforge patch #1407992 by neil.norwitz.

this fixes the bsddb db associate tests when compiled against
BerkeleyDB 3.3 thru 4.1.  4.2 thru 4.4 already passed and still
pass.

19 years agomodule list utility
Fredrik Lundh [Tue, 24 Jan 2006 16:16:19 +0000 (16:16 +0000)]
module list utility

19 years agoPatch #1349118: urllib2 now supports user:pass@ style proxy
Martin v. Löwis [Tue, 24 Jan 2006 15:51:21 +0000 (15:51 +0000)]
Patch #1349118: urllib2 now supports user:pass@ style proxy
specifications, raises IOErrors when proxies for unsupported protocols
are defined, and uses the https proxy on https redirections.

19 years agoSupport for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the
Gregory P. Smith [Tue, 24 Jan 2006 09:46:48 +0000 (09:46 +0000)]
Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the
way back thru 3.2).  This should be backported to the release24-maint
branch.

19 years agoFix SF #1412837, compile failed with Watcom compiler
Neal Norwitz [Tue, 24 Jan 2006 06:06:11 +0000 (06:06 +0000)]
Fix SF #1412837, compile failed with Watcom compiler

19 years agoRepaired new test failures on Windows:
Tim Peters [Mon, 23 Jan 2006 22:19:24 +0000 (22:19 +0000)]
Repaired new test failures on Windows:

- The path separator isn't "/" on Windows.

- Leaving behind a read-only file causes cascades
  of bogus failures on Windows.

19 years agoCorrect misspellings.
Georg Brandl [Mon, 23 Jan 2006 22:00:17 +0000 (22:00 +0000)]
Correct misspellings.

19 years agoAdd markup to new section in codecs docs
Georg Brandl [Mon, 23 Jan 2006 21:33:48 +0000 (21:33 +0000)]
Add markup to new section in codecs docs

19 years agoCorrect typos and markup errors (Raymond, thanks for texcheck)
Georg Brandl [Mon, 23 Jan 2006 21:33:03 +0000 (21:33 +0000)]
Correct typos and markup errors (Raymond, thanks for texcheck)

19 years agoAdd two missing markup tags.
Georg Brandl [Mon, 23 Jan 2006 21:31:00 +0000 (21:31 +0000)]
Add two missing markup tags.

19 years agoWhitespace normalization.
Tim Peters [Mon, 23 Jan 2006 21:28:42 +0000 (21:28 +0000)]
Whitespace normalization.

19 years agoAdd \versionadded for sftp scheme
Georg Brandl [Mon, 23 Jan 2006 20:49:24 +0000 (20:49 +0000)]
Add \versionadded for sftp scheme

19 years agoDisable this test until I can test on big-endian machines and get passing
Neal Norwitz [Mon, 23 Jan 2006 08:48:03 +0000 (08:48 +0000)]
Disable this test until I can test on big-endian machines and get passing

19 years agoTest zipimporter a bit more. Also get working with -R :: option for finding ref...
Neal Norwitz [Mon, 23 Jan 2006 07:52:13 +0000 (07:52 +0000)]
Test zipimporter a bit more.  Also get working with -R :: option for finding ref leaks

19 years agoConvenience function to remove a possibly non-existant file
Neal Norwitz [Mon, 23 Jan 2006 07:51:27 +0000 (07:51 +0000)]
Convenience function to remove a possibly non-existant file

19 years agoTest getsignal() and some error conditions
Neal Norwitz [Mon, 23 Jan 2006 07:50:06 +0000 (07:50 +0000)]
Test getsignal() and some error conditions

19 years agoUse unittest and make sure a few other cases don't crash
Neal Norwitz [Mon, 23 Jan 2006 07:49:36 +0000 (07:49 +0000)]
Use unittest and make sure a few other cases don't crash

19 years agoThis should fix a mem leak on the Mac. Brett tested it.
Neal Norwitz [Mon, 23 Jan 2006 07:25:29 +0000 (07:25 +0000)]
This should fix a mem leak on the Mac.  Brett tested it.

19 years agoAnother typo.
Georg Brandl [Sun, 22 Jan 2006 20:47:26 +0000 (20:47 +0000)]
Another typo.

19 years agotypo
Georg Brandl [Sun, 22 Jan 2006 19:38:05 +0000 (19:38 +0000)]
typo

19 years agoCorrect several typos in libos.tex. Bug #1412227.
Georg Brandl [Sun, 22 Jan 2006 19:34:59 +0000 (19:34 +0000)]
Correct several typos in libos.tex. Bug #1412227.