- 06 Haz, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
out how to just activate my code on platforms where I know it works (currently only linux/x86).
-
- 04 Haz, 2002 1 kayıt (commit)
-
-
Jason Tishler yazdı
This patch complies with the following request found near the top of configure.in: # This is for stuff that absolutely must end up in pyconfig.h. # Please use pyport.h instead, if possible. I tested this patch under Cygwin, Win32, and Red Hat Linux. Python built and ran successfully on each of these platforms.
-
- 27 May, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
[ 559250 ] more POSIX signal stuff Adds support (and docs and tests and autoconfery) for posix signal mask handling -- sigpending, sigprocmask and sigsuspend.
-
- 15 May, 2002 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Jason Tishler yazdı
This patch complies with the following request found near the top of configure.in: # This is for stuff that absolutely must end up in pyconfig.h. # Please use pyport.h instead, if possible. I tested this patch under Cygwin, Win32, and Red Hat Linux. Python built and ran successfully on each of these platforms.
-
- 20 Nis, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 16 Nis, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 15 Nis, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
This is part of SF feature #536796.
-
- 14 Nis, 2002 2 kayıt (commit)
-
-
Jack Jansen yazdı
Highlights: import and friends will understand any of \r, \n and \r\n as end of line. Python file input will do the same if you use mode 'U'. Everything can be disabled by configuring with --without-universal-newlines. See PEP278 for details.
-
Martin v. Löwis yazdı
-
- 12 Nis, 2002 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 06 Nis, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 27 Mar, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 21 Mar, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 20 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Can go into 2.2.x, but not necessary.
-
- 16 Şub, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 01 Ock, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 24 Eki, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
STRICT_SYSV_CURSES when compiling curses module on HP/UX. Generalize access to _flags on systems where WINDOW is opaque. Fixes bugs #432497, #422265, and the curses parts of #467145 and #473150.
-
- 19 Eki, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This adds unsetenv to posix, and uses it in the __delitem__ method of os.environ. (XXX Should we change the preferred name for putenv to setenv, for consistency?)
-
- 18 Eki, 2001 3 kayıt (commit)
-
-
Guido van Rossum yazdı
This is a big one, touching lots of files. Some of the platforms aren't tested yet. Briefly, this changes the return value of the os/posix functions stat(), fstat(), statvfs(), fstatvfs(), and the time functions localtime(), gmtime(), and strptime() from tuples into pseudo-sequences. When accessed as a sequence, they behave exactly as before. But they also have attributes like st_mtime or tm_year. The stat return value, moreover, has a few platform-specific attributes that are not available through the sequence interface (because everybody expects the sequence to have a fixed length, these couldn't be added there). If your platform's struct stat doesn't define st_blksize, st_blocks or st_rdev, they won't be accessible from Python either. (Still missing is a documentation update.)
-
Guido van Rossum yazdı
<grp.h> it seems. This requires yet another configure test.
-
Martin v. Löwis yazdı
-
- 15 Eki, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Check for pthread_sigmask before using it. Fixes remaining problem in #470781.
-
- 13 Eki, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
for tigetstr.
-
- 04 Eki, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 30 Eyl, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 10 Eyl, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
by bbrox@bbrox.org / lionel.ulmer@free.fr. This adds a configure check and if all goes well turns on the PTHREAD_SCOPE_SYSTEM thread attribute for new threads. This should remove the need to add tiny sleeps at the start of threads to allow other threads to be scheduled.
-
- 09 Eyl, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
support on Linux (and Solaris, I expect) for real. The necessary symbols are defined once and for all, under the assumption that they won't harm elsewhere.
-
- 06 Eyl, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
instead.
-
- 05 Eyl, 2001 3 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Guido van Rossum yazdı
I believe this works on Linux (tested both on a system with large file support and one without it), and it may work on Solaris 2.7. The changes are twofold: (1) The configure script now boldly tries to set the two symbols that are recommended (for Solaris and Linux), and then tries a test script that does some simple seeking without writing. (2) The _portable_{fseek,ftell} functions are a little more systematic in how they try the different large file support options: first try fseeko/ftello, but only if off_t is large; then try fseek64/ftell64; then try hacking with fgetpos/fsetpos. I'm keeping my fingers crossed. The meaning of the HAVE_LARGEFILE_SUPPORT macro is not at all clear. I'll see if I can get it to work on Windows as well.
-
Martin v. Löwis yazdı
SCO_ATAN2_BUG, SCO_ACCEPT_BUG, and STRICT_SYSV_CURSES. Work aroudn a bug in the SCO UnixWare atan2() implementation.
-
- 15 Agu, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 10 Agu, 2001 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
Depend AF_PACKET on HAVE_NETPACKET_PACKET_H.
-
Martin v. Löwis yazdı
-
- 04 Agu, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
exception classes in the module dictionary.
-
- 26 Tem, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 24 Tem, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Remove declaration of h_errno, since it is supposedly declared in netdb.h. Changes proposed by itojun.
-
- 14 Tem, 2001 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-