Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8cb30772
Commit
8cb30772
authored
Jan 20, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1402224: Add warning to dl docs about crashes.
parent
a3a93ae7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
Doc/lib/libdl.tex
Doc/lib/libdl.tex
+4
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Doc/lib/libdl.tex
View file @
8cb30772
...
...
@@ -10,6 +10,10 @@ The \module{dl} module defines an interface to the
\UNIX
{}
platforms for handling dynamically linked libraries. It allows
the program to call arbitrary functions in such a library.
\warning
{
The
\module
{
dl
}
module bypasses the Python type system and
error handling. If used incorrectly it may cause segmentation faults,
crashes or other incorrect behaviour.
}
\note
{
This module will not work unless
\code
{
sizeof(int) == sizeof(long) == sizeof(char *)
}
If this is not the case,
\exception
{
SystemError
}
will be raised on
...
...
Misc/NEWS
View file @
8cb30772
...
...
@@ -727,6 +727,8 @@ Tests
Documentation
-------------
- Bug #1402224: Add warning to dl docs about crashes.
- Bug #1396471: Document that Windows'
ftell
()
can
return
invalid
values
for
text
files
with
UNIX
-
style
line
endings
.
...
...
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