Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
4e422817
Kaydet (Commit)
4e422817
authored
Tem 17, 2005
tarafından
Hye-Shik Chang
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add support for FreeBSD 7.
üst
149787e7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
3 deletions
+15
-3
IN.py
Lib/plat-freebsd7/IN.py
+0
-0
regen
Lib/plat-freebsd7/regen
+3
-0
posixfile.py
Lib/posixfile.py
+2
-1
regrtest.py
Lib/test/regrtest.py
+1
-0
test_fcntl.py
Lib/test/test_fcntl.py
+1
-0
test_socket.py
Lib/test/test_socket.py
+1
-1
NEWS
Misc/NEWS
+5
-0
setup.py
setup.py
+2
-1
No files found.
Lib/plat-freebsd7/IN.py
0 → 100644
Dosyayı görüntüle @
4e422817
This diff is collapsed.
Click to expand it.
Lib/plat-freebsd7/regen
0 → 100644
Dosyayı görüntüle @
4e422817
#! /bin/sh
set
-v
python ../../Tools/scripts/h2py.py
-i
'(u_long)'
/usr/include/netinet/in.h
Lib/posixfile.py
Dosyayı görüntüle @
4e422817
...
...
@@ -179,7 +179,8 @@ class _posixfile_:
if
sys
.
platform
in
(
'netbsd1'
,
'openbsd2'
,
'freebsd2'
,
'freebsd3'
,
'freebsd4'
,
'freebsd5'
,
'freebsd6'
,
'bsdos2'
,
'bsdos3'
,
'bsdos4'
):
'freebsd6'
,
'freebsd7'
,
'bsdos2'
,
'bsdos3'
,
'bsdos4'
):
flock
=
struct
.
pack
(
'lxxxxlxxxxlhh'
,
\
l_start
,
l_len
,
os
.
getpid
(),
l_type
,
l_whence
)
elif
sys
.
platform
in
(
'aix3'
,
'aix4'
):
...
...
Lib/test/regrtest.py
Dosyayı görüntüle @
4e422817
...
...
@@ -1073,6 +1073,7 @@ _expectations = {
}
_expectations
[
'freebsd5'
]
=
_expectations
[
'freebsd4'
]
_expectations
[
'freebsd6'
]
=
_expectations
[
'freebsd4'
]
_expectations
[
'freebsd7'
]
=
_expectations
[
'freebsd4'
]
class
_ExpectedSkips
:
def
__init__
(
self
):
...
...
Lib/test/test_fcntl.py
Dosyayı görüntüle @
4e422817
...
...
@@ -22,6 +22,7 @@ if sys.platform.startswith('atheos'):
if
sys
.
platform
in
(
'netbsd1'
,
'Darwin1.2'
,
'darwin'
,
'freebsd2'
,
'freebsd3'
,
'freebsd4'
,
'freebsd5'
,
'freebsd6'
,
'freebsd7'
,
'bsdos2'
,
'bsdos3'
,
'bsdos4'
,
'openbsd'
,
'openbsd2'
,
'openbsd3'
):
if
struct
.
calcsize
(
'l'
)
==
8
:
...
...
Lib/test/test_socket.py
Dosyayı görüntüle @
4e422817
...
...
@@ -312,7 +312,7 @@ class GeneralModuleTests(unittest.TestCase):
# I've ordered this by protocols that have both a tcp and udp
# protocol, at least for modern Linuxes.
if
sys
.
platform
in
(
'linux2'
,
'freebsd4'
,
'freebsd5'
,
'freebsd6'
,
'darwin'
):
'
freebsd7'
,
'
darwin'
):
# avoid the 'echo' service on this platform, as there is an
# assumption breaking non-standard port/protocol entry
services
=
(
'daytime'
,
'qotd'
,
'domain'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
4e422817
...
...
@@ -432,6 +432,11 @@ Mac
---
New
platforms
-------------
-
FreeBSD
7
support
is
added
.
Tools
/
Demos
-----------
...
...
setup.py
Dosyayı görüntüle @
4e422817
...
...
@@ -821,7 +821,8 @@ class PyBuildExt(build_ext):
# Linux-specific modules
exts
.
append
(
Extension
(
'linuxaudiodev'
,
[
'linuxaudiodev.c'
])
)
if
platform
in
(
'linux2'
,
'freebsd4'
,
'freebsd5'
,
'freebsd6'
):
if
platform
in
(
'linux2'
,
'freebsd4'
,
'freebsd5'
,
'freebsd6'
,
'freebsd7'
):
exts
.
append
(
Extension
(
'ossaudiodev'
,
[
'ossaudiodev.c'
])
)
if
platform
==
'sunos5'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment