Giter Club home page Giter Club logo

twisted's Introduction

Twisted

gitter_ rtd_ pypi_ ci_

For information on changes in this release, see the NEWS file.

What is this?

Twisted is an event-based framework for internet applications, supporting Python 3.6+. It includes modules for many different purposes, including the following:

  • twisted.web: HTTP clients and servers, HTML templating, and a WSGI server
  • twisted.conch: SSHv2 and Telnet clients and servers and terminal emulators
  • twisted.words: Clients and servers for IRC, XMPP, and other IM protocols
  • twisted.mail: IMAPv4, POP3, SMTP clients and servers
  • twisted.positioning: Tools for communicating with NMEA-compatible GPS receivers
  • twisted.names: DNS client and tools for making your own DNS servers
  • twisted.trial: A unit testing framework that integrates well with Twisted-based code.

Twisted supports all major system event loops -- select (all platforms), poll (most POSIX platforms), epoll (Linux), kqueue (FreeBSD, macOS), IOCP (Windows), and various GUI event loops (GTK+2/3, Qt, wxWidgets). Third-party reactors can plug into Twisted, and provide support for additional event loops.

Installing

To install the latest version of Twisted using pip:

$ pip install twisted

Additional instructions for installing this software are in the installation instructions.

Documentation and Support

Twisted's documentation is available from the Twisted Matrix website. This documentation contains how-tos, code examples, and an API reference.

Help is also available on the Twisted mailing list.

There is also an IRC channel, #twisted, on the Libera.Chat network. A web client is available at web.libera.chat.

Unit Tests

Twisted has a comprehensive test suite, which can be run by tox:

$ tox -l                       # to view all test environments
$ tox -e nocov                 # to run all the tests without coverage
$ tox -e withcov               # to run all the tests with coverage
$ tox -e alldeps-withcov-posix # install all dependencies, run tests with coverage on POSIX platform

You can test running the test suite under the different reactors with the TWISTED_REACTOR environment variable:

$ env TWISTED_REACTOR=epoll tox -e alldeps-withcov-posix

Some of these tests may fail if you:

  • don't have the dependencies required for a particular subsystem installed,
  • have a firewall blocking some ports (or things like Multicast, which Linux NAT has shown itself to do), or
  • run them as root.

Static Code Checkers

You can ensure that code complies to Twisted coding standards:

$ tox -e lint   # run pre-commit to check coding stanards
$ tox -e mypy   # run MyPy static type checker to check for type errors

Or, for speed, use pre-commit directly:

$ pipx run pre-commit run

All of the code in this distribution is Copyright (c) 2001-2024 Twisted Matrix Laboratories.

Twisted is made available under the MIT license. The included LICENSE file describes this in detail.

Warranty

THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE USE OF THIS SOFTWARE IS WITH YOU.

IN NO EVENT WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY, BE LIABLE TO YOU FOR ANY DAMAGES, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

Again, see the included LICENSE file for specific legal details.

twisted's People

Contributors

acabhishek942 avatar adiroiban avatar alex avatar altendky avatar cjwatson avatar cyli avatar exarkun avatar exvito avatar glyph avatar graingert avatar hawkowl avatar jlitzingerdev avatar jml avatar jyknight avatar keturn avatar lukasa avatar markrwilliams avatar moshez avatar mthuurne avatar pre-commit-ci[bot] avatar pythonspeed avatar ralphm avatar rodrigc avatar the0id avatar therve avatar thijstriemstra avatar tomprince avatar twm avatar wiml avatar wsanchez avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

twisted's Issues

mktap, twistd etc. shouldn't add curdir to sys.path when running as root

itamarst's avatar @itamarst reported
Trac ID trac#59
Type defect
Created 2003-07-14 08:52:51Z
Searchable metadata
trac-id__59 59
type__defect defect
reporter__itamarst itamarst
priority__highest highest
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058172771000000 1058172771000000
changetime__1058239623000000 1058239623000000
version__ 
owner__ 
cc__itamarst

New PB connection API

itamarst's avatar @itamarst reported
Trac ID trac#62
Type defect
Created 2003-07-14 08:59:50Z
Searchable metadata
trac-id__62 62
type__defect defect
reporter__itamarst itamarst
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__pb pb
keywords__ 
time__1058173190000000 1058173190000000
changetime__1059376911000000 1059376911000000
version__ 
owner__ 
cc__glyph cc__itamarst cc__jml

We need tests for example code

spiv's avatar spiv reported
Trac ID trac#84
Type enhancement
Created 2003-07-15 13:04:29Z
Branch https://github.com/twisted/twisted/tree/testable-examples-84
Searchable metadata
trac-id__84 84
type__enhancement enhancement
reporter__spiv spiv
priority__high high
milestone__ 
branch__branches_testable_examples_84 branches/testable-examples-84
branch_author__rwall rwall
status__new new
resolution__ 
component__core core
keywords__documentation documentation
time__1058274269000000 1058274269000000
changetime__1364318206000000 1364318206000000
version__ 
owner__rwall rwall
cc__exarkun cc__spiv cc__jml cc__binjured cc__rwall

trial and twistd accept inconsistent values for --reactor

ne1uno's avatar ne1uno reported
Trac ID trac#69
Type enhancement
Created 2003-07-14 12:34:46Z

Attachments:

  • reactor.diff (4365 bytes) - added by davep on 2003-07-24 07:18:06Z -
  • reactor.2.diff (7498 bytes) - added by davep on 2003-07-28 12:50:37Z -
  • reactor.3.diff (2673 bytes) - added by davep on 2003-08-04 05:18:19Z -
Searchable metadata
trac-id__69 69
type__enhancement enhancement
reporter__ne1uno ne1uno
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058186086000000 1058186086000000
changetime__1064926641000000 1064926641000000
version__ 
owner__ 
cc__davep cc__itamarst cc__ne1uno cc__warner cc__moshez

Woven Guard Docs

glyph's avatar @glyph reported
Trac ID trac#55
Type enhancement
Created 2003-07-13 04:11:11Z
Searchable metadata
trac-id__55 55
type__enhancement enhancement
reporter__glyph glyph
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__documentation_web documentation web
time__1058069471000000 1058069471000000
changetime__1076055962000000 1076055962000000
version__ 
owner__ 
cc__glyph cc__radix cc__itamarst cc__jml cc__pobrien cc__hypatia

RFE: enhancements to Lore for --config book

radix's avatar @radix reported
Trac ID trac#49
Type enhancement
Created 2003-07-12 20:39:56Z
Searchable metadata
trac-id__49 49
type__enhancement enhancement
reporter__radix radix
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__invalid invalid
component__lore lore
keywords__ 
time__1058042396000000 1058042396000000
changetime__1238468116000000 1238468116000000
version__ 
owner__ 
cc__radix cc__exarkun cc__spiv cc__thijs

Make adbapi obey min & max arguments

jdavisp3's avatar @jdavisp3 reported
Trac ID trac#83
Type enhancement
Created 2003-07-15 03:18:56Z

Attachments:

  • twisted.diff (21023 bytes) - added by davep on 2003-07-15 03:18:56Z -
  • twisted.2.diff (20011 bytes) - added by davep on 2003-07-16 12:35:45Z -
  • twisted.3.diff (21138 bytes) - added by davep on 2003-07-18 14:34:05Z -
  • twisted.4.diff (24962 bytes) - added by davep on 2003-07-19 06:27:01Z -
Searchable metadata
trac-id__83 83
type__enhancement enhancement
reporter__davep davep
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058239136000000 1058239136000000
changetime__1059390034000000 1059390034000000
version__ 
owner__davep davep
cc__glyph cc__radix cc__spiv cc__davep cc__itamarst

IMAPServer select_FETCH incorrect for non-UID

radix's avatar @radix reported
Trac ID trac#43
Type defect
Created 2003-07-12 20:18:04Z
Searchable metadata
trac-id__43 43
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058041084000000 1058041084000000
changetime__1060726942000000 1060726942000000
version__ 
owner__ 
cc__radix cc__exarkun cc__anadelonbrin

