SlideShare uma empresa Scribd logo
1 de 37
The Onward Journey:
Porting Twisted to Python 3
Craig Rodrigues
<rodrigc@crodrigues.org>
Twisted
What is Twisted?
Python library, written by Glyph Lefkowitz and many others
provides basic building blocks for writing networking clients and
servers:
protocol implementations: SSH, IRC, SMTP, IMAP
event “reactors”: select, kqueue, epoll, IOCP, asyncio…...
More resources
Web site with docs, examples, tutorials: http://www.twistedmatrix.com
Main code repository: https://github.com/twisted/twisted
O’Reilly book:
Twisted sub-projects
Klein (similar to Flask, Bottle) https://github.com/twisted/klein
Treq (similar to Requests) https://github.com/twisted/treq
Which projects Twisted?
buildbot
scrapy
Lots of other projects:
https://twistedmatrix.com/trac/wiki/ProjectsUsingTwisted
Who uses Twisted?
Hipchat
Apple Calendar Server
Lots of companies: https://twistedmatrix.com/trac/wiki/SuccessStories
Twisted and asynchronous programming
Twisted has promoted the technique of using callbacks and asynchronous
programming for writing network servers for a long time
Twisted’s Deferred class is central to this, and has been used extensively
Guido van Rossum consulted with Glyph in the design of Python’s new
asyncio framework ( Python 3.4 and higher )
Interesting things
First commit to Twisted was in 2001
Twisted includes a tool trial which runs unittest-style tests. (similar to pytest
or nose)
Unittests and code coverage are very important to Twisted development
process
Why bother?
Motivation
I like Twisted and the community behind it
I had some time in between jobs and wanted to improve my Python skills and
learn more about Python 3
I wanted to help out projects which depended on Twisted, but couldn’t move
to Python 3, such as buildbot
Core Python devs are dropping Python 2 support in 2020:
https://pythonclock.org/
Major motivation: Twisted moved to GitHub
in 2016!!
Following process to submit patches via Subversion was cumbersome
Moving to GitHub and pull requests made things easier for submitters and
reviewers
Integration with Continuous Integration (CI) was improved: codecov, travis,
appveyor, buildbot
Submitting patches is easier!!
Moving Twisted to GitHub
Moving to Python 3
Twisted started moving to Python 3
Original Python 3 porting plan developed in 2012
Worked on by various developers: Jean-Paul Calderone, Itamar Turner-
Trauring, Amber Brown, Glyph Lefkowitz, Ralph Meijer, and others
Canonical funded some Python 3 porting work
Some parts ported, many parts still unported
Moving Twisted to Python 3 is a tough job!
Old codebase (since 2001)
Advanced framework which uses many, many features of Python
Twisted development process requires unit tests and coverage
Submitting hundreds of patches in Subversion workflow was slow moving
Porting to Python 3
What has changed in Python 3?
Lots of little changes to make the language cleaner
Deprecated code has been removed
Some changes are backwards incompatible. Previously working code is now
broken on Python 3
http://python3porting.com has an extensive list of changes in Python 3
print is now a function
print “hello world”
now must be:
print(“hello world”)
dict.has_key() is gone
some_dict = { “one” : 1, “two”: 2}
some_dict.has_key(“one”)
Now should be:
“one” in some_dict
obj.__cmp__() and cmp() is gone
Developers are supposed to implement __lt__(), __gt__(), __ge__(), __le__(),
__ne__(), __eq__() functions on an object instead of __cmp__()
Developers need to use <, >, >=, <=, !=, == operators instead of cmp() which is
gone
Less things allocate lists
These functions no longer allocate lists in Python 3:
range(), dict.items(), dict.values(), map(), filter()
Users should iterate over these functions, which only allocate items as they
are needed:
for n in range(99):
...
C API for Python C extensions changed
C API changed in a backwards incompatible way
Very challenging when porting the Twisted IOCP reactor (Windows only)
which has parts written in C
Python str type has changed
Python 2:
u”Some unicode string 銩” is of type unicode
“Some string” is of type str and also of type bytes
b”Some string” is of type str and also of type bytes
type(unicode) != type(str), type(str) == type(bytes)
Python 3:
u”Some string 銩” is of type str
Python str type has changed
Twisted protocols must send out bytes over the wire on sockets
Lots of code written assuming type(str) == type(bytes), did not account for
unicode
This type of porting needs extensive analysis and testing, cannot be
automated
Python str type has changed
Ned Batchelder unicode presentation very good:
https://nedbatchelder.com/text/unipain/unipain.html
“Unicode sandwich” technique (write bytes to sockets and files, keep data as
unicode internally in application) cannot be used 100% when dealing with
network protocols
Technique for porting to Python 3
Porting technique: use virtualenvs
Checkout the code from git
Create a python2 virtualenv in one window:
virtualenv myenv_2
source myenv_2/bin/activate
python setup.py develop
Create a python3 virtualenv in another window:
python3 -m venv myenv_3
Porting technique: run unit tests
After modifying code, run unittests using tox and trial
See what breaks, make sure it works on Python 2.7 and Python 3
Write new unit tests if necessary
Always try to improve code coverage:
https://codecov.io/gh/twisted/twisted/
Python 3 status for Twisted
June 3, 2016
Python 2.7: 8425 tests PASS
Python 3.5: 4834 tests PASS ( approx. 57% of Python 2.7 tests)
March 21, 2017
Python 2.7: 9692 tests PASS
Python 3.5: 9025 tests PASS ( approx. 93% of Python 2.7 tests)
My contributions: 325 pull requests!
What’s left?
A few modules need to be ported such as:
twisted.mail
twisted.news
twisted.web
Lessons learned
What I learned
Extensive unittests and code coverage are very important for this kind of
effort
Porting an old and large codebase to Python 3 can be a lot of work
Benefits of porting: code cleanliness and keeping up with Python
direction...the benefits vs. the effort required sometimes doesn’t feel worth
it
Hope for the future and performance
CPython 3.6 and 3.7 performance seems to be improving and is comparable
to Python 2.7:
http://speed.python.org
Pypy 3.5 just came out….hopefully better performance with that
Now that Python has asyncio built in, the “Twisted way” of doing things has
some validation, and is pervading more libraries and projects in Python
Thanks
All who started before me on the Python 3 effort: Jean-Paul, Itamar, Amber,
Glyph, Ralph, many others
All who helped code review my patches: Adi Roiban, Alex Gaynor, Glyph,
many others
Special thanks to Abhishek Choudhary for help on code reviews

Mais conteúdo relacionado

Mais procurados

Python Summer Internship
Python Summer InternshipPython Summer Internship
Python Summer InternshipAtul Kumar
 
Py Con 2009 Pumping Iron Into Python
Py Con 2009   Pumping Iron Into PythonPy Con 2009   Pumping Iron Into Python
Py Con 2009 Pumping Iron Into PythonSarah Dutkiewicz
 
Python for Science and Engineering: a presentation to A*STAR and the Singapor...
Python for Science and Engineering: a presentation to A*STAR and the Singapor...Python for Science and Engineering: a presentation to A*STAR and the Singapor...
Python for Science and Engineering: a presentation to A*STAR and the Singapor...pythoncharmers
 
Getting started with Linux and Python by Caffe
Getting started with Linux and Python by CaffeGetting started with Linux and Python by Caffe
Getting started with Linux and Python by CaffeLihang Li
 
How to integrate python into a scala stack
How to integrate python into a scala stackHow to integrate python into a scala stack
How to integrate python into a scala stackFliptop
 
First python project
First python projectFirst python project
First python projectNeetu Jain
 
Introduction to Python Programing
Introduction to Python ProgramingIntroduction to Python Programing
Introduction to Python Programingsameer patil
 
The State of libfabric in Open MPI
The State of libfabric in Open MPIThe State of libfabric in Open MPI
The State of libfabric in Open MPIJeff Squyres
 
Numerical Simulation of Nonlinear Mechanical Problems using Metafor
Numerical Simulation of Nonlinear Mechanical Problems using MetaforNumerical Simulation of Nonlinear Mechanical Problems using Metafor
Numerical Simulation of Nonlinear Mechanical Problems using MetaforRomain Boman
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to pythoneShikshak
 
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...PyData
 
