summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* cat and puste errorsBarry Warsaw1996-12-111-2/+5
|
* nis_maplist(): Use check of yp_get_default_domain() return valueBarry Warsaw1996-12-111-1/+5
| | | | | | that's used in other parts of this module. nis_maps(): use PyArg_NoArgs().
* Renamed, and bug fixed:Barry Warsaw1996-12-111-111/+123
| | | | | | | | | | | | | | | | | | | Two interesting problems in nis_maplist(). First, it is possible that clnt_create() will return NULL. This was being caught, but no Python error was being set. I use clnt_spcreateerror() to generate the value of the exception. But why would clnt_create() fail? It's because no server was being found. And why was this? It was because nis_maplist() tried only to get the NIS master for the first map in the aliases list, which is passwd.byname, and guess what? That's the one NIS map CNRI does *not* export! So the yp_master() call was failing to return a valid server. I now cycle through all the map aliases until I find a valid master. If not, a different exception is set. I'm not sure this is the completely correct way to do all this, but short of rewriting the entire nismodule.c (to expose the proper API to Python), it should do the trick.
* Renamed.Barry Warsaw1996-12-101-504/+503
| | | | | Note that there is no test suite for this module, and I don't plan to write one just now.
* Renamed.Barry Warsaw1996-12-101-81/+84
|
* Added remaining declarations needed/used in glmodule.c; keeps gcc -Wall happy.Guido van Rossum1996-12-101-5/+28
|
* Fix operator priority bug found thanks to gcc -Wall.Guido van Rossum1996-12-101-1/+1
|
* Make gcc -Wall happy; remove dummy variable (can't see where it's needed).Guido van Rossum1996-12-101-2/+8
|
* Added extern decl for gethostname() to keep gcc -Wall happy.Guido van Rossum1996-12-101-0/+4
|
* Great renaming.Guido van Rossum1996-12-101-23/+17
| | | | Also got rid of the dummy variable, which was last needed in IRIX 4.x.
* Removed redundant inclusion of <errno.h> (sorry, Roj!).Guido van Rossum1996-12-101-2/+0
|
* renamed in a grand fashion.Roger E. Masse1996-12-101-74/+76
|
* Renamed a few symbols that were found in comments.Barry Warsaw1996-12-091-6/+6
|
* Renamed, ungrandly. We don't have the GNU MP library here so we can'tBarry Warsaw1996-12-091-278/+291
| | | | | | really test this module, or even compile it without a lot of work. I'll make a note of it that this has not been tested!
* renamed grandly.Roger E. Masse1996-12-091-7/+7
|
* Renamed GrandlyRoger E. Masse1996-12-091-19/+19
|
* RenamedBarry Warsaw1996-12-092-90/+87
|
* Removed some unneeded header files and reedited with a fixed-width fontRoger E. Masse1996-12-091-14/+19
| | | | from emacs as per recomendation from GvR
* Renamed Grandly (I think).Roger E. Masse1996-12-091-265/+270
|
* Changes to keep gcc -Wall happy.Guido van Rossum1996-12-091-3/+13
|
* Added `void' to declaration of initgl(), to keep gcc -Wall happy.Guido van Rossum1996-12-091-0/+1
|
* Added a bunch of extern void decls, to keep gcc -Wall happy.Guido van Rossum1996-12-091-0/+7
|
* Include <sys/ioctl.h>, to keep gcc -Wall happy.Guido van Rossum1996-12-091-0/+1
|
* Make dummy int public (with _Py_ prefix), to keep gcc -Wall happy.Guido van Rossum1996-12-091-1/+2
|
* Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy.Guido van Rossum1996-12-091-0/+5
|
* Include unistd.h to keep gcc -Wall happy.Guido van Rossum1996-12-091-0/+3
|
* Added ``extern int get_default_domain();'' for SGI, to keep gcc -Wall happy.Guido van Rossum1996-12-091-0/+5
|
* Added #ifdef around ``extern int ftime();'' for MS WINDOWS (which hasGuido van Rossum1996-12-091-2/+4
| | | | | a conflicting definition somewhere). Resolved line wrap for error message in ins().
* Greatly renamed.Barry Warsaw1996-12-091-178/+181
|
* ins(): missed a renaming in a string: dictinsert =>Barry Warsaw1996-12-091-1/+1
| | | | | | PyDict_SetItemString. GvR: note the long line > 80 chars. Wrapping suggestions?
* Greatly renamed.Barry Warsaw1996-12-061-86/+88
|
* Add extern decl of ftime() to make gcc -Wall happy.Guido van Rossum1996-12-061-0/+1
|
* Keep gcc -Wall happy.Guido van Rossum1996-12-0527-56/+93
|
* Add case for 'R' and a little bit of cleanup. Andrew Kuchling.Guido van Rossum1996-12-051-6/+8
|
* Jim F's brainchildGuido van Rossum1996-12-051-0/+678
|
* Fix bad format char in error msg (%s should be %d).Guido van Rossum1996-12-051-3/+1
| | | | Keep gcc -Wall happy.
* Correct typo -- repeat implements *, not +.Guido van Rossum1996-12-051-1/+1
|
* Upgraded new.function() contributed by Tommy. Also got rid of #if 0'ed code.Guido van Rossum1996-11-211-25/+8
|
* Should compare errno to 0, not NULLGuido van Rossum1996-11-021-1/+1
|
* New permission notice, includes CNRI.Guido van Rossum1996-10-2548-609/+945
|
* Fix case where you start a new group immediately after a label.Guido van Rossum1996-10-231-1/+1
| | | | Thanks to Ka-Ping Yee.
* Changed _Py_EllipsesObject -> _Py_EllipsisObject.Guido van Rossum1996-10-211-1/+1
|
* Major upgrade by Vladimir Marangozov.Guido van Rossum1996-10-211-36/+144
|
* Don't close an already closed socket.Guido van Rossum1996-10-121-3/+5
|
* Check for NULL pointer returned from localtime()/gmtime().Guido van Rossum1996-10-081-1/+10
|
* Speedup of makeresult() by keeping a filler of (-1, -1) around.Guido van Rossum1996-10-081-12/+25
|
* Replace all uses of strncmp (in split, find, rfind) with memcmp, soGuido van Rossum1996-10-041-3/+3
| | | | | embedded \0 in the delimiter is handled properly. Thanks to Sjoerd for suggesting this.
* Rationalize MS #ifdefsGuido van Rossum1996-09-111-2/+2
|
* Correct typo: return -1 for error, not 0Guido van Rossum1996-09-111-1/+1
|
* Correct typo: return -1 for error, not NULLGuido van Rossum1996-09-111-1/+1
|