test_doc wanders outside of the twisted package

exarkun's avatar @exarkun reported
Trac ID trac#70
Type defect
Created 2003-07-14 13:07:28Z
Searchable metadata
trac-id__70 70
type__defect defect
reporter__exarkun exarkun
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058188048000000 1058188048000000
changetime__1065637360000000 1065637360000000
version__ 
owner__acapnotic acapnotic
cc__exarkun cc__acapnotic

[PATCH]twisted.protocols.nntp is broken

smurf's avatar smurf reported
Trac ID trac#65
Type defect
Created 2003-07-14 11:44:23Z

Attachments:

  • twist.patch (5529 bytes) - added by smurf on 2003-07-14 11:44:23Z -
Searchable metadata
trac-id__65 65
type__defect defect
reporter__smurf smurf
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__news news
keywords__ 
time__1058183063000000 1058183063000000
changetime__1109490242000000 1109490242000000
version__ 
owner__ 
cc__exarkun cc__smurf

Twisted IM server doesn't work on Win32

radix's avatar @radix reported
Trac ID trac#45
Type defect
Created 2003-07-12 20:25:24Z
Searchable metadata
trac-id__45 45
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058041524000000 1058041524000000
changetime__1058050968000000 1058050968000000
version__ 
owner__ 
cc__radix

Refactor application to deprecate app.listenTCP

itamarst's avatar @itamarst reported
Trac ID trac#67
Type defect
Created 2003-07-14 11:55:01Z
Searchable metadata
trac-id__67 67
type__defect defect
reporter__itamarst itamarst
priority__highest highest
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ftp ftp
keywords__ 
time__1058183701000000 1058183701000000
changetime__1065904326000000 1065904326000000
version__ 
owner__ 
cc__glyph cc__radix cc__itamarst cc__moshez

twisted.enterprise HOWTO example doesn't work

spiv's avatar spiv reported
Trac ID trac#57
Type defect
Created 2003-07-14 07:25:55Z
Searchable metadata
trac-id__57 57
type__defect defect
reporter__spiv spiv
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__documentation documentation
time__1058167555000000 1058167555000000
changetime__1058168106000000 1058168106000000
version__ 
owner__ 
cc__spiv cc__itamarst

cBanana profile support

radix's avatar @radix reported
Trac ID trac#54
Type enhancement
Created 2003-07-12 21:00:28Z
Searchable metadata
trac-id__54 54
type__enhancement enhancement
reporter__radix radix
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__wontfix wontfix
component__pb pb
keywords__ 
time__1058043628000000 1058043628000000
changetime__1141530328000000 1141530328000000
version__ 
owner__ 
cc__glyph cc__radix cc__warner

adbapi.ConnectionPool ignores cp_min/max

radix's avatar @radix reported
Trac ID trac#52
Type defect
Created 2003-07-12 20:43:42Z
Searchable metadata
trac-id__52 52
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058042622000000 1058042622000000
changetime__1058051409000000 1058051409000000
version__ 
owner__ 
cc__radix

Application.setUID and setEUID not portable.

radix's avatar @radix reported
Trac ID trac#42
Type defect
Created 2003-07-12 20:17:23Z

Attachments:

  • patch.txt (1206 bytes) - added by rptownsend on 2003-07-13 16:32:07Z -
Searchable metadata
trac-id__42 42
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058041043000000 1058041043000000
changetime__1058163740000000 1058163740000000
version__ 
owner__ 
cc__radix

bug in http.py caused by IE

radix's avatar @radix reported
Trac ID trac#44
Type defect
Created 2003-07-12 20:22:31Z
Searchable metadata
trac-id__44 44
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058041351000000 1058041351000000
changetime__1058050204000000 1058050204000000
version__ 
owner__ 
cc__radix

Bad behaviour of Windows XP telnet client on telnet server