Ecet 365 Education Redefined - snaptutorial.com
Ecet 365    Education Redefined - snaptutorial.comEcet 365    Education Redefined - snaptutorial.com
Ecet 365 Education Redefined - snaptutorial.comDavisMurphyC85
 
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...ISSEL
 
Open Source .NET
Open Source .NETOpen Source .NET
Open Source .NETOnyxfish
 
Python course syllabus
Python course syllabusPython course syllabus
Python course syllabusSugantha T
 

Mais procurados (18)

Python Summer Internship
Python Summer InternshipPython Summer Internship
Python Summer Internship
 
Py Con 2009 Pumping Iron Into Python
Py Con 2009   Pumping Iron Into PythonPy Con 2009   Pumping Iron Into Python
Py Con 2009 Pumping Iron Into Python
 
Python for Science and Engineering: a presentation to A*STAR and the Singapor...
Python for Science and Engineering: a presentation to A*STAR and the Singapor...Python for Science and Engineering: a presentation to A*STAR and the Singapor...
Python for Science and Engineering: a presentation to A*STAR and the Singapor...
 
Getting started with Linux and Python by Caffe
Getting started with Linux and Python by CaffeGetting started with Linux and Python by Caffe
Getting started with Linux and Python by Caffe
 
How to integrate python into a scala stack
How to integrate python into a scala stackHow to integrate python into a scala stack
How to integrate python into a scala stack
 
Introduction to python
 Introduction to python Introduction to python
Introduction to python
 
First python project
First python projectFirst python project
First python project
 
Python Tutorial Part 2
Python Tutorial Part 2Python Tutorial Part 2
Python Tutorial Part 2
 
Introduction to Python Programing
Introduction to Python ProgramingIntroduction to Python Programing
Introduction to Python Programing
 
The State of libfabric in Open MPI
The State of libfabric in Open MPIThe State of libfabric in Open MPI
The State of libfabric in Open MPI
 
Numerical Simulation of Nonlinear Mechanical Problems using Metafor
Numerical Simulation of Nonlinear Mechanical Problems using MetaforNumerical Simulation of Nonlinear Mechanical Problems using Metafor
Numerical Simulation of Nonlinear Mechanical Problems using Metafor
 
Introduction to python
Introduction to pythonIntroduction to python
Introduction to python
 
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
Mixed-language Python/C++ debugging with Python Tools for Visual Studio- Pave...
 
Ecet 365 Education Redefined - snaptutorial.com
Ecet 365    Education Redefined - snaptutorial.comEcet 365    Education Redefined - snaptutorial.com
Ecet 365 Education Redefined - snaptutorial.com
 
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
Μεταπρογραµµατισµός κώδικα Python σε γλώσσα γραµµικού χρόνου για αυτόµατη επα...
 
Open Source .NET
Open Source .NETOpen Source .NET
Open Source .NET
 
Python course syllabus
Python course syllabusPython course syllabus
Python course syllabus
 
Intro to Python
Intro to PythonIntro to Python
Intro to Python
 

Destaque

Travel retail pos guide
Travel retail pos guideTravel retail pos guide
Travel retail pos guideDelta Sales
 
Odalisque in the harem garden
Odalisque in the harem gardenOdalisque in the harem garden
Odalisque in the harem gardenMakala (D)
 
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...Internet Marketing Software - WordStream
 
Kyua and Jenkins: Testing Framework for BSD
Kyua and Jenkins: Testing Framework for BSDKyua and Jenkins: Testing Framework for BSD
Kyua and Jenkins: Testing Framework for BSDCraig Rodrigues
 
The Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer InterviewsThe Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer InterviewsGood Funnel
 
ELSA France "Teaching is us!"
ELSA France "Teaching is us!" ELSA France "Teaching is us!"
ELSA France "Teaching is us!" Adrian Scarlett
 
The Be-All, End-All List of Small Business Tax Deductions
The Be-All, End-All List of Small Business Tax DeductionsThe Be-All, End-All List of Small Business Tax Deductions
The Be-All, End-All List of Small Business Tax DeductionsWagepoint
 