Rudy's avatar Rudy reported
Trac ID trac#82
Type enhancement
Created 2003-07-15 02:31:50Z
Searchable metadata
trac-id__82 82
type__enhancement enhancement
reporter__Rudy Rudy
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058236310000000 1058236310000000
changetime__1068447277000000 1068447277000000
version__ 
owner__ 
cc__moonfallen cc__itamarst cc__Rudy

XML-RPC introspection API support

itamarst's avatar @itamarst reported
Trac ID trac#80
Type enhancement
Created 2003-07-15 01:01:50Z

Attachments:

  • xmlrpc.diff (3621 bytes) - added by davep on 2003-08-13 14:37:43Z -
  • xmlrpc.2.diff (6603 bytes) - added by davep on 2003-08-15 15:21:32Z -
  • xmlrpc.3.diff (7019 bytes) - added by davep on 2003-08-22 05:30:28Z -
  • xmlrpc.4.diff (10504 bytes) - added by davep on 2003-08-25 13:26:19Z -
  • xmlrpc.5.diff (13379 bytes) - added by davep on 2003-08-26 11:35:03Z -
  • xmlrpc.6.diff (18142 bytes) - added by davep on 2003-08-27 04:48:24Z -
  • xmlrpc.7.diff (18316 bytes) - added by davep on 2003-08-27 07:20:50Z -
  • xmlrpc.8.diff (18583 bytes) - added by davep on 2003-08-27 12:26:44Z -
Searchable metadata
trac-id__80 80
type__enhancement enhancement
reporter__itamarst itamarst
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058230910000000 1058230910000000
changetime__1465005279957657 1465005279957657
version__ 
owner__ 
cc__spiv cc__davep cc__itamarst

NameError in gnutella.py

exarkun's avatar @exarkun reported
Trac ID trac#85
Type defect
Created 2003-07-15 13:27:48Z
Searchable metadata
trac-id__85 85
type__defect defect
reporter__exarkun exarkun
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058275668000000 1058275668000000
changetime__1058674031000000 1058674031000000
version__ 
owner__ 
cc__glyph cc__exarkun

conch command-line client doesn't work in win32

radix's avatar @radix reported
Trac ID trac#50
Type enhancement
Created 2003-07-12 20:41:06Z
Searchable metadata
trac-id__50 50
type__enhancement enhancement
reporter__radix radix
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__new new
resolution__ 
component__conch conch
keywords__ 
time__1058042466000000 1058042466000000
changetime__1222724380000000 1222724380000000
version__ 
owner__ 
cc__moonfallen cc__radix cc__z3p cc__teratorn

setup.py not installing docs, manpages

radix's avatar @radix reported
Trac ID trac#51
Type defect
Created 2003-07-12 20:42:48Z
Searchable metadata
trac-id__51 51
type__defect defect
reporter__radix radix
priority__highest highest
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__release_management release management
keywords__ 
time__1058042568000000 1058042568000000
changetime__1102660530000000 1102660530000000
version__ 
owner__ 
cc__radix cc__acapnotic

twisted.web.distrib should pass file-like stream, not Request-ish object

itamarst's avatar @itamarst reported
Trac ID trac#76
Type enhancement
Created 2003-07-15 00:50:42Z
Searchable metadata
trac-id__76 76
type__enhancement enhancement
reporter__itamarst itamarst
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__wontfix wontfix
component__web web
keywords__ 
time__1058230242000000 1058230242000000
changetime__1141530575000000 1141530575000000
version__ 
owner__ 
cc__glyph cc__itamarst cc__moshez cc__jknight

"Converting from asyncore" Howto

itamarst's avatar @itamarst reported
Trac ID trac#81
Type enhancement
Created 2003-07-15 01:03:17Z
Searchable metadata
trac-id__81 81
type__enhancement enhancement
reporter__itamarst itamarst
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__invalid invalid
component__conch conch
keywords__documentation documentation
time__1058230997000000 1058230997000000
changetime__1117940173000000 1117940173000000
version__ 
owner__ 
cc__exarkun cc__itamarst cc__hypatia

IMAPServer LiteralFile typo

anadelonbrin's avatar anadelonbrin reported
Trac ID trac#58
Type defect
Created 2003-07-14 08:15:31Z
Searchable metadata
trac-id__58 58
type__defect defect
reporter__anadelonbrin anadelonbrin
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058170531000000 1058170531000000
changetime__1058173782000000 1058173782000000
version__ 
owner__ 
cc__exarkun cc__anadelonbrin

Refactor http support for file uploads

itamarst's avatar @itamarst reported
Trac ID trac#77
Type defect
Created 2003-07-15 00:52:28Z
Searchable metadata
trac-id__77 77
type__defect defect
reporter__itamarst itamarst
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__web web
keywords__ 
time__1058230348000000 1058230348000000
changetime__1138439981000000 1138439981000000
version__ 
owner__ 
cc__glyph cc__radix cc__itamarst cc__dp cc__jknight

Improvements to the automated release process

radix's avatar @radix reported
Trac ID trac#56
Type enhancement
Created 2003-07-13 20:03:00Z
Searchable metadata
trac-id__56 56
type__enhancement enhancement
reporter__radix radix
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__release_management release management
keywords__ 
time__1058126580000000 1058126580000000
changetime__1102704254000000 1102704254000000
version__ 
owner__radix radix
cc__radix

abortConnection() method for transports

itamarst's avatar @itamarst reported
Trac ID trac#78
Type defect
Created 2003-07-15 00:54:40Z
Branch https://github.com/twisted/twisted/tree/abortConnection-78-10

Attachments:

Searchable metadata
trac-id__78 78
type__defect defect
reporter__itamarst itamarst
priority__high high
milestone__ 
branch__branches_abortConnection_78_10 branches/abortConnection-78-10
branch_author__itamarst__jknight__exarkun__ivank__glyph itamarst, jknight, exarkun, ivank, glyph
status__closed closed
resolution__fixed fixed
component__core core
keywords__ 
time__1058230480000000 1058230480000000
changetime__1488724283180941 1488724283180941
version__ 
owner__itamar itamar
cc__glyph cc__itamarst cc__jknight cc__naked cc__exarkun cc__ivank cc__spiv cc__PenguinOfDoom cc__smira cc__atsuoi cc__kontinuity

[PATCH]Document types of avatarIds

itamarst's avatar @itamarst reported
Trac ID trac#63
Type defect
Created 2003-07-14 09:01:03Z
Searchable metadata
trac-id__63 63
type__defect defect
reporter__itamarst itamarst
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__conch conch
keywords__ 
time__1058173263000000 1058173263000000
changetime__1067083024000000 1067083024000000
version__ 
owner__ 
cc__glyph cc__radix cc__itamarst

DirDBM Error (copy_reg exception)

radix's avatar @radix reported
Trac ID trac#46
Type defect
Created 2003-07-12 20:31:13Z
Searchable metadata
trac-id__46 46
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058041873000000 1058041873000000
changetime__1058185209000000 1058185209000000
version__ 
owner__ 
cc__radix

string format for specifying interface/port/transport to listen on

itamarst's avatar @itamarst reported
Trac ID trac#68
Type enhancement
Created 2003-07-14 11:58:18Z
Searchable metadata
trac-id__68 68
type__enhancement enhancement
reporter__itamarst itamarst
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058183898000000 1058183898000000
changetime__1065031298000000 1065031298000000
version__ 
owner__ 
cc__glyph cc__radix cc__itamarst cc__moshez

IMAPServer receiving literals CR/LF error

radix's avatar @radix reported
Trac ID trac#41
Type defect
Created 2003-07-12 20:16:44Z
Searchable metadata
trac-id__41 41
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058041004000000 1058041004000000
changetime__1065374158000000 1065374158000000
version__ 
owner__ 
cc__radix cc__exarkun cc__anadelonbrin

Migrate Sourceforge bugs to Roundup

radix's avatar @radix reported
Trac ID trac#1
Type enhancement
Created 2003-07-11 03:56:05Z
Searchable metadata
trac-id__1 1
type__enhancement enhancement
reporter__radix radix
priority__lowest lowest
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__website website
keywords__ 
time__1057895765000000 1057895765000000
changetime__1057895765000000 1057895765000000
version__ 
owner__ 