Visual Design with Data
Visual Design with DataVisual Design with Data
Visual Design with DataSeth Familian
 
Alo Finland Coding & Collaboration Lessons
Alo Finland Coding & Collaboration LessonsAlo Finland Coding & Collaboration Lessons
Alo Finland Coding & Collaboration LessonsALO Finland
 
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017Delegación Miguel Hidalgo
 
77 Sales Scripting Techniques Eric Lofholm
77 Sales Scripting Techniques Eric Lofholm77 Sales Scripting Techniques Eric Lofholm
77 Sales Scripting Techniques Eric LofholmEricLofholmIntl
 
ATM 4 HAPPINESS ..UNLIMITED
ATM 4 HAPPINESS ..UNLIMITEDATM 4 HAPPINESS ..UNLIMITED
ATM 4 HAPPINESS ..UNLIMITEDNaveen Khajanchi
 
Kubernetesにまつわるエトセトラ(主に苦労話)
Kubernetesにまつわるエトセトラ(主に苦労話)Kubernetesにまつわるエトセトラ(主に苦労話)
Kubernetesにまつわるエトセトラ(主に苦労話)Works Applications
 
Attribution d'actions gratuites : nouvelle fiscalité !
Attribution d'actions gratuites : nouvelle fiscalité !Attribution d'actions gratuites : nouvelle fiscalité !
Attribution d'actions gratuites : nouvelle fiscalité !Vie Plus
 
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCEPORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCEjpalma200680
 

Destaque (19)

Travel retail pos guide
Travel retail pos guideTravel retail pos guide
Travel retail pos guide
 
Odalisque in the harem garden
Odalisque in the harem gardenOdalisque in the harem garden
Odalisque in the harem garden
 
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
The Top 10 Facebook and Twitter Advertising Hacks of All Time - Larry Kim's P...
 
Kyua and Jenkins: Testing Framework for BSD
Kyua and Jenkins: Testing Framework for BSDKyua and Jenkins: Testing Framework for BSD
Kyua and Jenkins: Testing Framework for BSD
 
The Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer InterviewsThe Marketer's Guide To Customer Interviews
The Marketer's Guide To Customer Interviews
 
ELSA France "Teaching is us!"
ELSA France "Teaching is us!" ELSA France "Teaching is us!"
ELSA France "Teaching is us!"
 
The Be-All, End-All List of Small Business Tax Deductions
The Be-All, End-All List of Small Business Tax DeductionsThe Be-All, End-All List of Small Business Tax Deductions
The Be-All, End-All List of Small Business Tax Deductions
 
Visual Design with Data
Visual Design with DataVisual Design with Data
Visual Design with Data
 
Alo Finland Coding & Collaboration Lessons
Alo Finland Coding & Collaboration LessonsAlo Finland Coding & Collaboration Lessons
Alo Finland Coding & Collaboration Lessons
 
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
Informe semanal de actividades en vía pública del 10 al 16 de marzo 2017
 
77 Sales Scripting Techniques Eric Lofholm
77 Sales Scripting Techniques Eric Lofholm77 Sales Scripting Techniques Eric Lofholm
77 Sales Scripting Techniques Eric Lofholm
 
ATM 4 HAPPINESS ..UNLIMITED
ATM 4 HAPPINESS ..UNLIMITEDATM 4 HAPPINESS ..UNLIMITED
ATM 4 HAPPINESS ..UNLIMITED
 
Kubernetesにまつわるエトセトラ(主に苦労話)
Kubernetesにまつわるエトセトラ(主に苦労話)Kubernetesにまつわるエトセトラ(主に苦労話)
Kubernetesにまつわるエトセトラ(主に苦労話)
 
Google data studio eshow 2017 clinicseo
Google data studio   eshow 2017 clinicseoGoogle data studio   eshow 2017 clinicseo
Google data studio eshow 2017 clinicseo
 
3 Benefits Of Hiring Marketing Contractors
3 Benefits Of Hiring Marketing Contractors3 Benefits Of Hiring Marketing Contractors
3 Benefits Of Hiring Marketing Contractors
 