Refactor transport's producer/consumer support

itamarst's avatar @itamarst reported
Trac ID trac#79
Type enhancement
Created 2003-07-15 00:58:15Z
Searchable metadata
trac-id__79 79
type__enhancement enhancement
reporter__itamarst itamarst
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__new new
resolution__ 
component__core core
keywords__ 
time__1058230695000000 1058230695000000
changetime__1214089570000000 1214089570000000
version__ 
owner__ 
cc__glyph cc__exarkun cc__spiv cc__itamarst cc__jknight cc__PenguinOfDoom

Switch http logging to twisted.logger

itamarst's avatar @itamarst reported
Trac ID trac#75
Type enhancement
Created 2003-07-15 00:49:04Z
Searchable metadata
trac-id__75 75
type__enhancement enhancement
reporter__itamarst itamarst
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__new new
resolution__ 
component__web web
keywords__logging logging
time__1058230144000000 1058230144000000
changetime__1478057747168246 1478057747168246
version__ 
owner__ 
cc__spiv cc__itamarst cc__jknight cc__hypatia cc__jack

logfile.LogFile ignores defaultMode

radix's avatar @radix reported
Trac ID trac#39
Type defect
Created 2003-07-12 20:10:21Z
Searchable metadata
trac-id__39 39
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058040621000000 1058040621000000
changetime__1058049523000000 1058049523000000
version__ 
owner__ 
cc__radix

Make Twisted pychecker friendly

spiv's avatar spiv reported
Trac ID trac#86
Type enhancement
Created 2003-07-15 13:27:51Z
Searchable metadata
trac-id__86 86
type__enhancement enhancement
reporter__spiv spiv
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__invalid invalid
component__ 
keywords__ 
time__1058275671000000 1058275671000000
changetime__1116799341000000 1116799341000000
version__ 
owner__ 
cc__exarkun cc__spiv

Explain producers & consumers

radix's avatar @radix reported
Trac ID trac#53
Type enhancement
Created 2003-07-12 20:54:34Z
Searchable metadata
trac-id__53 53
type__enhancement enhancement
reporter__radix radix
priority__highest highest
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__core core
keywords__documentation documentation
time__1058043274000000 1058043274000000
changetime__1150848222000000 1150848222000000
version__ 
owner__ 
cc__radix cc__spiv cc__cce

Forms in Woven are annoying

radix's avatar @radix reported
Trac ID trac#73
Type enhancement
Created 2003-07-14 17:39:41Z
Searchable metadata
trac-id__73 73
type__enhancement enhancement
reporter__radix radix
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__web web
time__1058204381000000 1058204381000000
changetime__1464994060561329 1464994060561329
version__ 
owner__ 
cc__glyph cc__radix cc__dp

RFE: Use zipfile to load plugins.tml from zips on sys.path

radix's avatar @radix reported
Trac ID trac#47
Type enhancement
Created 2003-07-12 20:33:15Z
Searchable metadata
trac-id__47 47
type__enhancement enhancement
reporter__radix radix
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__invalid invalid
component__ 
keywords__ 
time__1058041995000000 1058041995000000
changetime__1139736965000000 1139736965000000
version__ 
owner__ 
cc__radix

webhappyrealm isn't happy

benno's avatar benno reported
Trac ID trac#72
Type defect
Created 2003-07-14 15:19:01Z

Attachments:

Searchable metadata
trac-id__72 72
type__defect defect
reporter__benno benno
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058195941000000 1058195941000000
changetime__1058555290000000 1058555290000000
version__ 
owner__ 
cc__glyph cc__spiv cc__benno

COIL, the configuration system for Twisted apps

radix's avatar @radix reported
Trac ID trac#71
Type enhancement
Created 2003-07-14 14:08:33Z
Searchable metadata
trac-id__71 71
type__enhancement enhancement
reporter__radix radix
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__invalid invalid
component__core core
keywords__ 
time__1058191713000000 1058191713000000
changetime__1264704728000000 1264704728000000
version__ 
owner__ 
cc__glyph cc__radix cc__exarkun cc__itamarst cc__jml cc__dp cc__thijs