Attribution d'actions gratuites : nouvelle fiscalité !
Attribution d'actions gratuites : nouvelle fiscalité !Attribution d'actions gratuites : nouvelle fiscalité !
Attribution d'actions gratuites : nouvelle fiscalité !
 
Webinar Authority
Webinar AuthorityWebinar Authority
Webinar Authority
 
Dani sape96
Dani sape96Dani sape96
Dani sape96
 
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCEPORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
PORTAFOLIO DE SERVICIOS MOPROSOFT - NYCE
 

Semelhante a The Onward Journey: Porting Twisted to Python 3

Dc ch02 : protocol architecture
Dc ch02 : protocol architectureDc ch02 : protocol architecture
Dc ch02 : protocol architectureSyaiful Ahdan
 
Git 101, or, how to sanely manage your Koha customizations
Git 101, or, how to sanely manage your Koha customizationsGit 101, or, how to sanely manage your Koha customizations
Git 101, or, how to sanely manage your Koha customizationsIan Walls
 
Socket programming-in-python
Socket programming-in-pythonSocket programming-in-python
Socket programming-in-pythonYuvaraja Ravi
 
Moving to Python 3
Moving to Python 3Moving to Python 3
Moving to Python 3Nick Efford
 
Python Evolution
Python EvolutionPython Evolution
Python EvolutionQuintagroup
 
python programming.pptx
python programming.pptxpython programming.pptx
python programming.pptxKaviya452563
 