SOAP client support

itamarst's avatar @itamarst reported
Trac ID trac#61
Type enhancement
Created 2003-07-14 08:56:16Z

Attachments:

  • soap.py.patch (4229 bytes) - added by dkuhlman on 2003-11-20 00:10:01Z -
Searchable metadata
trac-id__61 61
type__enhancement enhancement
reporter__itamarst itamarst
priority__low low
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__web web
keywords__ 
time__1058172976000000 1058172976000000
changetime__1143085924000000 1143085924000000
version__ 
owner__ 
cc__exarkun cc__itamarst cc__anthony cc__dkuhlman

t.py.plugin doesn't check for __init__ modules in directories

radix's avatar @radix reported
Trac ID trac#40
Type defect
Created 2003-07-12 20:14:37Z
Searchable metadata
trac-id__40 40
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058040877000000 1058040877000000
changetime__1059921963000000 1059921963000000
version__ 
owner__ 
cc__glyph cc__radix cc__exarkun cc__spiv cc__z3p

Document new cred system

itamarst's avatar @itamarst reported
Trac ID trac#66
Type defect
Created 2003-07-14 11:51:21Z
Searchable metadata
trac-id__66 66
type__defect defect
reporter__itamarst itamarst
priority__highest highest
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ftp ftp
keywords__documentation documentation
time__1058183481000000 1058183481000000
changetime__1066207692000000 1066207692000000
version__ 
owner__Nafai Nafai
cc__glyph cc__radix cc__Nafai cc__jml cc__z3p cc__teratorn

Document new logging infrastructure, formalize standards for keywords and namespaces

itamarst's avatar @itamarst reported
Trac ID trac#74
Type enhancement
Created 2003-07-15 00:46:28Z
Searchable metadata
trac-id__74 74
type__enhancement enhancement
reporter__itamarst itamarst
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__core core
keywords__documentation documentation
time__1058229988000000 1058229988000000
changetime__1155837064000000 1155837064000000
version__ 
owner__Pahan Pahan
cc__itamarst cc__Pahan cc__hypatia

defer.DeferredList([]) problem

radix's avatar @radix reported
Trac ID trac#48
Type defect
Created 2003-07-12 20:37:40Z
Searchable metadata
trac-id__48 48
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058042260000000 1058042260000000
changetime__1059110472000000 1059110472000000
version__ 
owner__ 
cc__radix

IMAPServer no __ebCopy

anadelonbrin's avatar anadelonbrin reported
Trac ID trac#64
Type defect
Created 2003-07-14 09:12:00Z
Searchable metadata
trac-id__64 64
type__defect defect
reporter__anadelonbrin anadelonbrin
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058173920000000 1058173920000000
changetime__1058173920000000 1058173920000000
version__ 
owner__ 
cc__exarkun cc__anadelonbrin

Should be a way to create documentation aliases

radix's avatar @radix reported
Trac ID trac#38
Type defect
Created 2003-07-12 20:08:03Z

Ehi... :-)

Searchable metadata
trac-id__38 38
type__defect defect
reporter__radix radix
priority__high high
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__website website
keywords__documentation documentation
time__1058040483000000 1058040483000000
changetime__1206854685000000 1206854685000000
version__ 
owner__ 
cc__radix cc__spiv cc__exarkun cc__mwh cc__tekNico cc__oubiwann

unify pdb hooks for failures

itamarst's avatar @itamarst reported
Trac ID trac#60
Type enhancement
Created 2003-07-14 08:55:06Z
Searchable metadata
trac-id__60 60
type__enhancement enhancement
reporter__itamarst itamarst
priority__normal normal
milestone__ 
branch__ 
branch_author__ 
status__closed closed
resolution__fixed fixed
component__ 
keywords__ 
time__1058172906000000 1058172906000000
changetime__1058183092000000 1058183092000000
version__ 
owner__ 
cc__spiv cc__itamarst

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.