Python-Yesterday Today Tomorrow(What's new?)
Python-Yesterday Today Tomorrow(What's new?)Python-Yesterday Today Tomorrow(What's new?)
Python-Yesterday Today Tomorrow(What's new?)Mohan Arumugam
 
CocoaConf: The Language of Mobile Software is APIs
CocoaConf: The Language of Mobile Software is APIsCocoaConf: The Language of Mobile Software is APIs
CocoaConf: The Language of Mobile Software is APIsTim Burks
 
Building Data Pipelines in Python
Building Data Pipelines in PythonBuilding Data Pipelines in Python
Building Data Pipelines in PythonC4Media
 
PyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsPyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsHenry Schreiner
 
Возможности интерпретатора Python в NX-OS
Возможности интерпретатора Python в NX-OSВозможности интерпретатора Python в NX-OS
Возможности интерпретатора Python в NX-OSCisco Russia
 
Python Linters at Scale.pdf
Python Linters at Scale.pdfPython Linters at Scale.pdf
Python Linters at Scale.pdfJimmy Lai
 
.NET Core Today and Tomorrow
.NET Core Today and Tomorrow.NET Core Today and Tomorrow
.NET Core Today and TomorrowJon Galloway
 
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoTInria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoTStéphanie Roger
 
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...Marcello Tomasini
 
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devsITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devsITCamp
 
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...Richard Rowland
 

Semelhante a The Onward Journey: Porting Twisted to Python 3 (20)

2to3
2to32to3
2to3
 
Dc ch02 : protocol architecture
Dc ch02 : protocol architectureDc ch02 : protocol architecture
Dc ch02 : protocol architecture
 
Git 101, or, how to sanely manage your Koha customizations
Git 101, or, how to sanely manage your Koha customizationsGit 101, or, how to sanely manage your Koha customizations
Git 101, or, how to sanely manage your Koha customizations
 
Socket programming-in-python
Socket programming-in-pythonSocket programming-in-python
Socket programming-in-python
 
Moving to Python 3
Moving to Python 3Moving to Python 3
Moving to Python 3
 
Python Evolution
Python EvolutionPython Evolution
Python Evolution
 
python programming.pptx
python programming.pptxpython programming.pptx
python programming.pptx
 
Python-Yesterday Today Tomorrow(What's new?)
Python-Yesterday Today Tomorrow(What's new?)Python-Yesterday Today Tomorrow(What's new?)
Python-Yesterday Today Tomorrow(What's new?)
 
MODULE 1.pptx
MODULE 1.pptxMODULE 1.pptx
MODULE 1.pptx
 
CocoaConf: The Language of Mobile Software is APIs
CocoaConf: The Language of Mobile Software is APIsCocoaConf: The Language of Mobile Software is APIs
CocoaConf: The Language of Mobile Software is APIs
 
Building Data Pipelines in Python
Building Data Pipelines in PythonBuilding Data Pipelines in Python
Building Data Pipelines in Python
 
PyCon2022 - Building Python Extensions
PyCon2022 - Building Python ExtensionsPyCon2022 - Building Python Extensions
PyCon2022 - Building Python Extensions
 
Возможности интерпретатора Python в NX-OS
Возможности интерпретатора Python в NX-OSВозможности интерпретатора Python в NX-OS
Возможности интерпретатора Python в NX-OS
 
Python Linters at Scale.pdf
Python Linters at Scale.pdfPython Linters at Scale.pdf
Python Linters at Scale.pdf
 
.NET Core Today and Tomorrow
.NET Core Today and Tomorrow.NET Core Today and Tomorrow
.NET Core Today and Tomorrow
 
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoTInria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
Inria Tech Talk : RIOT, l'OS libre pour vos objets connectés #IoT
 
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
CSE5656 Complex Networks - Location Correlation in Human Mobility, Implementa...
 
PYTHON PROGRAMMING NOTES RKREDDY.pdf
PYTHON PROGRAMMING NOTES RKREDDY.pdfPYTHON PROGRAMMING NOTES RKREDDY.pdf
PYTHON PROGRAMMING NOTES RKREDDY.pdf
 
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devsITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
ITCamp 2013 - Alessandro Pilotti - Git crash course for Visual Studio devs
 
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
Why "Hello World" is a Massive Operation - From Python code to Stack Virtual ...
 

Último

Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfayushiqss
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 

Último (20)

Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 

The Onward Journey: Porting Twisted to Python 3

  • 1. The Onward Journey: Porting Twisted to Python 3 Craig Rodrigues <rodrigc@crodrigues.org>
  • 3. What is Twisted? Python library, written by Glyph Lefkowitz and many others provides basic building blocks for writing networking clients and servers: protocol implementations: SSH, IRC, SMTP, IMAP event “reactors”: select, kqueue, epoll, IOCP, asyncio…...
  • 4. More resources Web site with docs, examples, tutorials: http://www.twistedmatrix.com Main code repository: https://github.com/twisted/twisted O’Reilly book:
  • 5. Twisted sub-projects Klein (similar to Flask, Bottle) https://github.com/twisted/klein Treq (similar to Requests) https://github.com/twisted/treq
  • 6. Which projects Twisted? buildbot scrapy Lots of other projects: https://twistedmatrix.com/trac/wiki/ProjectsUsingTwisted
  • 7. Who uses Twisted? Hipchat Apple Calendar Server Lots of companies: https://twistedmatrix.com/trac/wiki/SuccessStories
  • 8. Twisted and asynchronous programming Twisted has promoted the technique of using callbacks and asynchronous programming for writing network servers for a long time Twisted’s Deferred class is central to this, and has been used extensively Guido van Rossum consulted with Glyph in the design of Python’s new asyncio framework ( Python 3.4 and higher )
  • 9. Interesting things First commit to Twisted was in 2001 Twisted includes a tool trial which runs unittest-style tests. (similar to pytest or nose) Unittests and code coverage are very important to Twisted development process
  • 11. Motivation I like Twisted and the community behind it I had some time in between jobs and wanted to improve my Python skills and learn more about Python 3 I wanted to help out projects which depended on Twisted, but couldn’t move to Python 3, such as buildbot Core Python devs are dropping Python 2 support in 2020: https://pythonclock.org/
  • 12. Major motivation: Twisted moved to GitHub in 2016!! Following process to submit patches via Subversion was cumbersome Moving to GitHub and pull requests made things easier for submitters and reviewers Integration with Continuous Integration (CI) was improved: codecov, travis, appveyor, buildbot Submitting patches is easier!!
  • 15. Twisted started moving to Python 3 Original Python 3 porting plan developed in 2012 Worked on by various developers: Jean-Paul Calderone, Itamar Turner- Trauring, Amber Brown, Glyph Lefkowitz, Ralph Meijer, and others Canonical funded some Python 3 porting work Some parts ported, many parts still unported
  • 16. Moving Twisted to Python 3 is a tough job! Old codebase (since 2001) Advanced framework which uses many, many features of Python Twisted development process requires unit tests and coverage Submitting hundreds of patches in Subversion workflow was slow moving
  • 18. What has changed in Python 3? Lots of little changes to make the language cleaner Deprecated code has been removed Some changes are backwards incompatible. Previously working code is now broken on Python 3 http://python3porting.com has an extensive list of changes in Python 3
  • 19. print is now a function print “hello world” now must be: print(“hello world”)
  • 20. dict.has_key() is gone some_dict = { “one” : 1, “two”: 2} some_dict.has_key(“one”) Now should be: “one” in some_dict
  • 21. obj.__cmp__() and cmp() is gone Developers are supposed to implement __lt__(), __gt__(), __ge__(), __le__(), __ne__(), __eq__() functions on an object instead of __cmp__() Developers need to use <, >, >=, <=, !=, == operators instead of cmp() which is gone
  • 22. Less things allocate lists These functions no longer allocate lists in Python 3: range(), dict.items(), dict.values(), map(), filter() Users should iterate over these functions, which only allocate items as they are needed: for n in range(99): ...
  • 23. C API for Python C extensions changed C API changed in a backwards incompatible way Very challenging when porting the Twisted IOCP reactor (Windows only) which has parts written in C
  • 24. Python str type has changed Python 2: u”Some unicode string 銩” is of type unicode “Some string” is of type str and also of type bytes b”Some string” is of type str and also of type bytes type(unicode) != type(str), type(str) == type(bytes) Python 3: u”Some string 銩” is of type str
  • 25. Python str type has changed Twisted protocols must send out bytes over the wire on sockets Lots of code written assuming type(str) == type(bytes), did not account for unicode This type of porting needs extensive analysis and testing, cannot be automated
  • 26. Python str type has changed Ned Batchelder unicode presentation very good: https://nedbatchelder.com/text/unipain/unipain.html “Unicode sandwich” technique (write bytes to sockets and files, keep data as unicode internally in application) cannot be used 100% when dealing with network protocols
  • 27. Technique for porting to Python 3
  • 28. Porting technique: use virtualenvs Checkout the code from git Create a python2 virtualenv in one window: virtualenv myenv_2 source myenv_2/bin/activate python setup.py develop Create a python3 virtualenv in another window: python3 -m venv myenv_3
  • 29. Porting technique: run unit tests After modifying code, run unittests using tox and trial See what breaks, make sure it works on Python 2.7 and Python 3 Write new unit tests if necessary Always try to improve code coverage: https://codecov.io/gh/twisted/twisted/
  • 30. Python 3 status for Twisted
  • 31. June 3, 2016 Python 2.7: 8425 tests PASS Python 3.5: 4834 tests PASS ( approx. 57% of Python 2.7 tests)
  • 32. March 21, 2017 Python 2.7: 9692 tests PASS Python 3.5: 9025 tests PASS ( approx. 93% of Python 2.7 tests) My contributions: 325 pull requests!
  • 33. What’s left? A few modules need to be ported such as: twisted.mail twisted.news twisted.web
  • 35. What I learned Extensive unittests and code coverage are very important for this kind of effort Porting an old and large codebase to Python 3 can be a lot of work Benefits of porting: code cleanliness and keeping up with Python direction...the benefits vs. the effort required sometimes doesn’t feel worth it
  • 36. Hope for the future and performance CPython 3.6 and 3.7 performance seems to be improving and is comparable to Python 2.7: http://speed.python.org Pypy 3.5 just came out….hopefully better performance with that Now that Python has asyncio built in, the “Twisted way” of doing things has some validation, and is pervading more libraries and projects in Python
  • 37. Thanks All who started before me on the Python 3 effort: Jean-Paul, Itamar, Amber, Glyph, Ralph, many others All who helped code review my patches: Adi Roiban, Alex Gaynor, Glyph, many others Special thanks to Abhishek Choudhary for help on code reviews